/* style.css */

/* --- Global Styles & Accessibility --- */
:root {
    --primary-blue-hero-bg: #B0D5EF; /* כחול רקע בהיר להירו מהרפרנס עם היד */
    --text-color-dark: #022E71;      /* כחול כהה לטקסטים כפי שביקשת */
    --primary-pink: #F379AA;        /* ורוד כפתור ראשי ולינקים כפי שביקשת */
    --light-pink-card-border: #F379AA; /* ורוד למסגרת כרטיסי סניפים */
    --promo-ticker-background: #022E71; /* רקע כחול כהה לטיקר (כפי שבתמונה האחרונה) */
    --promo-ticker-text-color: #FFC0CB; /* טקסט ורוד בהיר לטיקר (לנגישות) */
    --whatsapp-green: #25D366;       /* ירוק לוואטסאפ הצף */

    --dark-blue-sections: #003366;   /* כחול כהה כללי לחלקים אחרים */
    --background-light: #f8f9fa;
    --white: #fff;
    --focus-outline-color: #007bff; /* כחול לפוקוס */
    --font-main: 'Assistant', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --light-pink-specialty-num: #FFC0CB; /* ורוד בהיר למספרים המומחיות (משמש גם לטיקר וכפתור לוואטסאפ) */
    --link-text-pink: #C7447C; /* ורוד כהה יותר ללינקים על רקע בהיר (לנגישות) */
    --link-hover-pink: #A33E68; /* ורוד כהה יותר לריחוף לינקים (לנגישות) */
}

html {
    scroll-padding-top: 50px;
    direction: rtl; /* וודא כיווניות RTL ברמת ה-HTML */
}

body {
    direction: rtl; /* וודא כיווניות RTL ברמת ה-Body */
    font-family: var(--font-main);
    margin: 0;
    /* padding-top: 40px; הסרתי כדי שלא יהיה פס לבן מעל הטיקר */
    line-height: 1.65;
    color: var(--text-color-dark); /* צבע טקסט כללי כחול כהה */
    font-size: 16px;
    overflow-x: hidden;
    background-color: var(--background-light); /* רקע בהיר כללי */
}

.skip-link {
    position: absolute; top: -100px; left: 0;
    background: var(--dark-blue-sections); color: var(--white);
    padding: 10px 15px; z-index: 10000; text-decoration: none;
    transition: top 0.3s ease-in-out;
}
.skip-link:focus { top: 45px; }

:focus-visible {
    outline: 3px solid var(--focus-outline-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px var(--white);
}

h1, h2, h3, p { margin-top: 0; margin-bottom: 1em; }
h1 { font-size: clamp(2.2em, 5vw, 3.2em); font-weight: 800; }
h2 { font-size: clamp(1.8em, 4vw, 2.5em); color: var(--text-color-dark); margin-bottom: 30px; text-align: center; font-weight: 700;}
h3 { font-size: clamp(1.3em, 3vw, 1.7em); color: var(--text-color-dark); font-weight: 700;}

/* הגבלת גודל טקסטים במסכים גדולים */
@media (min-width: 1400px) {
    h1 { font-size: clamp(2.2em, 4vw, 3.5em); }
    h2 { font-size: clamp(1.8em, 3.5vw, 2.8em); }
    h3 { font-size: clamp(1.3em, 2.5vw, 1.9em); }
}

@media (min-width: 1600px) {
    h1 { font-size: clamp(2.2em, 3.5vw, 3.8em); }
    h2 { font-size: clamp(1.8em, 3vw, 3em); }
    h3 { font-size: clamp(1.3em, 2.2vw, 2em); }
}

@media (min-width: 1920px) {
    h1 { font-size: clamp(2.2em, 3vw, 4em); }
    h2 { font-size: clamp(1.8em, 2.5vw, 3.2em); }
    h3 { font-size: clamp(1.3em, 2vw, 2.1em); }
}

a {
    color: var(--link-text-pink); /* שימוש בוורוד הכהה יותר לנגישות */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
a:hover, a:focus {
    color: var(--link-hover-pink); /* לוודא שגם כאן יש ניגודיות טובה */
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto; /* מרכוז הקונטיינר */
}

/* התאמות למסכים גדולים מאוד */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px; /* הגדלת הרוחב המקסימלי למסכים גדולים */
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px; /* הגדלה נוספת למסכים גדולים מאוד */
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px; /* רוחב מקסימלי למסכים רחבים מאוד */
    }
}

.site-footer .container {
    direction: rtl;
    margin-left: 0;
    margin-right: auto;
}
img { max-width: 100%; height: auto; display: block; }


/* --- Promo Ticker --- */
/* טיקר עם כותרת ויישור לימין */
.promo-ticker-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--promo-ticker-background);
    padding: 0;
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 1000;
    width: 100vw;
}
.promo-ticker-title {
    color: var(--promo-ticker-text-color);
    font-size: 1.15em;
    font-weight: 700;
    margin-right: 32px;
    margin-left: 12px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    direction: rtl;
}
/* טיקר - צבעים מקוריים וריווח */
/* טיקר חדש - אנימציה חלקה, רספונסיבי, נגיש */
.promo-ticker-wrapper {
    background-color: var(--promo-ticker-background);
    color: var(--promo-ticker-text-color);
    padding: 0; /* הסר ריווח מיותר למעלה ולמטה */
    overflow: hidden;
    white-space: nowrap;
    position: sticky;
    top: 0;
    font-weight: bold;
    margin: 0;
    z-index: 1000;
    box-shadow: none;
    border: none;
    height: 53px; /* גובה מוקטן ב-20% */
    display: flex;
    align-items: center;
}

/* הגבלת רוחב הטיקר במסכים גדולים */
@media (min-width: 1400px) {
    .promo-ticker-wrapper {
        max-width: 1400px;
        margin: 0 auto;
    }
}

