/* ======================== הגדרות עיצוב כלליות (CSS) ======================== */
:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --text-color: #222;
    --white: #ffffff;
    --m4me-blue: #1e3a5f;
    --m4me-gray: #f8f9fa;
    /* צבעים לטפסים - תוקנו לגוונים שנראים היטב במסכי מחשב */
    --form-header-blue: #1e3a5f;
    --form-bg-yellow: #fff3cd; 
    --form-bg-green: #d4edda;  
}

.section-center-title { 
    text-align: center !important; 
    margin-bottom: 15px; 
    display: block; 
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

*:focus-visible {
    outline: 3px solid #000000;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px #ffffff;
    z-index: 1000;
}

html, body { max-width: 100vw; overflow-x: hidden; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background-color: #f4f4f4; color: var(--text-color); line-height: 1.6; padding-bottom: 80px; transition: background 0.3s; }

/* מצבי נגישות */
body.grayscale-mode { background-color: #e0e0e0 !important; }
body.grayscale-mode header[role="banner"],
body.grayscale-mode main#main-content,
body.grayscale-mode footer[role="contentinfo"] { filter: grayscale(100%) !important; }
body.high-contrast-mode { background-color: black !important; color: yellow !important; }
body.high-contrast-mode * { background-color: black !important; color: yellow !important; border-color: yellow !important; }
body.high-contrast-mode .phone-icon { filter: none !important; }
body.high-contrast-mode .phone-icon-svg { filter: none !important; fill: yellow !important; }

.skip-link { position: absolute; top: -500px; left: 0; background: #000; color: white; padding: 10px 20px; z-index: 99999; text-decoration: none; font-weight: bold; transition: top 0.3s; }
.skip-link:focus { top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.gradient-text {
    background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* HEADER STYLES */
header[role="banner"] {
    background-color: var(--secondary-color); color: var(--primary-color);
    padding: 5px 10px 10px 10px;
    text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: relative; display: flex; flex-direction: column; align-items: center;
}

/* HAMBURGER MENU STYLES */
.hamburger-btn { position: absolute; top: 15px; right: 15px; background: transparent; border: none; cursor: pointer; z-index: 2001; display: flex; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger-btn span { display: block; width: 28px; height: 3px; background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); border-radius: 3px; transition: all 0.3s; }
.hamburger-btn.open { position: fixed !important; z-index: 2005 !important; }
.hamburger-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.side-menu { position: fixed; top: 0; right: -300px; width: 260px; height: 100vh; background-color: var(--secondary-color, #1a1a1a); z-index: 2000; transition: right 0.3s ease; box-shadow: -2px 0 10px rgba(0,0,0,0.5); padding-top: 60px; text-align: right; overflow-y: auto; }
.side-menu.open { right: 0; }
.side-menu ul { list-style: none; padding: 0; margin: 0; }
.side-menu li { border-bottom: 1px solid rgba(255,255,255,0.08); transition: background-color 0.2s; }
.side-menu li:hover { background-color: rgba(212, 175, 55, 0.1); }
.side-menu a { display: flex; align-items: center; padding: 15px 20px; color: white; text-decoration: none; font-size: 1.05rem; transition: background 0.2s, color 0.2s; }
.side-menu a:hover, .side-menu a.active, .side-menu .sub-link:hover, .side-menu .sub-link.active { background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; color: transparent !important; font-weight: bold !important; }

.menu-icon { 
    display: inline-block !important; 
    margin-left: 8px; /* מוסיף את הרווח הרצוי */
    font-size: 1.4rem !important; /* התוספת שלנו להגדלת האייקונים בתפריט */
}

.side-menu a:hover .menu-icon, .side-menu a.active .menu-icon { 
    background: transparent !important; 
    -webkit-background-clip: border-box !important; 
    -webkit-text-fill-color: initial !important; 
    color: initial !important; 
}

.menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.6); z-index: 1999; backdrop-filter: blur(2px); }
.menu-overlay.show { display: block; }

.sub-menu-label { padding: 15px 20px; color: #ffffff; font-size: 1.05rem; font-weight: bold; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.2s; }
.sub-menu-label:hover { background-color: rgba(212, 175, 55, 0.1); }
.sub-menu-list { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; background-color: rgba(0, 0, 0, 0.2); }
.sub-menu-list.open { max-height: 500px; }
.sub-link { padding-right: 35px !important; font-size: 0.95rem !important; color: #ccc !important; border-bottom: 1px solid rgba(255,255,255,0.03); }

/* כפתורי שמירה לוגו וכותרות */
.header-save-btn { position: relative; z-index: 1050; background: linear-gradient(var(--secondary-color), var(--secondary-color)) padding-box, linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%) border-box; border: 2px solid transparent; border-radius: 20px; padding: 4px 12px; font-size: 0.8rem; cursor: pointer; display: flex; align-items: center; gap: 5px; margin-bottom: 2px; transition: all 0.3s; }
.header-save-btn span.text-grad { background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: bold; }
.header-save-btn svg { width: 14px; height: 14px; fill: url(#goldGrad); }
.header-save-btn:hover { background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%) padding-box, linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%) border-box; }
.header-save-btn:hover span.text-grad { -webkit-text-fill-color: var(--secondary-color); }
.header-save-btn:hover svg { fill: var(--secondary-color); }

.site-logo { 
    width: 100%; 
    max-width: 260px; /* צמצום מ-380px כדי לחסוך מקום */
    height: auto; 
    min-height: auto; /* ביטול הגובה המינימלי (90px) שיוצר חלל ריק */
    object-fit: contain; 
    display: block; 
    margin: 5px auto; /* הקטנת המרווח (Margin) מ-10px ל-5px */
}

.main-yellow-title { 
    font-size: 1.6rem; 
    font-weight: 800; 
    margin: 0; 
    line-height: 1.1; 
}

h2#rotating-headline, #typewriter { 
    font-size: 1rem; 
    font-weight: bold; 
    color: #ddd; 
    margin-top: 10px; /* הגדלנו את המרווח מהכותרת הראשית */
    transition: opacity 0.5s ease; 
    min-height: 45px; /* החלפנו מ-height ל-min-height כדי לאפשר ל-2 שורות לנשום */
    line-height: 1.4; /* יוצר מרווח יפה בין שתי השורות של המשפט */
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 0 10px; 
}

/* HERO SECTION & BUTTONS */
.call-btn-container { 
    text-align: center; 
    margin: 20px 0 35px 0; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
}

/* --- עיצוב אייקון הטלפון - פתרון סופי --- */
.phone-icon {
    display: inline-block !important;
    font-size: 1.6rem !important;
    transform: scaleX(-1) !important;
    margin-left: 10px !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    filter: brightness(0) !important;
    color: black !important;
}

/* מוודא שכפתור הזהב עצמו נראה טוב - מעודכן למניעת גלישה במובייל */
.btn-call-gradient {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, #d4af37 0%, #f9e69c 50%, #d4af37 100%);
    color: #000 !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
    border: none;
    width: max-content !important;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap !important;
}

/* התאמה למובייל לכפתור החיוג הראשי */
@media (max-width: 480px) {
    .btn-call-gradient {
        font-size: 1rem !important;
        padding: 10px 15px !important;
    }
    .phone-icon {
        font-size: 1.3rem !important;
    }
}

.jump-icon {
    font-size: 1.35rem;
    display: inline-block;
}
.plane-flip {
    transform: scaleX(-1);
}
.form-jump-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 500px;
    justify-content: center;
    margin: 20px auto;
}

/* מרכוז אזור האייקונים ומניעת מתיחה */
.service-features-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto !important;
    padding: 0 15px;
    box-sizing: border-box;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

/* כותרת ממורכזת */
.section-center-title {
    text-align: center;
    margin-bottom: 30px;
}

.anchor-btn {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s, background 0.2s, color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.anchor-btn:hover {
    transform: scale(1.03);
}
.btn-blue-style {
    background: var(--m4me-blue);
    color: white;
    border: 2px solid var(--m4me-blue);
}
.btn-blue-style:hover {
    background: #142a45;
}
.btn-white-style {
    background: white;
    color: var(--m4me-blue);
    border: 2px solid var(--m4me-blue);
}
.btn-white-style:hover {
    background: #f0f4f8;
}
.anchor-btn span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CARDS & SECTIONS */
.card { background: white; border-radius: 12px; padding: 25px 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); max-width: 850px; width: 95%; margin: 40px auto 45px auto; }.service-features-container { margin-bottom: 45px; }
.section-headline-icons { text-align: center; font-size: 1.3rem; font-weight: 800; color: var(--secondary-color); margin-bottom: 15px; display: inline-block; padding-bottom: 5px; border-bottom: 3px solid transparent; border-image: linear-gradient(135deg, #A67C00, #D4AF37, #FBF5B7, #D4AF37, #A67C00) 1; }
.service-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-card { background: white; border-radius: 12px; padding: 15px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: transform 0.3s ease; border-bottom: 3px solid transparent; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }
.service-card:hover { transform: translateY(-5px); border-image: linear-gradient(135deg, #A67C00, #D4AF37, #FBF5B7, #D4AF37, #A67C00) 1; }
.service-icon-box { width: 50px; height: 50px; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; }
.service-icon-box svg { width: 100%; height: 100%; stroke: url(#goldGrad); fill: none; stroke-width: 1.5; }
.service-title { font-size: 0.95rem; font-weight: 700; color: var(--secondary-color); line-height: 1.2; }

/* עיצוב תיבת המידע עם פס זהב גרדיאנט מימין */
.info-box-premium {
    background-color: #ffffff;
    border-right: 5px solid; /* יוצר את הפס בצד ימין */
    border-image: linear-gradient(to bottom, #d4af37, #f9e69c, #d4af37) 1;
    padding: 15px 20px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: right; /* תוקן להצמדה לימין */
    border-radius: 2px; /* שומר על המראה הנקי */
}

.info-box-premium p {
    margin: 0 !important;
    color: #1a375f;
    font-weight: normal; /* שונה לרגיל כדי שהמילים המודגשות יוכלו לבלוט */
    font-size: 1.05rem;
    line-height: 1.5;
}

/* הוספתי כלל ספציפי כדי לוודא שההדגשות ייראו חזקות וברורות */
.info-box-premium p strong {
    font-weight: 900; 
}

/* ביטול עיצוב קודם שעלול להפריע בתוך form-title-area */
.form-title-area p {
    margin-bottom: 10px;
}

/* קופסת קידום המחשבון */
.calculator-promo-box { 
    border: 2px solid #1a2b4c; 
    background-color: #f8f9fa; 
    border-radius: 8px; 
    padding: 30px 20px; 
    text-align: center; 
    max-width: 800px; 
    margin: 30px auto 45px auto; 
    direction: rtl; 
    /* התוספות שמסדרות את התצוגה במובייל: */
    width: 100%; 
    box-sizing: border-box; 
}

.calculator-promo-box p { 
    font-size: 18px; 
    font-weight: bold; 
    color: #222; 
    margin-bottom: 20px; 
    line-height: 1.5; 
}

.gold-calc-btn { 
    background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); 
    color: #000; 
    padding: 12px 30px; 
    border-radius: 30px; 
    text-decoration: none; 
    font-weight: 900; 
    font-size: 18px; 
    display: inline-block; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
    transition: transform 0.2s ease; 
}

.gold-calc-btn:hover { 
    transform: scale(1.05); 
}

/* FORMS עיצוב טפסים */
.form-title-area { text-align: center; margin-bottom: 25px; margin-top: 10px; }
.form-title-area h2 { font-size: 1.6rem; font-weight: 800; color: var(--secondary-color); margin-bottom: 5px; }
.form-title-area p { color: #555; font-size: 1rem; }
.intercity-note-box { background-color: #ffffff; border-right: 5px solid transparent; border-image: linear-gradient(to bottom, #A67C00, #D4AF37, #FBF5B7, #D4AF37, #A67C00) 1; box-shadow: 0 2px 15px rgba(0,0,0,0.08); padding: 15px 20px; margin: 15px auto 40px auto; max-width: 800px; direction: rtl; text-align: right; border-radius: 4px; }
.intercity-note-box p { margin: 0; color: #1a2b4c; font-size: 17px; line-height: 1.4; }
.form-explanation-box { 
    background-color: #dbeafe !important; /* תכלת מעט עמוק יותר כדי שייראה במחשב */
    border-right: 4px solid var(--m4me-blue) !important; 
    padding: 15px; 
    border-radius: 6px; 
    margin: 15px auto 25px auto; 
    max-width: 500px; 
    text-align: right; 
    font-size: 0.95rem; 
    color: #0d1b2a; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}

.exact-replica-form { background: #fff; border: 2px solid #333; max-width: 500px; margin: 0 auto 50px auto; scroll-margin-top: 20px; color: #000; border-radius: 8px; overflow: hidden; }
.replica-header { background: linear-gradient(135deg, var(--form-header-blue) 0%, #0d1b2a 100%); color: white; text-align: center; padding: 22px 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); position: relative; }
.replica-header::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); }
.replica-header h3 { font-size: 1.35rem; margin: 0; line-height: 1.3; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; text-align: center; }
.replica-header p { margin: 8px 0 0 0; font-size: 0.95rem; opacity: 0.9; color: #e0e0e0; }
.plane-icon { font-size: 2rem; display: inline-block; text-shadow: 0 0 10px rgba(212, 175, 55, 0.6); }

.replica-body { padding: 15px; text-align: right; }
.replica-label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 3px; color: #000; }
.replica-input { width: 100%; padding: 5px; border: 1px solid #777; background-color: #fdfdfd; font-size: 0.95rem; height: 35px; border-radius: 4px; }
.replica-row { display: flex; gap: 8px; margin-bottom: 10px; align-items: flex-end; }
.replica-col { flex: 1; }
.replica-col.small { flex: 0.4; }
.replica-col.large { flex: 0.6; }
.replica-col.tiny { flex: 0.35; }

/* תיקון ליקוי: סיווג חזק לקופסאות כדי למנוע דריסת צבע */
.exact-replica-form .yellow-box { background-color: var(--form-bg-yellow) !important; border: 1px solid #aaa; padding: 10px; margin-bottom: 12px; border-radius: 6px; }
.exact-replica-form .green-box { background-color: var(--form-bg-green) !important; border: 1px solid #aaa; padding: 10px; margin-bottom: 12px; border-radius: 6px; }

.box-title { font-weight: 800; font-size: 0.95rem; margin-bottom: 8px; text-align: center; display: block; color: #000; border-bottom: 1px dashed #bbb; padding-bottom: 4px; }

.airport-toggle-container { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid #ccc; }
.airport-label { font-weight: bold; color: #990000; font-size: 0.95rem; }

/* תיקון ליקוי: כפיית הצבע האפור ספציפית לשדה שמכיל את המחלקה replica-input */
.exact-replica-form .notes-box textarea.replica-input { 
    width: 100%; 
    height: 80px; /* תואם למה שקבעת ב-forms.php */
    border: 1px solid #777; 
    background-color: #e0e0e0 !important; 
    padding: 5px; 
    resize: vertical; 
    border-radius: 4px; 
}

/* ========================================================================== 
   חלונית מעבר (Redirect Modal) - גרסה סופית וחסינה
   ========================================================================== */

/* 1. השכבה המעומעמת - החלק שהיה חסר לך! */
.redirect-overlay {
    display: none; /* ה-JS הופך את זה ל-flex כשצריך */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.85) !important;
    z-index: 999999 !important; /* מעל הכל */
    justify-content: center !important;
    align-items: center !important;
    backdrop-filter: blur(5px);
    direction: rtl !important;
}

/* 2. הקופסה הלבנה */
.redirect-box { 
    background: #ffffff !important; 
    /* מסגרת כחול נייבי משלושה צדדים בלבד */
    border-left: 5px solid #1e3a5f !important;
    border-right: 5px solid #1e3a5f !important;
    border-bottom: 5px solid #1e3a5f !important;
    border-top: none !important;
    
    border-radius: 0 0 15px 15px !important; /* פינות מעוגלות רק למטה */
    padding: 40px 25px !important; 
    text-align: center !important; 
    max-width: 450px !important; 
    width: 90% !important; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.3) !important; 
    position: relative !important; 
    overflow: hidden !important;
}

/* 3. פס הזהב למעלה */
.redirect-box::before { 
    content: "" !important; 
    position: absolute !important; 
    top: 0 !important; 
    left: 0 !important; 
    right: 0 !important; 
    height: 8px !important; 
    background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%) !important; 
    z-index: 20 !important;
}

/* 4. הכותרת והטקסט */
.redirect-title { 
    color: #1e3a5f !important; 
    font-size: 1.9rem !important; 
    font-weight: 900 !important; 
    margin: 15px 0 !important;
    display: block !important;
}

.redirect-text { 
    color: #333 !important; 
    font-size: 1.1rem !important; 
    line-height: 1.6 !important; 
    margin-bottom: 30px !important;
    display: block !important;
}

/* 5. ספינר הטעינה המוזהב */
.redirect-spinner { 
    display: inline-block !important; 
    width: 50px !important; 
    height: 50px !important; 
    border: 5px solid #f3f3f3 !important; 
    border-top: 5px solid #D4AF37 !important; 
    border-radius: 50% !important; 
    animation: spinModal 1s linear infinite !important; 
}

@keyframes spinModal {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CONSENT & SUBMIT */
.consent-wrapper { background: #fdfdfd; border: 1px solid #ccc; border-radius: 6px; padding: 10px; margin: 15px 0; display: flex; align-items: flex-start; gap: 10px; }
.consent-wrapper input[type="checkbox"] { width: 20px; height: 20px; cursor: pointer; margin-top: 2px; flex-shrink: 0; }
.consent-wrapper label { font-size: 0.85rem; color: #333; cursor: pointer; line-height: 1.4; }
.consent-wrapper a { color: var(--m4me-blue); text-decoration: underline; font-weight: bold; }
.flight-board-link { display: block; text-align: center; background: #fff; color: var(--m4me-blue); padding: 8px; border-radius: 6px; text-decoration: none; font-weight: bold; border: 1px solid var(--m4me-blue); margin-bottom: 15px; margin-top: 10px; transition: all 0.2s; font-size: 0.95rem; }
.flight-board-link:hover { background: #e8f4fd; }
.replica-submit { background-color: var(--m4me-blue); color: white; width: 100%; padding: 14px; font-size: 1.25rem; font-weight: 800; border: none; cursor: pointer; margin-top: 5px; text-align: center; border-radius: 6px; transition: background 0.2s; }
.replica-submit:hover { background-color: #142a45; }
.form-error-msg { color: #d32f2f; background-color: #ffebee; padding: 10px; border-radius: 5px; font-size: 0.9rem; font-weight: bold; text-align: center; display: none; }

/* --- CALCULATOR & GPS WIDGET --- */
.m4me-calc-widget { font-family: 'Heebo', 'Assistant', system-ui, sans-serif; max-width: 100%; margin: 0 auto 45px auto; background: var(--m4me-bg); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); overflow: hidden; color: #333; position: relative; }
.m4me-calc-widget::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); z-index: 10; }
.m4me-header { background: var(--m4me-blue); color: white; padding: 20px; text-align: center; }
.m4me-header h2 { margin: 0; font-size: 1.5rem; color: white; }
.m4me-header h3 { margin: 0; font-size: 1.3rem; color: white; display: flex; align-items: center; justify-content: center; gap: 10px; }
.m4me-content { padding: 25px; background: #ffffff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.calc-input { width: 100%; height: 45px; border: 1px solid #767676; border-radius: 8px; padding: 0 10px; font-size: 16px; box-sizing: border-box; background:#fff; color:#000; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 15px 0; }
.checkbox-item-wrapper { display: flex; align-items: center; gap: 8px; }
.checkbox-item-wrapper input[type="checkbox"] { width: 20px; height: 20px; cursor: pointer; }
.checkbox-item-wrapper label { cursor: pointer; font-size: 0.95rem; font-weight: 500; }
.result-container { margin-top: 20px; background: var(--m4me-blue); color: white; padding: 25px; border-radius: 12px; text-align: center; position: relative; }
.result-value { font-size: 3rem; font-weight: 800; display: block; background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.tariff-badge { position: absolute; top: 10px; left: 10px; background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); color: #000; padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; }

.order-btn-link { display: block; margin-top: 15px; text-align: center; padding: 15px; text-decoration: none; font-weight: 800; border-radius: 8px; font-size: 1.1rem; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.2s; background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); color: #000; }
.order-btn-link:hover { transform: scale(1.02); }
.phone-number-break { display: inline-block; direction: ltr; }

.info-footer { background: var(--m4me-gray); padding: 20px; font-size: 0.85rem; border-top: 1px solid #eee; line-height: 1.6; }
.info-table { width: 100%; border-collapse: collapse; margin: 10px 0; background: white; }
.info-table td, .info-table th { border: 1px solid #ddd; padding: 8px; text-align: center; }
.info-table th { background: #f1f1f1; font-weight: 700; }
.price-table { width: 100%; border-collapse: collapse; margin-top: 15px; background: white; border-radius: 8px; overflow: hidden; }
.price-table th, .price-table td { border: 1px solid #999; padding: 12px; text-align: right; }
.price-table th { background-color: var(--secondary-color) !important; text-align: center !important; color: #ffffff !important; }
/* יישור עמודת המחירים לימין, ש"ח משמאל, ומניעת ירידת שורה בנייד */
.price-table td.price-col {
    text-align: right !important; /* מצמיד את התוכן לימין העמודה */
    direction: rtl !important; /* דואג שה-₪ יופיע משמאל למספרים */
    white-space: nowrap !important; /* ה-תיקון הקריטי: מונע מה-₪ לרדת שורה בנייד! */
}

/* עיצוב כללי לווידג'ט GPS - יעבוד בכל דף שתבחרי */
.m4me-calc-widget {
    width: 95% !important; /* משאיר מעט מרווח מהצדדים בנייד */
    max-width: 850px !important; /* רווח נעים לעין במסכי מחשב */
    margin: 40px auto !important; /* מרכוז מושלם וריווח מהאלמנטים שמעליו */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* צל קצת יותר עמוק ויוקרתי */
    background-color: #fff;
}

/* עיצוב הכותרת של הווידג'ט (הפס הכחול) */
.m4me-header {
    background-color: #1a375f; /* הכחול הכהה של האתר שלך */
    padding: 20px !important;
    text-align: center;
}

/* תיקון צבע הכותרת ללבן - לווידג'ט ה-GPS */
.m4me-header h3 {
    margin: 0;
    color: #ffffff !important; /* משנה חזרה ללבן נקי */
    font-size: 1.5rem;
    font-weight: bold;
}

/* מוודא שגם טקסט המשנה (האיתור מיקום) נשאר לבן/בהיר */
.m4me-header p {
    color: #eeeeee !important;
    margin-top: 5px;
}

/* עיצוב כפתור הווטסאפ בתוך ה-GPS (מצב רגיל) */
.whatsapp-geo-btn {
    display: block !important;
    width: 100% !important;
    max-width: 350px !important;
    margin: 20px auto !important;
    background: #1e3a5f !important; /* כחול נייבי אחיד עם שאר האתר */
    color: white !important;
    border: 2px solid #d4af37 !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* מוודא שהטקסט בתוך הכפתור יכול לקבל אנימציה ועיצוב נפרד */
.whatsapp-geo-btn span.geo-text {
    display: inline-block;
    transition: all 0.3s ease;
}

/* מצב ריחוף (Hover) על הכפתור */
.whatsapp-geo-btn:hover {
    background: #1e3a5f !important; /* הרקע נשאר כחול כדי להבליט את הטקסט */
    transform: translateY(-2px); /* האפקט של הקפיצה הקטנה למעלה */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* צל עדין בריחוף */
}

/* הגרדיאנט מוחל על הטקסט עצמו בזמן ריחוף */
.whatsapp-geo-btn:hover span.geo-text {
    background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
}

/* תיקון צבעי ריחוף לכפתור שליחת מיקום (GPS) */
.whatsapp-geo-btn:hover {
    background: #1e3a5f !important; 
    color: #d4af37 !important; 
    border-color: #d4af37 !important;
}

/* תיקון דסקטופ סופי להפרדת צבעים */
@media (min-width: 1025px) {
    
    /* 1. הופך את כל גוף הווידג'ט לכהה יותר */
    article.m4me-calc-widget {
        background-color: #f2f5f8 !important; /* אפור-כחלחל עדין */
        margin-bottom: 60px !important; /* יוצר רווח פיזי מהכותרת שמתחת */
        box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important; /* צל שמפריד מהדף */
    }

    /* 2. ניקוי הרקע הלבן מהתוכן - זה החלק הכי חשוב */
    .m4me-calc-widget .m4me-content {
        background: transparent !important; /* מבטל את הלבן שרואים בתמונה */
        background-color: transparent !important;
        padding: 40px 20px !important;
    }

    /* 3. הוספת פס הפרדה עדין בתחתית הכרטיסייה */
    article.m4me-calc-widget {
        border-bottom: 3px solid #d4af37; /* פס זהב דק שסוגר את הכרטיסייה */
    }
}

/* התאמת דסקטופ: זהב בתחתית ורקע פנימי כהה */
@media (min-width: 1025px) {
    
    /* 1. הופך את כל גוף הכרטיסייה לכהה יותר ומוסיף מרווח */
    article.m4me-calc-widget {
        background-color: #f2f5f8 !important; /* אפור-כחלחל עדין לבידול */
        margin-bottom: 80px !important; 
        position: relative;
        overflow: hidden;
        border: none !important; /* מבטל מסגרות ישנות */
    }

    /* 2. ניקוי הרקע הלבן מהתוכן הפנימי */
    .m4me-calc-widget .m4me-content {
        background: transparent !important;
        background-color: transparent !important;
        padding: 40px 20px !important;
    }

    /* 3. הוספת פס זהב גרדיאנט בתחתית (בדיוק כמו למעלה) */
    article.m4me-calc-widget::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 6px; /* עובי הפס */
        background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%);
        z-index: 10;
    }
}


/* =========================================
   מעטפת תצוגת מאמרים - קופסה לבנה וכפתור זהב
   ========================================= */

.blog-preview-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06); /* צללית עדינה שנותנת תחושת ריחוף */
    text-align: center;
    margin: 0 auto;
}

.blog-preview-title {
    color: var(--m4me-blue, #1a2b4c);
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: bold;
}
/* ========================================================================== 
   תיקון מתיחת מסך בעמוד הבלוג (אזור מאמרים וקריאה לפעולה)
   ========================================================================== */

/* 1. הגבלת רוחב אזור המאמרים (הארון) ומרכוז */
.blog-archive .container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px; /* שומר על ריווח במובייל */
    padding-right: 15px;
}

/* 2. הגבלת רוחב אזור הקריאה לפעולה (כדי שיתיישר עם המאמרים) */
.blog-cta .container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 3. הגבלת קופסת ההזמנה עצמה בתוך אזור הקריאה לפעולה */
.calc-teaser {
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* יצירת מרווח בין ההידר לכרטיסיות המאמרים בעמוד הבלוג */
.blog-archive {
    padding-top: 50px; /* אתה יכול להגדיל או להקטין את המספר הזה לפי הטעם שלך */
}

/* FAQ עיצוב שאלות נפוצות */
.faq-title { text-align: center; margin-bottom: 20px; }
.faq-details { background: white; border-radius: 8px; margin-bottom: 12px; border: 1px solid #eee; overflow: hidden; transition: all 0.3s ease; }
.faq-summary { padding: 15px 20px; cursor: pointer; font-weight: bold; color: var(--secondary-color); background-color: #fcfcfc; display: flex; align-items: center; justify-content: flex-start; gap: 12px; list-style: none; }
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::before { content: '+'; font-size: 1.6rem; transition: transform 0.3s; line-height: 1; background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.faq-details[open] .faq-summary::before { transform: rotate(45deg); }
.faq-answer { padding: 15px 20px; font-size: 0.95rem; color: #555; background: white; border-top: 1px solid #eee; line-height: 1.6; }
.toggle-faqs-btn { background: #fdfdfd; border: 1px solid #ccc; color: var(--m4me-blue); width: 100%; padding: 12px; font-weight: bold; font-size: 1rem; border-radius: 8px; cursor: pointer; margin-top: 5px; transition: 0.3s; }
.toggle-faqs-btn:hover { background: #e8f4fd; border-color: var(--m4me-blue); }

/* NEIGHBORHOODS & SEO CARDS */
/* ========================================================================== 
   עיצוב אזור שכונות (Neighborhoods Section) - גלובלי
   ========================================================================== */

/* 1. כותרת הסקציה - כולל המרווחים שביקשת */
.seo-article h4 {
    margin-top: 60px; /* מרווח מהפסקה מעל */
    margin-bottom: 30px; /* מרווח מהריבועים מתחת */
    text-align: center;
    font-weight: 700;
}

/* 2. מעטפת הקרוסלה והחצים (Wrapper) */
.neighborhood-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
}

/* 3. אזור הגלילה (Scroll Area) */
.neighborhood-scroll-area {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* הסתרת פס הגלילה */
    scrollbar-width: none; 
    -ms-overflow-style: none;
    /* התיקון שלנו: הפעלת מנגנון "מגנוט" לגלילה */
    scroll-snap-type: x mandatory; 
}

.neighborhood-scroll-area::-webkit-scrollbar {
    display: none;
}

/* 4. עיצוב החצים (Arrows) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #d1d9e1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #d4af37; /* צבע זהב */
    color: white;
    border-color: #d4af37;
}

.arrow-right { right: -20px; }
.arrow-left { left: -20px; }

/* 5. רשימת השכונות - גריד (Grid) */
.neighborhood-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-auto-flow: column; /* סידור עמודות אופקי */
    gap: 15px;
    width: max-content;
}

/* --- מצב מובייל (Mobile - 2 עמודות, 2 שורות) --- */
@media (max-width: 768px) {
    .neighborhood-list {
        grid-template-rows: repeat(2, 130px);
        /* התיקון: 100% מהאזור הזמין, פחות 15 פיקסלים של הרווח, חלקי 2 ריבועים */
        grid-auto-columns: calc((100% - 15px) / 2); 
        width: 100%; /* חובה להוסיף את זה כדי שהאחוזים יחושבו נכון! */
    }
    .slider-arrow { width: 32px; height: 32px; font-size: 0.9rem; }
    .arrow-right { right: -10px; }
    .arrow-left { left: -10px; }
}

/* --- מצב מחשב (Desktop - 3 עמודות, 2 שורות) --- */
@media (min-width: 769px) {
    .neighborhood-list {
        grid-template-rows: repeat(2, 145px);
        /* התיקון: ל-3 עמודות יש 2 רווחים של 15px (סה"כ 30px) */
        grid-auto-columns: calc((100% - 30px) / 3); 
        width: 100%;
    }
}

/* 6. עיצוב הריבוע הבודד (Neighborhood Item) */
.neighborhood-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0f5f9; 
    border-radius: 8px;
    border: 1px solid #d1d9e1;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    box-sizing: border-box;
    /* התיקון שלנו: אומר לריבוע מאיפה "להתמגנט" לקצה המסך */
    scroll-snap-align: start; 
}

.neighborhood-item:hover {
    border-color: #d4af37;
    background-color: #e0e8f0;
    transform: translateY(-3px);
}

.pin-icon { 
    width: 24px; 
    height: 24px; 
    fill: url(#goldGrad); 
    margin-bottom: 8px; 
}

.seo-cards-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    max-width: 850px; 
    width: 95%; 
    margin: 40px auto 0 auto; 
    align-items: stretch; 
}

.seo-card-item { 
    background: #fdfdfd; 
    border: 1px solid #eaeaea; 
    border-radius: 12px; 
    padding: 20px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.04); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    border-right: 4px solid transparent; 
    border-image: linear-gradient(to bottom, #A67C00, #D4AF37, #FBF5B7, #D4AF37, #A67C00) 1; 
    display: flex; 
    flex-direction: column; 
    cursor: pointer; 
}

.seo-card-item:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 15px rgba(0,0,0,0.1); 
}

.seo-card-icon-wrap { 
    font-size: 3rem; 
    margin-bottom: 15px; 
    display: block; 
    text-align: center; 
    width: 100%; 
}

.seo-card-title { 
    font-size: 1.15rem; 
    color: var(--m4me-blue); 
    margin-bottom: 10px; 
    font-weight: 800; 
    text-wrap: balance; 
}

.seo-card-text { 
    font-size: 0.9rem; 
    color: #555; 
    line-height: 1.6; 
    flex-grow: 1; 
}

.btn-read-more { 
    background: none; 
    border: none; 
    color: var(--m4me-blue); 
    font-weight: bold; 
    cursor: pointer; 
    padding: 8px 0 0 0; 
    margin-top: auto; 
    text-decoration: underline; 
    font-size: 0.95rem; 
    text-align: right; 
    transition: color 0.2s; 
}

.btn-read-more:hover { 
    color: #d4af37; 
}

/* EXPANDED SEO CONTENT */
.seo-expanded-content { 
    position: relative; 
    background: #fff; 
    border: 1px solid #ddd; 
    border-radius: 12px; 
    padding: 55px 30px 25px 30px; /* <--- התיקון: הגדלנו את הרווח העליון ל-55px */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    border-right: 6px solid transparent; 
    border-image: linear-gradient(to bottom, #A67C00, #D4AF37, #FBF5B7, #D4AF37, #A67C00) 1; 
    max-width: 850px; 
    width: 95%; 
    margin: 25px auto 0 auto; 
}

.close-article-btn { 
    position: absolute; 
    top: 15px; 
    left: 20px; 
    background: transparent; 
    border: none; 
    font-size: 1.5rem; 
color: #d32f2f;
    cursor: pointer; 
    transition: color 0.3s, transform 0.3s; 
    line-height: 1; 
    padding: 5px; 
    z-index: 10; /* <--- תוספת: מוודא שהכפתור תמיד נשאר בשכבה העליונה */
}

.close-article-btn:hover { 
    color: #d4af37; 
    transform: scale(1.1); 
}

.seo-expanded-content h3 { 
    color: var(--m4me-blue); 
    margin-bottom: 20px; 
    font-size: 1.4rem; 
    font-weight: 900; 
    /* מחקתי מכאן את ה-padding-left שהיה, כי עכשיו הרווח למעלה מסדר את הכל */
}

.seo-expanded-content h4 { 
    color: #222; 
    margin-top: 20px; 
    margin-bottom: 10px; 
    font-size: 1.15rem; 
    font-weight: 800; 
}

.seo-expanded-content p { 
    margin-bottom: 15px; 
    line-height: 1.7; 
    color: #444; 
    font-size: 0.95rem; 
}

.cities-list { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 12px; 
    list-style: none; 
    padding: 0; 
    margin-top: 20px; 
    margin-bottom: 25px; 
}

.cities-list li { 
    background: #fcfcfc; 
    border: 1px solid #eaeaea; 
    padding: 10px; 
    border-radius: 6px; 
    font-weight: 600; 
    color: var(--secondary-color); 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.cities-list li::before { 
    content: '📍'; 
    font-size: 1.1rem; 
}

.seo-action-buttons { 
    display: flex; 
    gap: 15px; 
    margin-top: 30px; 
    margin-bottom: 10px; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.btn-seo-action { 
    flex: 1; 
    min-width: 250px; 
    padding: 14px; 
    background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); 
    color: #000; 
    border: none; 
    border-radius: 8px; 
    font-weight: 800; 
    font-size: 1.05rem; 
    cursor: pointer; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); 
    text-align: center; 
    text-decoration: none; 
    transition: transform 0.2s, box-shadow 0.2s; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
}

.btn-seo-action:hover { 
    transform: scale(1.03); 
    box-shadow: 0 6px 15px rgba(0,0,0,0.2); 
    color: #000; 
}

.large-btn-icon { 
    font-size: 1.8rem; 
    margin-left: 6px; 
    display: inline-block; 
    text-shadow: 0 2px 5px rgba(0,0,0,0.2); 
    line-height: 1; 
}

.btn-seo-wa { 
    background: #25D366; 
    color: white; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.2); 
}

.btn-seo-wa:hover { 
    color: white; 
    transform: scale(1.03); 
}

.btn-seo-call { 
    background: var(--m4me-blue); 
}

.btn-seo-call:hover { 
    transform: scale(1.03); 
}

/* GALLERY & REVIEWS */
.gallery-grid, .reviews-grid { display: grid; gap: 15px; margin-top: 15px; }
.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.reviews-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.gallery-item { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 8px rgba(0,0,0,0.1); border: 2px solid #eee; }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.3s ease; cursor: pointer; }
.gallery-item:hover img, .gallery-item:active img { transform: scale(1.12); }

.reviews-section { background: white; padding: 25px 20px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); max-width: 850px; width: 95%; margin: 0 auto 45px auto; }
.review-card { background: #f9f9f9; padding: 15px; border-radius: 8px; border-right: 4px solid transparent; border-image: linear-gradient(to bottom, #A67C00, #D4AF37, #FBF5B7, #D4AF37, #A67C00) 1; }

/* הפיכת הכותרת לעמודה: הכוכבים תמיד יופיעו מתחת לשם ויישרו לימין */
.review-header { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 10px; gap: 4px; }

.reviewer-name { font-weight: bold; font-size: 0.95rem; }

/* נעילת הכוכבים למניעת שבירה */
.review-stars { font-size: 1.15rem; letter-spacing: 2px; display: block; white-space: nowrap; }
.gray-star { filter: grayscale(100%) brightness(90%); display: inline-block; }

/* FOOTER & CITY LINKS */
.city-links { 
    background: #f4f4f4; 
    padding: 25px 15px; 
    border-radius: 12px; 
    text-align: center; 
    max-width: 850px; 
    width: 95%; 
    margin: 30px auto 45px auto; 
    border: 1px solid #ddd;
}

/* המעטפת של הקישורים - Flexbox לסידור אוטומטי */
.footer-city-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

/* עיצוב הקישורים ככפתורים */
.footer-city-nav a { 
    color: var(--secondary-color); 
    text-decoration: none; 
    padding: 8px 14px;
    font-weight: 600; 
    font-size: 0.9rem; 
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 20px;
    white-space: nowrap;
    display: inline-block; 
    transition: all 0.3s ease; /* מעבר חלק יותר */
}

/* תיקון ה-Hover: זהב גרדיאנט רק בריחוף */
.footer-city-nav a:hover { 
    background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%) !important;
    color: #000 !important; /* טקסט שחור כדי שיקרא טוב על הזהב */
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* סימון הדף הפעיל בתפריט הערים - גרדיאנט זהב יוקרתי */
.footer-city-nav a.active-city { 
    background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%) !important;
    color: #000 !important; 
    border-color: transparent !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    font-weight: 700;
    pointer-events: none; /* מונע לחיצה על הדף הנוכחי */
}

/* התאמה למובייל */
@media (max-width: 600px) {
    .seo-action-buttons { 
        flex-direction: column; 
        gap: 10px; 
    }
    
    .btn-seo-action { 
        width: 100%; 
        min-width: unset; 
        font-size: 0.88rem; 
        padding: 10px 8px; 
        text-wrap: balance; 
        line-height: 1.2; 
        letter-spacing: -0.01em;
        box-sizing: border-box; /* [תיקון קריטי]: מונע מתיחת מסך ואיבוד שוליים */
    }

    .btn-seo-action .large-btn-icon {
        font-size: 1.4rem; 
        margin-left: 5px;
    }
}

footer[role="contentinfo"] { 
    text-align: center; 
    margin-top: 20px; 
    padding: 30px; 
    background: #333; 
    color: #ccc; 
    padding-bottom: 90px;
    box-sizing: border-box; /* [תיקון קריטי]: מונע מהפוטר למתוח את כל האתר */
    width: 100%; /* מוודא שהפוטר נשאר בגבולות */
}

/* תיקון המודאל - תוספת גובה וגלילה פנימית כדי למנוע גלישה במובייל */
.modal { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); overflow-y: auto; }
.modal-content { background-color: #fff; margin: 5% auto; padding: 30px; border-radius: 12px; width: 90%; max-width: 800px; position: relative; text-align: right; direction: rtl; max-height: 85vh; overflow-y: auto; box-sizing: border-box; /* הוספת בטיחות למודאל */ }
.close-modal { position: absolute; top: 15px; left: 15px; font-size: 30px; cursor: pointer; border: none; background: none; color: #333; }
.modal h2 { color: var(--m4me-blue); border-bottom: 3px solid transparent; border-image: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%) 1; display: inline-block; padding-bottom: 5px; margin-bottom: 15px; }

#accessibility-widget { position: fixed; bottom: 70px; left: 20px; z-index: 10000; }

/* התיקון כאן: הוספנו opacity: 0.6 והגדרנו transition כדי שהשינוי יהיה רך */
#access-toggle-btn { background-color: rgba(30, 58, 95, 0.9); color: white; border: none; border-radius: 50%; width: 50px; height: 50px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; opacity: 0.6; transition: opacity 0.3s ease, transform 0.3s ease; }

/* התיקון כאן: כשהעכבר עובר על הכפתור, השקיפות מתבטלת והוא חוזר ל-100% */
#access-toggle-btn:hover { opacity: 1; transform: scale(1.05); }

#access-toggle-btn svg { width: 28px; height: 28px; fill: white; }
#access-menu { display: none; position: absolute; bottom: 60px; left: 0; background: white; border: 1px solid #ddd; border-radius: 8px; padding: 10px; width: 220px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); box-sizing: border-box; }

body.accessibility-highlight-links a { text-decoration: underline !important; background-color: #ffff00 !important; color: #000000 !important; font-weight: bold !important; }
body.accessibility-large-cursor, body.accessibility-large-cursor * { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="black" stroke="white" stroke-width="2" d="M7 2l12 11.2-5.8.5 3.3 7.3-2.2 1-3.2-7.4-4.4 4.5z"/></svg>'), auto !important; }
body.accessibility-stop-animations * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
body.accessibility-increase-spacing * { line-height: 2 !important; letter-spacing: 0.15em !important; word-spacing: 0.3em !important; }
.access-option-btn { display: block; width: 100%; padding: 10px; margin-bottom: 5px; background: #f4f4f4; border: 1px solid #ccc; cursor: pointer; text-align: right; border-radius: 5px; font-size: 0.9rem; box-sizing: border-box; }

.cookie-banner { 
    position: fixed; 
    bottom: 65px; 
    left: 0; 
    right: 0; 
    background: #222; 
    color: #eee; 
    padding: 10px 15px; 
    text-align: right; 
    font-size: 0.85rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    z-index: 10001 !important; /* התיקון שמעלה את השכבה מעל הכל */
    border-top: 3px solid var(--primary-color); 
    flex-wrap: wrap;
    box-sizing: border-box; /* מונע מתיחה לצדדים */
}

.cookie-btn { 
    background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); 
    color: black; 
    border: none; 
    padding: 5px 15px; 
    border-radius: 4px; 
    cursor: pointer; 
    font-weight: bold; 
}

.whatsapp-geo-btn { color: white; border: 3px solid transparent; background: linear-gradient(var(--m4me-blue), var(--m4me-blue)) padding-box, linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%) border-box; padding: 12px; font-size: 1.1rem; border-radius: 8px; cursor: pointer; width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: bold; transition: all 0.3s; box-sizing: border-box; }
.whatsapp-geo-btn:hover { background: linear-gradient(var(--secondary-color), var(--secondary-color)) padding-box, linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%) border-box; }
.error-msg { color: #d32f2f; background-color: #ffebee; padding: 10px; border-radius: 5px; margin-top: 10px; font-size: 0.9rem; display: none; }

.seo-article h3 { color: var(--m4me-blue); margin-bottom: 10px; margin-top: 20px; font-size: 1.2rem; border-right: 4px solid transparent; border-image: linear-gradient(to bottom, #A67C00, #D4AF37, #FBF5B7, #D4AF37, #A67C00) 1; padding-right: 10px; }
.seo-article p { margin-bottom: 15px; color: #444; }

/* STICKY FOOTER & SCROLL TOP */
.main-sticky-footer { position: fixed !important; bottom: 0 !important; left: 0 !important; right: 0 !important; height: 65px; background: white !important; box-shadow: 0 -2px 10px rgba(0,0,0,0.15); z-index: 1998 !important; display: flex !important; width: 100%; box-sizing: border-box; }
.sticky-btn { flex: 1; display: flex; align-items: center; justify-content: center; text-decoration: none; font-weight: bold; font-size: 1.1rem; gap: 8px; transition: background 0.2s; box-sizing: border-box; }
.sticky-call { background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); color: black; text-shadow: 0 1px 1px rgba(255,255,255,0.5); }
.sticky-whatsapp { background: var(--m4me-blue); border-right: 1px solid rgba(255,255,255,0.1); }
.sticky-whatsapp .sticky-icon { fill: url(#goldGrad); width: 24px !important; height: 24px !important; min-width: 24px; min-height: 24px; flex-shrink: 0; display: inline-block; }

#scrollTopBtn { display: flex; position: fixed; bottom: 70px; right: 20px; z-index: 9998; width: 50px; height: 50px; border-radius: 50%; border: 2px solid transparent; background: linear-gradient(#000, #000) padding-box, linear-gradient(135deg, #A67C00 0%, #D4AF37 50%, #FBF5B7 75%, #A67C00 100%) border-box; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3); align-items: center; justify-content: center; transition: all 0.3s ease; text-decoration: none; opacity: 0; visibility: hidden; transform: translateY(15px); pointer-events: none; }

/* התיקון כאן: שינינו את השקיפות ל-0.6 במצב התצוגה הרגיל */
#scrollTopBtn.show { opacity: 0.6; visibility: visible; transform: translateY(0); pointer-events: auto; }

/* התיקון כאן: הוספנו אטימות מלאה (opacity: 1) כשעוברים עם העכבר */
#scrollTopBtn:hover { opacity: 1; transform: translateY(-3px) scale(1.05); }

.latest-articles-section { 
    background-color: #ffffff; 
}

.article-preview-card { 
    border: 1px solid #eee; 
    border-radius: 8px; 
    padding: 15px; 
    background: #fdfdfd; 
    transition: transform 0.2s, box-shadow 0.2s; 
    border-right: 4px solid transparent; 
    border-image: linear-gradient(to bottom, #A67C00, #D4AF37, #FBF5B7, #D4AF37, #A67C00) 1; 
    
    /* התוספות עבור יישור הכפתורים לתחתית */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-preview-card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
}

/* --- מחלקות נגישות (וריאציות קצרות - דף אלעד) --- */
body.increased-spacing * { letter-spacing: 0.05em !important; word-spacing: 0.1em !important; line-height: 1.8 !important; }
body.no-animations * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
body.large-cursor, body.large-cursor * { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24"><path d="M7 2l12 11.2-5.8.5 3.3 7.3-2.2.9-3.2-7.4-4.4 4.7z" stroke="white" stroke-width="1.5" fill="black"/></svg>'), auto !important; }
body.highlight-links a { background-color: #ff0 !important; color: #000 !important; font-weight: bold !important; text-decoration: underline !important; }

/* --- עיצוב כותרות וקווים (דף אלעד) --- */
.gradient-underline { display: inline-block; padding-bottom: 5px; border-bottom: 3px solid transparent; border-image: linear-gradient(to left, #A67C00, #D4AF37, #FBF5B7, #D4AF37, #A67C00) 1; }
.section-spacing { margin-bottom: 45px; }

/* --- כפתור חיוג בגרדיאנט (דף אלעד) --- */
.btn-call-gradient { display: inline-flex; align-items: center; justify-content: center; width: 100%; max-width: 400px; padding: 15px; border-radius: 50px; text-decoration: none; font-weight: 900; font-size: 1.4rem; color: #000; background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); box-shadow: 0 4px 12px rgba(0,0,0,0.2); border: 1px solid #A67C00; text-shadow: 0 1px 1px rgba(255,255,255,0.5); transition: transform 0.2s; box-sizing: border-box; }
.btn-call-gradient:hover { transform: scale(1.03); }

/* --- טיזר מחשבון וקריאה לפעולה (דף אלעד) --- */
.calc-teaser { background-color: #f8f9fa; border: 2px solid var(--m4me-blue); border-radius: 10px; padding: 25px; text-align: center; margin-top: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.calc-teaser-btn { 
    background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); 
    color: #000; 
    padding: 10px 40px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold; 
    display: inline-block; 
    transition: transform 0.2s; 
    font-size: 1.1rem; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    margin-top: 20px; /* התוספת שיוצרת את הריווח מהטקסט שמעל */
}
.calc-teaser-btn:hover { transform: scale(1.05); }
.cta-header { text-align: center; font-size: 1.8rem; color: var(--secondary-color); margin-bottom: 10px; font-weight: bold; }
.cta-text-box { background: #fff; border-right: 4px solid transparent; border-image: linear-gradient(to bottom, #A67C00, #D4AF37, #FBF5B7, #D4AF37, #A67C00) 1; padding: 15px; margin-bottom: 45px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

/* --- סעיף "למה לבחור בנו" (דף אלעד) --- */
/* הגבלת רוחב ומרכוז לאזור "למה לבחור בנו" */
.why-us-section {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
.why-us-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.why-card { background: white; padding: 20px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); border-top: 4px solid var(--m4me-blue); transition: transform 0.3s; display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; box-sizing: border-box; }
.why-card:hover { transform: translateY(-5px); }
.why-icon { width: 50px; height: 50px; background: rgba(0,0,0,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.why-icon svg { width: 28px; height: 28px; stroke: url(#goldGrad); fill: none; stroke-width: 2; }
.why-title { font-size: 1rem; font-weight: 700; color: var(--secondary-color); margin-bottom: 5px; }
.why-desc { font-size: 0.9rem; color: #555; line-height: 1.4; }

/* --- גלריה ומודאל תגיות ALT (דף אלעד) --- */
.gallery-description { text-align: center; margin-bottom: 20px; font-weight: 500; color: #555; background: #f0f4f8; padding: 10px; border-radius: 8px; border-right: 4px solid var(--m4me-blue); box-sizing: border-box; }
.alt-modal { display: none; position: fixed; z-index: 99999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); overflow: hidden; }
.alt-modal-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 90%; max-width: 800px; box-sizing: border-box; }
.alt-modal-img { max-width: 100%; max-height: 65vh; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); object-fit: contain; }
.alt-modal-caption { color: #fff; font-size: 1.1rem; margin-top: 20px; line-height: 1.5; padding: 15px; background: rgba(0,0,0,0.5); border-radius: 8px; border-right: 4px solid var(--primary-color); box-sizing: border-box; }
.alt-modal-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; z-index: 100000; transition: color 0.3s; }
.alt-modal-close:hover { color: var(--primary-color); }

/* --- שגיאות וולידציה מותאמות --- */
.custom-validation-error { display: none; background-color: #fce8e6; color: #c62828; padding: 10px; margin-top: 10px; border-radius: 5px; text-align: center; font-weight: bold; font-size: 0.95rem; box-sizing: border-box; }

/* --- קישורי פוטר בגרדיאנט --- */
.gold-gradient-link { background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; border: none; border-bottom: 1px solid #d4af37; padding-bottom: 2px; cursor: pointer; font-size: 1rem; margin: 0 10px; }

/* MOBILE OPTIMIZATIONS (מאוחד ומסודר) */
.mobile-break { display: none; }
.sticky-call .phone-icon { color: #000000 !important; transform: scaleX(-1); display: inline-block; margin-left: 8px; text-shadow: none !important; font-size: 1.2rem; }

@media (max-width: 600px) {
    /* --- התיקון הממוקד להידר ולוגו (כולל שוליים!) --- */
    body { overflow-x: hidden; } /* פותר מתיחת מסך */
    
    header[role="banner"] { 
        padding: 8px 8px !important; 
    }
    
    .site-logo { max-width: 160px; min-height: auto; margin: 0 auto; } 
    
.main-yellow-title { 
    font-size: 1.3rem; 
    margin-top: 5px; 
    padding: 0 10px; 
}
    
h2#rotating-headline { 
    font-size: 0.85rem; 
    min-height: 38px; /* הוספנו גמישות לגובה במובייל */
    line-height: 1.4; /* מרווח יפה בין השורות במובייל */
    margin-top: 8px; /* הגדלנו את המרווח במובייל */
    padding: 0 10px; 
}
    
.container, main, #main-content { 
    padding-left: 8px !important; 
    padding-right: 8px !important; 
    box-sizing: border-box; 
}
    /* --- סוף התיקון הממוקד --- */

    .gallery-grid, .reviews-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; gap: 15px; }
    .gallery-item, .review-card { flex: 0 0 85%; scroll-snap-align: center; box-sizing: border-box; }
    .gallery-grid::-webkit-scrollbar, .reviews-grid::-webkit-scrollbar { display: none; }
    .service-features-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px; }
    .service-card { padding: 8px 4px; height: auto; border-radius: 8px; box-sizing: border-box; }
    .service-icon-box { width: 35px; height: 35px; margin-bottom: 5px; }
    .service-title { font-size: 0.75rem; font-weight: 600; line-height: 1.1; }
    .form-grid { grid-template-columns: 1fr 1fr !important; }
    .replica-row { flex-wrap: nowrap !important; }
  .seo-cards-grid { grid-template-columns: 1fr; }
.seo-expanded-content { padding: 55px 15px 20px 15px; border-right: 4px solid transparent; border-image: linear-gradient(to bottom, #A67C00, #D4AF37, #FBF5B7, #D4AF37, #A67C00) 1; box-sizing: border-box; }
    
    #scrollTopBtn { bottom: 85px; right: 15px; }
    #accessibility-widget { bottom: 85px !important; }
    #access-menu { bottom: 60px !important; }
    
    .mobile-break { display: block; margin-top: 2px; }

    .btn-call-gradient {
        font-size: 1.15rem !important;
        padding: 10px 15px !important;
        max-width: 95% !important;
        white-space: nowrap !important;
        direction: rtl;
        box-sizing: border-box;
    }
    
    .btn-call-gradient .phone-icon {
        font-size: 1.3rem !important;
        margin-left: 5px !important;
    }
} 

/* ========================================= */
/* עיצובים לדף אודות (About Page) - גרסה מעודכנת */
/* ========================================= */
.gold-check-icon { width: 24px; height: 24px; fill: url(#goldGrad); flex-shrink: 0; margin-left: 15px; }
.vision-box-gold { position: relative; background: #fff; padding: 35px; border-radius: 15px; margin-top: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); box-sizing: border-box; }
.vision-box-gold::before { content: ""; position: absolute; top: 0; right: 0; width: 6px; height: 100%; background: linear-gradient(180deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); border-radius: 0 15px 15px 0; }
.about-list { list-style: none; padding: 0; }
.about-list li { display: flex; align-items: flex-start; margin-bottom: 20px; font-size: 1.15rem; line-height: 1.6; }

.airport-btns-row { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin: 30px 0; }
.btn-airport-primary, .btn-airport-secondary { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 35px; border-radius: 12px; font-size: 1.1rem; font-weight: bold; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.15); box-sizing: border-box; }
.btn-airport-primary { background-color: #213A5C; color: #ffffff !important; border: 2px solid #213A5C; }
.btn-airport-secondary { background-color: #ffffff; color: #213A5C !important; border: 2px solid #213A5C; }
.btn-airport-primary:hover, .btn-airport-secondary:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }

/* ========================================= */
/* תיקוני מובייל לדף אודות */
/* ========================================= */
@media (max-width: 768px) {
    /* התאמת המרווחים הכלליים */
    .about-section { margin-top: 20px !important; margin-bottom: 40px !important; }

    /* התאמת הכרטיסייה הראשית */
    .about-page-card { padding: 25px 15px !important; }

    /* התאמת הכותרות */
    .main-yellow-title { font-size: 1.5rem !important; }
    .about-sub-title { font-size: 1.4rem !important; }

    /* סידור הכפתורים אחד מתחת לשני */
    .airport-btns-row { flex-direction: column !important; gap: 10px !important; }
    .btn-airport-primary, .btn-airport-secondary { width: 100% !important; }

    /* צמצום התיבה הצהובה שיהיה נוח לקריאה */
    .vision-box-gold { padding: 20px !important; }
}

/* הגדלת האייקונים של המטוסים */
.airport-icon {
    font-size: 1.4rem !important; 
    margin-right: 8px !important; 
    display: inline-block !important;
    vertical-align: middle !important;
}

/* ========================================= */
/* עיצובים לדף צור קשר (Contact Page) */
/* ========================================= */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 30px; }
@media (max-width: 768px) { .contact-wrapper { grid-template-columns: 1fr; } }
.contact-info-box { background: #ffffff; border-radius: 12px; padding: 25px; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-right: 4px solid #D4AF37; display: flex; align-items: center; gap: 20px; transition: transform 0.2s ease; box-sizing: border-box; }
.contact-info-box:hover { transform: translateY(-3px); }
.contact-icon-wrapper { background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; color: #213A5C; }
.contact-info-text h4 { margin: 0 0 5px 0; color: #213A5C; font-size: 1.1rem; }
.contact-info-text a, .contact-info-text p { margin: 0; color: #555; text-decoration: none; font-size: 1.05rem; font-weight: bold; }
.contact-info-text a:hover { color: #D4AF37; }
.contact-form-container { background: #ffffff; padding: 35px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); box-sizing: border-box; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: #213A5C; font-weight: bold; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; font-family: inherit; transition: border-color 0.3s ease, box-shadow 0.3s ease; box-sizing: border-box; }
.form-control:focus { outline: none; border-color: #D4AF37; box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2); }
textarea.form-control { resize: vertical; min-height: 120px; }
.submit-btn { width: 100%; background: linear-gradient(135deg, #A67C00 0%, #D4AF37 35%, #FBF5B7 50%, #D4AF37 65%, #A67C00 100%); color: #213A5C; border: none; padding: 14px; border-radius: 8px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: opacity 0.3s ease, transform 0.2s ease; box-sizing: border-box; }
.submit-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* ========================================= */
/* השוואת גודל כפתורי הזמנה לנתב"ג במובייל */
/* ========================================= */
@media (max-width: 480px) {
    .airport-btns-row { 
        flex-direction: column !important; 
        align-items: center !important; 
        width: 100% !important; 
        max-width: 320px !important; 
        margin-left: auto !important; 
        margin-right: auto !important; 
        gap: 12px !important; 
    }
    .btn-airport-primary, .btn-airport-secondary { 
        width: 100% !important; 
        min-height: 60px !important; /* גובה מעט מותאם לשורה אחת */
        box-sizing: border-box !important; 
        padding: 10px 15px !important; 
        font-size: 1.05rem !important; 
        display: flex !important; 
        align-items: center !important; 
        justify-content: center !important; 
        text-align: center !important; 
        white-space: nowrap !important; /* פקודה המונעת שבירת שורה */
        gap: 10px !important; /* יצירת מרווח שווה ואחיד בין האייקון לטקסט */
    }
}

.form-icon-style { 
    display: inline-block !important; 
    font-size: 1.4rem !important; 
    vertical-align: middle !important; 
    line-height: 1 !important; 
    transform: scale(1.3) !important; /* הגדלת האייקון בצורה נקייה מה-CSS */
}

/* ================================================================= */
/* 1. השלמת עיצוב דף אודות למחשב (פיצוי על הסרת העיצוב מה-HTML) */
/* ================================================================= */
.about-section { margin-top: 40px; margin-bottom: 80px; }

.about-page-card { 
    padding: 60px 45px; 
    max-width: 1000px; 
    margin: 0 auto; 
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    box-sizing: border-box;
    border: none;
}

.about-page-card .main-yellow-title { 
    font-size: 2.8rem; 
    margin-bottom: 25px; 
    text-align: center; 
}

.main-text { 
    font-size: 1.2rem; 
    line-height: 1.8; 
    color: #333; 
    text-align: right; 
}

.about-sub-title { 
    color: var(--m4me-blue); 
    margin-top: 50px; 
    margin-bottom: 30px; 
    font-size: 1.7rem; 
    text-align: right; 
}

/* נעילת גודל אייקון ה-V מזהב כדי שלא יתפוצץ במסך */
.gold-check-icon { 
    width: 24px !important; 
    height: 24px !important; 
}

/* ================================================================= */
/* 2. תיקון כפתור החיוג הראשי במובייל בלבד (שורה אחת בלבד!) */
/* ================================================================= */
@media (max-width: 480px) {
    .btn-call-gradient {
        /* חובה! נועל את הכל לשורה אחת כדי שהמספר והעברית לא יתפרקו */
        white-space: nowrap !important; 
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 8px !important; /* צמצום שוליים פנימיים שיהיה מקום לטקסט */
        font-size: 1rem !important; /* הקטנה מדויקת למובייל */
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important; /* מרווח אחיד ומוגן בין האייקון לטקסט */
        direction: rtl !important;
        box-sizing: border-box !important;
    }
    
    .btn-call-gradient .phone-icon {
        font-size: 1.25rem !important;
        margin-left: 2px !important; /* צמצום מרווח האייקון */
    }
    
    .btn-call-gradient bdo {
        font-size: 1.05rem !important; /* מוודא שהמספר עצמו קריא ובולט */
    }
}

/* סידור מעטפת כפתורי הקפיצה לטפסים כולל הכפתור הבינעירוני */
.form-jump-buttons-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}

.full-width-btn {
    width: 100%;
    margin-bottom: 12px; /* הרווח בין הכפתור העליון לתחתונים */
    padding: 12px 5px; /* קצת יותר גובה לכפתור הראשי */
}

/* ביטול המרווח העליון שהיה קיים במקור כדי שהכל יישב יחד */
.form-jump-buttons-wrapper .form-jump-buttons {
    margin: 0 auto; 
}

/* עיצוב המעטפת והכפתור החדש */
.form-jump-buttons-wrapper { width: 100%; max-width: 500px; margin: 20px auto; display: flex; flex-direction: column; }
.full-width-btn { width: 100%; margin-bottom: 12px; padding: 12px 5px; }

/* יצירת מרווח נשימה משירותי המוניות */
.call-btn-container { margin-bottom: 50px !important; }
/* מרווח למחשב (מסכים רחבים) */
@media (min-width: 768px) {
    .call-btn-container {
        margin-bottom: 60px !important;
    }
}

/* מרווח למובייל (מסכים צרים) */
@media (max-width: 767px) {
    .call-btn-container {
        margin-bottom: 30px !important;
    }
}