:root {
    --p2p-navy: #002244;    /* כחול עמוק מהלוגו */
    --p2p-blue: #0076ff;    /* כחול חשמלי מהלוגו */
    --p2p-bg: #f4f7f9;      /* אפור הייטקי רענן ורגוע */
    --white: #ffffff;
    --text-slate: #475569;
}

body {
    margin: 0; padding: 0; font-family: 'Assistant', sans-serif;
    background-color: var(--p2p-bg); color: var(--p2p-navy);
    direction: rtl; text-align: right; overflow-x: hidden;
}

/* שכבת רקע - חלקיקים עדינים */
#particles-js {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none; opacity: 0.6;
}

/* Header Interface */
.header-lab {
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(15px);
    position: fixed; top: 0; width: 100%; z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}
.header-container {
    max-width: 1200px; margin: 0 auto; padding: 12px 25px;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-lab ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.nav-lab a { color: var(--p2p-navy); text-decoration: none; font-weight: 700; font-size: 15px; transition: 0.3s; }
.nav-lab a:hover { color: var(--p2p-blue); }

.ai-tag { 
    font-family: 'Orbitron'; font-size: 10px; color: var(--p2p-blue); 
    border: 1px solid var(--p2p-blue); padding: 4px 12px; border-radius: 20px; 
}

/* Layout Blocks */
main { position: relative; z-index: 10; padding-top: 70px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.section-pad { padding: 100px 0; }

/* Hero Styling */
.hero-lab { 
    height: 80vh; display: flex; align-items: center; position: relative; 
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-lab::after { 
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(90deg, var(--p2p-bg) 35%, rgba(244, 247, 249, 0) 100%); 
}
.hero-inner { position: relative; z-index: 20; max-width: 750px; }
.hero-inner h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; color: var(--p2p-navy); margin-bottom: 25px; }
.hero-inner p { font-size: 1.3rem; color: var(--text-slate); margin-bottom: 40px; }

/* Buttons & Cards */
.btn-lab { 
    background: var(--p2p-blue); color: #fff; padding: 16px 45px; border-radius: 6px; 
    text-decoration: none; font-weight: 800; display: inline-block; border: none; transition: 0.3s;
}
.btn-lab:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,118,255,0.25); }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.lab-card { 
    background: var(--white); padding: 45px; border-radius: 12px; border: 1px solid #e2e8f0; 
    box-shadow: 0 10px 35px rgba(0,0,0,0.04); text-align: center; transition: 0.3s;
}
.lab-card:hover { border-color: var(--p2p-blue); transform: translateY(-8px); }
.lab-card i { font-size: 3rem; color: var(--p2p-blue); margin-bottom: 20px; display: block; }

/* --- תיקון סופי לבלוק הטופס (בלוק 7) --- */

#doc-contact-anchor {
    background-color: var(--p2p-bg) !important; /* חזרה לרקע בהיר ונעים */
    padding: 80px 0 !important;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

/* פס דקורטיבי עליון */
#doc-contact-anchor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--p2p-blue), #4dcad9);
}

/* עיצוב ה-Iframe מבחוץ ככרטיס נקי */
#doc-contact-anchor iframe {
    max-width: 700px !important;
    margin: 0 auto !important;
    display: block !important;
    background: #ffffff !important; 
    border-radius: 20px !important;
    /* צל רך שמתאים לרקע בהיר */
    box-shadow: 0 15px 40px rgba(0, 34, 68, 0.08) !important;
    border: 1px solid #e2e8f0 !important;
}

/* התאמה למובייל */
@media (max-width: 991px) {
    #doc-contact-anchor {
        padding: 50px 15px !important;
    }
    #doc-contact-anchor iframe {
        width: 100% !important;
        border-radius: 15px !important;
    }
}