@media (min-width: 1600px) {
    .promo-ticker-wrapper {
        max-width: 1600px;
    }
}

@media (min-width: 1920px) {
    .promo-ticker-wrapper {
        max-width: 1800px;
    }
}

.promo-ticker-content {
    display: inline-block;
    animation: scroll-left 28.6s linear infinite; /* הורדת מהירות ב-30% (מ-20s ל-28.6s) */
    line-height: 1.2;
}

.promo-ticker-content span {
    margin-left: 50px;
}

.promo-ticker-content span:first-child {
    margin-left: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.promo-ticker-wrapper:hover .promo-ticker-content {
    animation-play-state: paused;
}
.promo-ticker-content span {
    padding: 0 18px;
    flex-shrink: 0;
    position: relative;
}
.promo-ticker-content span:not(:last-child)::after {
    content: " • ";
    color: var(--primary-pink);
    font-weight: bold;
    margin: 0 2px;
}
@keyframes ticker-scroll-true {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.promo-ticker-wrapper::before,
.promo-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.promo-ticker-wrapper::before {
    right: 0;
    background: linear-gradient(to left, var(--promo-ticker-background) 60%, transparent 100%);
}
.promo-ticker-wrapper::after {
    left: 0;
    background: linear-gradient(to right, var(--promo-ticker-background) 60%, transparent 100%);
}
@media (max-width: 700px) {
    .promo-ticker-content span { padding: 0 14px; font-size: 0.95em; }
    .promo-ticker-wrapper::before, .promo-ticker-wrapper::after { width: 30px; }
    .promo-ticker-wrapper { height: 36px; }
}


/* --- 1. Header Section (Hero) - Content on the VISUAL RIGHT --- */
.hero-section {
    background-color: var(--primary-blue-hero-bg);
    background-image: url('images/hero_main_image.jpg'); /* נתיב התמונה תוקן */
    background-size: cover;
    background-position: center center; /* התמונה ממורכזת, הדלי יהיה במרכז */
    background-repeat: no-repeat;
    color: var(--text-color-dark);
    position: relative;
    overflow: hidden;
    min-height: 580px; /* גובה מינימלי */
    display: flex;
    align-items: center; /* ממורכז אנכית */
    padding-top: 30px; /* מרווח עליון כללי */
    padding-bottom: 100px; /* מרווח לתחתית לפני הפס */
}

.hero-absolute-logo { /* קלאס חדש ללוגו הממוקם בנפרד ב-Hero */
    position: absolute; /* מאפשר מיקום חופשי ביחס ל-hero-section */
    top: 150px;         /* מיקום מהקצה העליון - תוקן למיקום מתחת ליד */
    left: 50%;          /* מרכוז אופקי */
    transform: translateX(-50%); /* מרכוז אופקי מדויק */
    width: clamp(150px, 18vw, 220px); /* התאם את הגודל לפי הצורך */
    z-index: 3;        /* וודא שהוא מעל כל שאר האלמנטים */
    /* הסרת הפילטר כדי להחזיר את הלוגו לצבעו המקורי (כחול כהה) */
    /* filter: invert(9%) sepia(94%) saturate(7496%) hue-rotate(200deg) brightness(100%) contrast(92%); */
}


.hero-content-container { /* זה ה-div עם class="container" */
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start; /* **תיקון: מיישר את .hero-inner-content לימין (start ב-RTL)** */
    width: 100%;
}

.hero-inner-content { /* עוטף את הלוגו, טקסט וכפתור */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* יישור הפריטים הפנימיים להתחלה (ימין ב-RTL) */
    text-align: right;   /* יישור הטקסט עצמו לימין */
    max-width: 48%;      /* רוחב אזור התוכן, שחק עם זה */
}

/* הגבלת רוחב תוכן ההירו במסכים גדולים */
@media (min-width: 1400px) {
    .hero-inner-content {
        max-width: 45%;
    }
}

@media (min-width: 1600px) {
    .hero-inner-content {
        max-width: 42%;
    }
}

@media (min-width: 1920px) {
    .hero-inner-content {
        max-width: 40%;
    }
}

/* הגדרות hero-main-logo הוסרו מכאן מכיוון שהוא ממוקם בנפרד עכשיו */


.hero-text-content h1 {
    font-size: clamp(2.5em, 5vw, 3.5em);
    font-weight: 800;
    margin-bottom: 0.4em;
    color: var(--text-color-dark);
}

.hero-text-content .hero-description {
    font-size: clamp(1em, 2.2vw, 1.1em);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2em;
    color: var(--text-color-dark);
}

/* הגבלת גודל טקסטים בהירו במסכים גדולים */
@media (min-width: 1400px) {
    .hero-text-content h1 {
        font-size: clamp(2.5em, 4vw, 3.8em);
    }
    .hero-text-content .hero-description {
        font-size: clamp(1em, 1.8vw, 1.2em);
    }
}

@media (min-width: 1600px) {
    .hero-text-content h1 {
        font-size: clamp(2.5em, 3.5vw, 4em);
    }
    .hero-text-content .hero-description {
        font-size: clamp(1em, 1.6vw, 1.3em);
    }
}

@media (min-width: 1920px) {
    .hero-text-content h1 {
        font-size: clamp(2.5em, 3vw, 4.2em);
    }
    .hero-text-content .hero-description {
        font-size: clamp(1em, 1.4vw, 1.4em);
    }
}

.hero-text-content .cta-button.whatsapp-button {
    background-color: var(--text-color-dark); /* רקע כחול כהה - תוקן */
    color: var(--promo-ticker-text-color); /* טקסט ורוד בהיר - תוקן לנגישות */
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-flex; /* מאפשר לאייקון להיות באותה שורה */
    align-items: center;
    justify-content: center;
    font-size: clamp(1em, 2.5vw, 1.15em);
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-height: 48px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* הגבלת גודל כפתור במסכים גדולים */
@media (min-width: 1400px) {
    .hero-text-content .cta-button.whatsapp-button {
        font-size: clamp(1em, 2vw, 1.2em);
        padding: 14px 32px;
    }
}

@media (min-width: 1600px) {
    .hero-text-content .cta-button.whatsapp-button {
        font-size: clamp(1em, 1.8vw, 1.25em);
        padding: 16px 36px;
    }
}

@media (min-width: 1920px) {
    .hero-text-content .cta-button.whatsapp-button {
        font-size: clamp(1em, 1.6vw, 1.3em);
        padding: 18px 40px;
    }
}
.hero-text-content .cta-button.whatsapp-button:hover,
.hero-text-content .cta-button.whatsapp-button:focus {
    background-color: #001f3f; /* גוון כהה יותר לכחול כהה */
    text-decoration: none;
    transform: translateY(-2px);
}
.hero-text-content .cta-button.whatsapp-button img {
    margin-right: 8px; /* האייקון יהיה משמאל לטקסט (כי הכיווניות RTL) */
    width: 24px;
    height: 24px;
    /* הסרת הפילטר כדי שהאייקון יוצג בצבעו המקורי (ורוד) */
    /* filter: invert(65%) sepia(61%) saturate(4699%) hue-rotate(308deg) brightness(100%) contrast(92%); */
}

.hero-section::after { /* הפס האלכסוני הלבן בתחתית */
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%;
    height: 40px; background-color: var(--white);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 1; /* מאחורי תוכן ההירו */
}

@media (max-width: 992px) {
    .hero-inner-content {
        max-width: 55%;
    }
}

@media (max-width: 768px) { /* התאמות למובייל */
    .hero-section {
        min-height: auto; padding-top: 40px; padding-bottom: 80px;
        background-position: center 30%;
    }
    .hero-absolute-logo { /* מיקום הלוגו במובייל */
        position: relative; /* חזור לזרימה רגילה */
        top: auto;
        right: auto;
        margin: 0 auto 20px; /* ממורכז ומרווח תחתון */
        width: clamp(120px, 25vw, 150px); /* גודל קטן יותר למובייל */
    }
    .hero-content-container {
        justify-content: center; /* ממורכז במובייל */
    }
    .hero-inner-content {
        align-items: center; /* פריטים ממורכזים */
        text-align: center;  /* טקסט ממורכז */
        max-width: 90%;
    }
    .hero-text-content h1 { font-size: clamp(2em, 6vw, 2.8em); }
    .hero-text-content .hero-description { font-size: clamp(0.95em, 2.5vw, 1.05em); }
    .hero-section::after { height: 60px; }
}


/* --- 2. "למה דווקא אנחנו" Section --- */
.why-us-section {
    padding: clamp(40px, 8vw, 60px) 0;
    background-color: var(--background-light);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: clamp(20px, 4vw, 30px);
}
.feature-item {
    text-align: center;
    padding: clamp(15px, 3vw, 25px);
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex; /* Revert to flex for simpler vertical alignment */
    flex-direction: column;
    align-items: center; /* Center horizontally */
    min-height: 280px; /* Keep overall min-height for the card */
}

/* הגבלת גודל כרטיסי תכונות במסכים גדולים */
@media (min-width: 1400px) {
    .feature-item {
        min-height: 300px;
        padding: 25px;
    }
}

@media (min-width: 1600px) {
    .feature-item {
        min-height: 320px;
        padding: 30px;
    }
}

@media (min-width: 1920px) {
    .feature-item {
        min-height: 340px;
        padding: 35px;
    }
}
.feature-item img {
    margin-bottom: 15px;
    width: clamp(50px, 10vw, 60px);
    height: auto;
}
.feature-item h3 {
    margin-bottom: 10px;
    font-size: clamp(1.1em, 2.5vw, 1.4em); /* Adjusted font size for headings */
    line-height: 1.2;
    min-height: 3.4em; /* Min height for heading to ensure consistent space */
    display: flex; /* Use flex to center text vertically if it's shorter */
    align-items: center;
    justify-content: center;
}
.feature-item p {
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 0;
    min-height: 7em; /* Min height for paragraph to ensure consistent space */
    display: flex; /* Use flex to center text vertically if it's shorter */
    align-items: center;
    justify-content: center;
}

/* רספונסיביות עבור features-grid */
@media (max-width: 767px) { /* מובייל: עמודה אחת עם מרווחים מהצדדים */
    .features-grid {
        grid-template-columns: 1fr; /* עמודה אחת */
        padding: 0 20px; /* מרווחים מהשוליים באייפון */
    }
    .feature-item {
        width: 100%; /* וודא שהפריט תופס את כל הרוחב הזמין בתוך הפדינג */
    }
}

@media (min-width: 768px) and (max-width: 1023px) { /* טאבלט: 2 עמודות */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) { /* דסקטופ ומעלה: 4 עמודות */
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* התאמות גריד למסכים גדולים */
@media (min-width: 1400px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 0 auto;
        gap: 30px;
    }
}

@media (min-width: 1600px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        gap: 35px;
    }
}

@media (min-width: 1920px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1600px;
        gap: 40px;
    }
}


/* --- 3. Laundromat Image Banner --- */
.image-banner img { 
    width: 100%; 
    object-fit: cover; 
    max-height: 450px; 
}

/* הגבלת גודל תמונות במסכים גדולים */
@media (min-width: 1400px) {
    .image-banner img {
        max-height: 500px;
    }
}

@media (min-width: 1600px) {
    .image-banner img {
        max-height: 550px;
    }
}

@media (min-width: 1920px) {
    .image-banner img {
        max-height: 600px;
    }
}


/* --- 4. "המומחיות שלנו" Section --- */
.specialties-section {
    padding: clamp(40px, 8vw, 60px) 0;
}
.specialties-section .container {
    max-width: 1200px;
}

/* התאמות סקשן מומחיות למסכים גדולים */
@media (min-width: 1400px) {
    .specialties-section .container {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .specialties-section .container {
        max-width: 1600px;
    }
}

@media (min-width: 1920px) {
    .specialties-section .container {
        max-width: 1800px;
    }
}
.specialty-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0 40px;
    margin-bottom: 60px;
    min-height: 220px;
    position: relative;
}

/* התאמות פריטי מומחיות למסכים גדולים */
@media (min-width: 1400px) {
    .specialty-item {
        gap: 0 50px;
        margin-bottom: 70px;
        min-height: 240px;
    }
}

@media (min-width: 1600px) {
    .specialty-item {
        gap: 0 60px;
        margin-bottom: 80px;
        min-height: 260px;
    }
}

@media (min-width: 1920px) {
    .specialty-item {
        gap: 0 70px;
        margin-bottom: 90px;
        min-height: 280px;
    }
}
.specialty-item .specialty-number {
    font-size: 3.5em;
    color: var(--light-pink-specialty-num);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 18px;
    text-align: right;
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
}

/* הגבלת גודל מספרי מומחיות במסכים גדולים */
@media (min-width: 1400px) {
    .specialty-item .specialty-number {
        font-size: 4em;
    }
}

@media (min-width: 1600px) {
    .specialty-item .specialty-number {
        font-size: 4.5em;
    }
}

@media (min-width: 1920px) {
    .specialty-item .specialty-number {
        font-size: 5em;
    }
}
.specialty-item .specialty-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    grid-column: 1;
    grid-row: 1;
}

/* הגבלת גודל תמונות מומחיות במסכים גדולים */
@media (min-width: 1400px) {
    .specialty-item .specialty-image {
        height: 280px;
    }
}

@media (min-width: 1600px) {
    .specialty-item .specialty-image {
        height: 300px;
    }
}

@media (min-width: 1920px) {
    .specialty-item .specialty-image {
        height: 320px;
    }
}
.specialty-item .specialty-content {
    grid-column: 2;
    grid-row: 2;
    text-align: right;
}
.specialty-item .specialty-content h3 {
    color: var(--text-color-dark);
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 700;
}
.specialty-item .specialty-content p {
    font-size: 1em;
    color: #444;
    margin-bottom: 0;
}

/* הגבלת גודל טקסטים במומחיות במסכים גדולים */
@media (min-width: 1400px) {
    .specialty-item .specialty-content h3 {
        font-size: 1.7em;
    }
    .specialty-item .specialty-content p {
        font-size: 1.1em;
    }
}

@media (min-width: 1600px) {
    .specialty-item .specialty-content h3 {
        font-size: 1.9em;
    }
    .specialty-item .specialty-content p {
        font-size: 1.2em;
    }
}

@media (min-width: 1920px) {
    .specialty-item .specialty-content h3 {
        font-size: 2.1em;
    }
    .specialty-item .specialty-content p {
        font-size: 1.3em;
    }
}
/* זוגי: תמונה מימין, טקסט משמאל */
.specialty-item:nth-child(even) .specialty-image {
    grid-column: 2;
    grid-row: 1 / span 2;
}
.specialty-item:nth-child(even) .specialty-number,
.specialty-item:nth-child(even) .specialty-content {
    grid-column: 1;
    text-align: left;
}
.specialty-item:nth-child(even) .specialty-number {
    text-align: left;
}
@media (max-width: 900px) {
    .specialty-item {
        grid-template-columns: 1fr 1.2fr;
        gap: 0 18px;
    }
    .specialty-item .specialty-image {
        max-width: 150px;
    }
}
@media (max-width: 700px) {
    .specialty-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
        min-height: unset;
    }
    .specialty-item .specialty-image {
        max-width: 90vw;
        height: 180px;
    }
    .specialty-item .specialty-number {
        font-size: 2.2em;
        margin-bottom: 8px;
        text-align: center;
        grid-column: unset;
        grid-row: unset;
    }
    .specialty-item .specialty-content {
        text-align: center;
        grid-column: unset;
        grid-row: unset;
    }
}

/* הגדלת תמונות במומחיות שלנו */
.specialty-item .specialty-image {
    max-width: 320px;
    min-width: 180px;
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}
@media (max-width: 900px) {
    .specialty-item .specialty-image {
        max-width: 220px;
        height: 160px;
    }
}
@media (max-width: 700px) {
    .specialty-item .specialty-image {
        max-width: 90vw;
        height: 180px;
    }
}

/* יישור לימין לכל חלקי המומחיות שלנו */
.specialty-item {
    direction: rtl;
}
.specialty-item .specialty-number,
.specialty-item .specialty-content,
.specialty-item .specialty-content h3,
.specialty-item .specialty-content p {
    text-align: right !important;
}
@media (max-width: 700px) {
    .specialty-item .specialty-number,
    .specialty-item .specialty-content,
    .specialty-item .specialty-content h3,
    .specialty-item .specialty-content p {
        text-align: right !important;
    }
}


/* --- 5. "בואו נדבר" Contact Form Section --- */
.contact-form-section {
    background-color: var(--dark-blue-sections); /* רקע כחול כהה */
    color: var(--white); /* טקסט לבן */
    padding: clamp(50px, 8vw, 70px) 0;
    text-align: center;
}
.contact-form-section h2 {
    color: var(--white);
}
.contact-form-section p {
    margin-bottom: 30px;
    font-size: clamp(1em, 2.5vw, 1.1em);
}
.contact-form-section form {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 עמודות עבור שם, טלפון, הודעה, כפתור */
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
    align-items: end; /* יישר את הפריטים לתחתית התא */
}

/* התאמות טופס למסכים גדולים */
@media (min-width: 1400px) {
    .contact-form-section form {
        max-width: 800px;
        gap: 20px;
    }
}

@media (min-width: 1600px) {
    .contact-form-section form {
        max-width: 900px;
        gap: 25px;
    }
}

@media (min-width: 1920px) {
    .contact-form-section form {
        max-width: 1000px;
        gap: 30px;
    }
}
.contact-form-section form input {
    padding: 12px 0; /* מרווח פנימי עליון ותחתון, ללא צדדים */
    border: none; /* הסר את כל הגבולות */
    border-bottom: 1px solid var(--white); /* הוסף רק גבול תחתון לבן */
    background-color: transparent; /* רקע שקוף */
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    color: var(--white); /* צבע טקסט הקלט */
    text-align: right; /* יישור קלט בתוך הטופס */
    border-radius: 0; /* הסר פינות מעוגלות */
}
.contact-form-section form input::placeholder {
    color: var(--white); /* צבע לטקסט Placeholder */
    opacity: 0.7; /* שקיפות קלה ל-Placeholder */
}
.contact-form-section form input:focus-visible {
    border-color: var(--primary-pink); /* שנה צבע גבול בפוקוס */
    outline: none; /* הסר את ה-outline המובנה */
}
.contact-form-section form button.submit-button {
    background-color: var(--primary-pink);
    color: var(--text-color-dark); /* צבע טקסט כחול כהה על הכפתור הוורוד */
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    padding: 8px 15px; /* הקטן את ה-padding כדי להקטין את הכפתור */
    border: none;
    border-radius: 5px;
    font-size: 1.05em;
    min-height: 44px; /* גודל כפתור רגיל */
    width: auto; /* תן לכפתור להתאים את רוחבו לתוכן */
    max-width: 150px; /* הגבל את רוחב הכפתור כדי שלא יהיה ענק */
    margin: 0; /* בטל מרכוז עבור מיקום בגריד */
}
.contact-form-section form button.submit-button:hover,
.contact-form-section form button.submit-button:focus {
    background-color: #d4638c;
}

/* התאמה למובייל - ברוחבים קטנים יותר, השדות יהיו אחד מתחת לשני */
@media (max-width: 599px) {
    .contact-form-section form {
        grid-template-columns: 1fr; /* עמודה אחת במובייל */
    }
    .contact-form-section form input,
    .contact-form-section form button.submit-button {
        grid-column: auto; /* ביטול הגדרות גריד ספציפיות כדי שיערמו */
        margin: 0 auto; /* מרכז את השדות והכפתור במובייל */
    }
}


/* --- 6. "הסניפים שלנו" Section --- */
.branches-section { padding: clamp(50px, 8vw, 70px) 0; background-color: var(--background-light); }
.branches-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: clamp(25px, 4vw, 35px);
}

/* התאמות גריד למסכים גדולים */
@media (min-width: 1400px) {
    .branches-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media (min-width: 1600px) {
    .branches-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        max-width: 1400px;
    }
}

@media (min-width: 1920px) {
    .branches-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        max-width: 1600px;
    }
}
.branch-card {
    background-color: var(--white);
    border-radius: 20px; /* הגדלת עיגול הפינות */
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding-top: 20px; /* הוקטן כדי להעלות את התוכן */
    padding-bottom: 0; /* הסרת מרווח תחתון כדי שהתמונה תהיה צמודה */
    text-align: center;
    position: relative;
    border: 3px solid var(--light-pink-card-border); /* מסגרת ורודה */
    display: flex; flex-direction: column;
    overflow: hidden; /* מבטיח שעיגול הפינות בתמונה ייראה נקי */
    max-width: 320px; /* מגביל את רוחב הכרטיס לרוחב התמונה המרבי */
    margin: 0 auto; /* ממקם את הכרטיס במרכז בתוך העמודה שלו ברשת */
    align-items: center; /* מרכז את הפריטים בתוך כרטיס הסניף */
}

/* הגבלת גודל כרטיסי סניפים במסכים גדולים */
@media (min-width: 1400px) {
    .branch-card {
        max-width: 350px;
    }
}

@media (min-width: 1600px) {
    .branch-card {
        max-width: 380px;
    }
}

@media (min-width: 1920px) {
    .branch-card {
        max-width: 400px;
    }
}

/* הוספת padding אופקי לכל הילדים הישירים של branch-card למעט התמונה */
.branch-card > *:not(.branch-image) {
    padding-left: 30px;
    padding-right: 30px;
}

.branch-card .navigate-button {
    position: static; /* וודא שהכפתור בזרימה רגילה */
    margin-top: 10px; /* מרווח מהטלפון מעליו */
    margin-bottom: 15px; /* מרווח מהתמונה מתחתיו */
    background-color: var(--primary-pink); /* צבע רקע ורוד #F379AA */
    color: var(--text-color-dark); /* צבע כחול מודגש לטקסט */
    padding: 6px 12px; /* הקטנת ה-padding האנכי והאופקי לצמצום רוחב */
    border-radius: 20px; /* פינות מעוגלות יותר לאליפסה */
    font-size: 0.95em;
    display: inline-flex; /* שמירה על תצוגה גמישה לאייקון וטקסט */
    align-items: center;
    justify-content: center; /* מרכוז תוכן הכפתור */
    font-weight: bold; /* טקסט מודגש */
    min-height: auto; /* מאפשר לגובה להתכווץ לתוכן */
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: fit-content; /* וודא שהרוחב מתאים לתוכן בלבד */
    align-self: center; /* מרכז את הכפתור אופקית בתוך ה-flex container (branch-card) */
    order: 5; /* מיקום חמישי בסדר ה-Flexbox */
}
.branch-card .navigate-button:hover,
.branch-card .navigate-button:focus {
    background-color: #d4638c; /* גוון מעט כהה יותר של ורוד לריחוף */
    text-decoration: none;
    transform: translateY(-2px); /* שמור על אפקט הריחוף */
}
.branch-card .navigate-button img { /* אייקון Waze */
    margin-left: 6px; /* רווח של 6px משמאל לאייקון (כלומר מימין לטקסט ב-RTL) */
    margin-right: 0; /* וודא שאין מרווח מימין */
    width: 18px; height: 18px;
    /* הופך אייקון שחור לכחול מודגש */
    filter: brightness(0) saturate(100%) invert(10%) sepia(90%) saturate(2000%) hue-rotate(200deg) brightness(90%) contrast(90%);
}
.branch-card h3 {
    margin-top: 0; /* איפוס מרווח עליון כדי שה-padding של ההורה ישלוט */
    margin-bottom: 12px;
    font-size: 1.6em; /* גודל טקסט שם הסניף הוגדל */
    order: 1; /* מיקום ראשון בסדר ה-Flexbox */
}
.branch-card p { /* פסקת הכתובת */
    font-size: 1.1em; /* גודל טקסט הכתובת הוגדל */
    color: #555;
    margin-bottom: 10px;
    order: 2; /* מיקום שני בסדר ה-Flexbox */
}
.branch-card .branch-hours {
    font-size: 0.95em;
    line-height: 1.6;
    min-height: 70px;
    flex-grow: 1;
    order: 3; /* מיקום שלישי בסדר ה-Flexbox */
}
.branch-card .branch-phone {
    font-weight: bold;
    color: #000000; /* צבע שחור לטקסט הטלפון */
    margin-bottom: 10px; /* הוקטן כדי לקרב את הכפתור */
    font-size: 1.05em;
    order: 4; /* מיקום רביעי בסדר ה-Flexbox */
}
.branch-card .branch-phone a { color: inherit; }
.branch-card .branch-image {
    width: 100%; /* התמונה תופסת את כל רוחב הכרטיס (320px) */
    margin-top: auto; /* נשאר כדי לדחוף את התמונה לתחתית */
    padding-top: 0; /* מרווח פנימי עליון הוסר כדי שהתמונה תהיה צמודה לתוכן מעליה */
    height: 190px;
    object-fit: cover;
    border-radius: 0 0 20px 20px; /* מעגל רק את הפינות התחתונות של התמונה, בהתאמה לפינות הכרטיס */
    order: 6; /* מיקום שישי (ואחרון) בסדר ה-Flexbox */
}

/* הגבלת גודל תמונות כרטיסי סניפים במסכים גדולים */
@media (min-width: 1400px) {
    .branch-card .branch-image {
        height: 210px;
    }
}

@media (min-width: 1600px) {
    .branch-card .branch-image {
        height: 230px;
    }
}

@media (min-width: 1920px) {
    .branch-card .branch-image {
        height: 250px;
    }
}


/* --- 7. FAQ Section --- */
.faq-section { padding: clamp(50px, 8vw, 70px) 0; }
.faq-section h2 { line-height: 1.4; margin-bottom: 40px; }
/* גריד של 2 טורים לשאלות ותשובות */
.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 36px;
}
/* ריחוף חדש ל-FAQ */
.faq-item {
    background: var(--white);
    border: 1.5px solid #ddd;
    transition: box-shadow 0.3s, transform 0.18s, background 0.2s, border 0.2s;
}
.faq-item:hover, .faq-item:focus-within {
    background: #eaf6ff;
    box-shadow: 0 2px 8px 0 rgba(176,213,239,0.13);
    border-radius: 12px;
    color: var(--text-color-dark);
}
.faq-item:focus-within {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}
.faq-question-heading { margin: 0; font-size: 1em; }
.faq-question {
    background-color: var(--text-color-dark); color: var(--white); border: none; width: 100%;
    text-align: right; padding: 18px 22px; font-size: 1.2em; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; min-height: 48px;
}
.faq-question:hover, .faq-question:focus { background-color: #002244; color: var(--white); text-decoration: none; }
.faq-icon {
    font-size: 1.7em; line-height: 1; transition: transform 0.3s ease; margin-right: 10px; /* אייקון יהיה מימין לכפתור */
    color: var(--primary-pink);
    transform: rotate(0deg);
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 22px; background-color: var(--background-light);
    font-size: 1.05em; color: var(--text-color-dark); /* שינוי צבע טקסט התשובה לכחול */
    border-top: 1.5px solid #ddd;
    display: none;
    text-align: right; /* ודא יישור ימין לתשובות ב-FAQ */
}
.faq-answer p:last-child { margin-bottom: 0; }


/* --- 8. Ironing Image Banner --- */
/* .ironing-banner - משתמש באותו קלאס כמו באנר התמונות הקודם */


/* --- 9. "אנחנו כאן תמיד בשבילכם" Section --- */
.always-here-section { padding: clamp(50px, 8vw, 70px) 0; background-color: #eaf6ff; }
.always-here-section .container {
    display: flex; flex-direction: column; align-items: center;
    gap: clamp(20px, 5vw, 40px); text-align: center;
}
.always-here-content p { font-size: clamp(1em, 2.8vw, 1.15em); line-height: 1.8; color: #2c3e50; }
.always-here-image { width: clamp(200px, 50vw, 300px); height: auto; }

/* התאמות למסכים גדולים */
@media (min-width: 768px) {
    .always-here-section .container { flex-direction: row; text-align: right; }
    .always-here-content { flex: 1.5; }
    .always-here-image { flex: 1; }
}

@media (min-width: 1400px) {
    .always-here-content p {
        font-size: clamp(1em, 2.2vw, 1.2em);
    }
    .always-here-image {
        width: clamp(200px, 40vw, 350px);
    }
}

@media (min-width: 1600px) {
    .always-here-content p {
        font-size: clamp(1em, 2vw, 1.25em);
    }
    .always-here-image {
        width: clamp(200px, 35vw, 400px);
    }
}

@media (min-width: 1920px) {
    .always-here-content p {
        font-size: clamp(1em, 1.8vw, 1.3em);
    }
    .always-here-image {
        width: clamp(200px, 30vw, 450px);
    }
}


/* --- 10. Footer --- */
.site-footer {
    background: #fff;
    border: 2px solid #e3e6ea;
    border-radius: 12px;
    box-shadow: none;
    padding: 0;
    margin: 32px 0 0 0;
}
.footer-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    min-height: 54px;
    padding: 0 18px;
}
.footer-logo {
    width: 54px;
    margin-left: 10px;
    margin-right: 0;
    order: 1;
}
.footer-brand-name {
    color: #222;
    font-weight: 800;
    font-size: 1.2em;
    margin-right: 0;
    margin-left: 8px;
    order: 2;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-brand-name a {
    color: #222 !important;
    text-decoration: none;
}
.footer-brand-name a:hover, .footer-brand-name a:focus {
    color: #444 !important;
    text-decoration: underline;
}
.footer-brand-name:hover, .footer-brand-name:focus {
    color: #444;
    text-decoration: underline;
}
.footer-icon-link img {
    width: 26px;
    height: 26px;
    vertical-align: middle;
}
.footer-instagram-name {
    color: #222;
    font-weight: 600;
    font-size: 1em;
    margin: 0 4px;
    order: 4;
}
.footer-phone-link {
    color: #222;
    font-weight: 700;
    font-size: 1em;
    margin: 0 4px;
    order: 6;
}
.footer-link {
    color: #222;
    font-weight: 600;
    font-size: 1em;
    margin: 0 4px;
    order: 7;
}
.footer-link:hover, .footer-link:focus { color: var(--primary-pink); text-decoration: underline; }
.copyright {
    font-size: 0.95em;
    color: #222;
    margin-right: 8px;
    order: 8;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
@media (max-width: 900px) {
    .footer-flex { flex-wrap: wrap; gap: 8px; padding: 0 4px; }
    .footer-logo { width: 40px; }
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 2000;
    background: none;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
    padding: 0;
    display: block;
}

.floating-whatsapp-button img {
    width: 120px; /* הגדלתי מ-150px ל-120px למסכים רגילים */
    height: auto;
    margin: 0;
    display: block;
    filter: none !important;
    opacity: 1 !important;
}

/* התאמות למסכים קטנים */
@media (max-width: 768px) {
    .floating-whatsapp-button {
        bottom: 80px;
        right: 15px;
        width: auto;
        height: auto;
    }
    
    .floating-whatsapp-button img {
        width: 100px; /* הגדלתי מ-90px ל-100px */
        height: auto;
    }
}

/* התאמות למסכים קטנים מאוד */
@media (max-width: 480px) {
    .floating-whatsapp-button {
        bottom: 70px;
        right: 15px;
        width: auto;
        height: auto;
    }
    
    .floating-whatsapp-button img {
        width: 90px; /* גודל מתאים למסכים קטנים מאוד */
        height: auto;
    }
}

/* --- Floating Phone Button --- */
.floating-phone-button {
    position: fixed;
    bottom: 20px;
    right: 65px;
    z-index: 1000;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

@media (max-width: 768px) {
    .floating-phone-button {
        bottom: 15px;
        right: 50px; /* מיושר יותר מתחת לוואטסאפ */
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .floating-phone-button {
        bottom: 10px;
        right: 40px; /* מיושר מתחת לוואטסאפ */
        width: 50px;
        height: 50px;
    }
}

/* --- Popup Only (No Overlay) --- */
.promo-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(243,121,170,0.18);
  border: 2px solid #F379AA;
  z-index: 2000;
  min-width: 320px;
  max-width: 95vw;
  animation: popup-bounce-in 0.5s cubic-bezier(.4,2,.6,1);
}
.promo-popup .popup-content {
  padding: 32px 24px 24px 24px;
  text-align: center;
}
.promo-popup h2 {
  color: var(--primary-pink);
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: 800;
}
.promo-popup p { color: #222; font-size: 1.1em; margin-bottom: 18px; }
.popup-actions { display: flex; gap: 16px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.popup-btn {
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 1.1em;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: #fff;
  color: var(--primary-pink);
  box-shadow: 0 2px 8px 0 rgba(243,121,170,0.10);
  transition: background 0.2s, color 0.2s, transform 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  width: auto;
}
.popup-btn.whatsapp {
  background: var(--whatsapp-green);
  color: #fff;
}
.popup-btn.phone {
  background: var(--primary-blue-hero-bg);
  color: var(--text-color-dark);
}
.popup-btn.confirm {
  background: var(--primary-pink);
  color: #fff;
}
.popup-btn:hover, .popup-btn:focus {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 4px 16px 0 rgba(243,121,170,0.18);
  background: #fff3fa;
}
.promo-popup[style*="display: none"] {
  display: none !important;
}

/* --- FAQ Hover Fix --- */
.faq-item:hover, .faq-item:focus-within {
  background: #eaf6ff;
  box-shadow: 0 2px 8px 0 rgba(176,213,239,0.13);
  border-radius: 12px;
  color: var(--text-color-dark);
}
.faq-question:hover, .faq-question:focus {
  background: #eaf6ff;
  color: var(--text-color-dark);
}

/* --- Responsive Adjustments --- */
@media (max-width: 480px) {
    .promo-ticker-content span { font-size: 0.85em; padding: 0 15px;}
    body { padding-top: 36px; }
    .skip-link:focus { top: 40px; }
    

    
    /* תיקון כפתור CTA בהירו - יותר ימינה */
    .hero-text-content .cta-button.whatsapp-button {
        margin-right: 20px; /* הזזה ימינה */
        align-self: flex-end; /* יישור לצד ימין */
    }
    
    /* וידוא שהטקסט בהירו ממורכז אבל הכפתור ימינה */
    .hero-inner-content {
        align-items: flex-start; /* במקום center */
    }
    
    .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* כפתור ימינה */
    }
    
    .hero-text-content h1,
    .hero-text-content .hero-description {
        align-self: center; /* כותרת ותיאור ממורכזים */
        text-align: center;
    }
}

@media (max-width: 900px) {
    .faq-list {
        grid-template-columns: 1fr;
        gap: 18px 0;
    }
}

/* התאמות גריד למסכים גדולים */
@media (min-width: 1400px) {
    .faq-list {
        grid-template-columns: 1fr 1fr;
        max-width: 1200px;
        margin: 0 auto;
        gap: 30px 40px;
    }
}

@media (min-width: 1600px) {
    .faq-list {
        grid-template-columns: 1fr 1fr;
        max-width: 1400px;
        gap: 35px 45px;
    }
}

@media (min-width: 1920px) {
    .faq-list {
        grid-template-columns: 1fr 1fr;
        max-width: 1600px;
        gap: 40px 50px;
    }
}

/* אנימציית כניסה לכל section עיקרי */
.hero-section, .why-us-section, .specialties-section, .contact-form-section, .branches-section, .faq-section, .always-here-section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-section.in-view, .why-us-section.in-view, .specialties-section.in-view, .contact-form-section.in-view, .branches-section.in-view, .faq-section.in-view, .always-here-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ריחופים לאלמנטים אינטראקטיביים */
.cta-button, .submit-button, .feature-item, .branch-card, .faq-item, .faq-question {
    transition: box-shadow 0.3s, transform 0.2s, background 0.2s, color 0.2s;
}
.cta-button:hover, .submit-button:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}
.feature-item:hover, .branch-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.faq-item:hover, .faq-question:hover {
    background: #f6f6fa;
  color: var(--primary-pink);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* --- Footer Grid Modern --- */
.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* הגבלת רוחב הפוטר במסכים גדולים */
@media (min-width: 1400px) {
    .footer-container {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .footer-container {
        max-width: 1500px;
    }
}

@media (min-width: 1920px) {
    .footer-container {
        max-width: 1600px;
    }
}
.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
  align-items: center;
    gap: 40px;
}
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  gap: 8px;
}
.footer-center {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.footer-section {
  display: flex;
    flex-direction: column;
  align-items: center;
    gap: 12px;
}
.footer-section-title {
    font-weight: 700;
    font-size: 1em;
    color: #222;
    margin: 0;
}
.footer-links {
  display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.footer-link {
    color: #444;
    text-decoration: none;
    font-size: 0.9em;
  transition: color 0.2s;
}
.footer-link:hover {
    color: var(--primary-pink, #F379AA);
    text-decoration: underline;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
    gap: 12px;
}
.footer-logo {
    width: 50px;
    height: 50px;
}
.footer-brand-name {
    font-size: 1.3em;
  font-weight: 800;
    color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-brand-name:hover {
  color: #444;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-social-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-icon {
    width: 24px;
    height: 24px;
}
.footer-social-link {
    color: #444;
    text-decoration: none;
    font-size: 0.9em;
  font-weight: 600;
    transition: color 0.2s;
}
.footer-social-link:hover {
    color: var(--primary-pink, #F379AA);
}
.footer-phone {
    color: #444;
    text-decoration: none;
    font-size: 0.9em;
  font-weight: 600;
    transition: color 0.2s;
}
.footer-phone:hover {
    color: var(--primary-pink, #F379AA);
}
.copyright {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-left, .footer-right {
        align-items: center;
    }
    .footer-center {
        gap: 20px;
    }
    .footer-social {
        flex-direction: column;
        gap: 15px;
    }
    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }
}
@media (max-width: 480px) {
    .footer-center {
        flex-direction: column;
        gap: 20px;
    }
    .footer-social {
        gap: 10px;
    }
    .footer-social-item {
        flex-direction: column;
        gap: 4px;
    }
}

/* --- Footer Modern Flex --- */
.site-footer {
    background: #fff;
    border: 2px solid #e3e6ea;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0;
    margin: 32px 0 0 0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-brand { order: 1; }
.footer-social-link[href*='facebook'] { order: 2; }
.footer-social-item[href*='facebook'] { order: 3; }
.footer-social-link[href*='instagram'] { order: 4; }
.footer-social-item[href*='instagram'] { order: 5; }
.footer-phone { order: 6; }
.footer-contact-item { order: 7; }
.footer-link[href*='NEGISHUT'] { order: 8; }
.footer-link[href*='privacy'] { order: 9; }
.copyright { order: 10; }

/* --- Pink Stripe Bar --- */
.pink-stripe-bar {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 20;
  min-height: 70px;
  /* overlap: העלה את הפס חצי על ההירו */
  transform: translateY(-50%);
}

.pink-stripe-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  z-index: 1;
  object-fit: cover;
  border-radius: 40px;
}

.pink-stripe-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 36px;
  width: 100%;
  padding: 18px 0;
}

.pink-stripe-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: #022E71;
  font-size: 1.2em;
}

.pink-stripe-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .pink-stripe-content {
    gap: 18px;
  }
  .pink-stripe-icon {
    width: 24px;
    height: 24px;
  }
  .pink-stripe-bar {
    min-height: 50px;
    transform: translateY(-35%);
  }
}
@media (max-width: 600px) {
  .pink-stripe-content {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
  .pink-stripe-bar {
    width: 98%;
    transform: translateY(-20%);
  }
}