/* assets/css/contact.css - גרסה סופית: שחור-לבן יוקרתי */

body {
    background-color: #f8f9fa;
    direction: rtl;
}

/* --- כותרת עליונה --- */
.page-header-section {
    text-align: center;
    padding: 60px 20px 40px;
    background: white;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.page-header-section h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #111;
}

.page-header-section p {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto; /* מרכוז */
    line-height: 1.5;
}

/* --- הקופסה המרכזית --- */
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* צד המידע צר יותר, הטופס רחב */
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1); /* צל עמוק */
    min-height: 600px;
}

/* --- צד ימין: דברו איתנו (רקע שחור, כתב לבן) --- */
.contact-info-side {
    background-color: #111; /* שחור */
    color: white; /* טקסט לבן */
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    text-align: right;
    
    /* טקסטורה עדינה מאוד שלא יהיה "שחור מת" */
    background-image: linear-gradient(to bottom right, #1a1a1a, #000000);
}

.info-title h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white; /* כותרת לבנה */
}

.info-text {
    color: #ccc; /* אפור בהיר לקריאות */
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1); /* רקע שקוף-לבן */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.info-content h4 { margin: 0; font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.info-content p { margin: 5px 0 0; font-size: 1.1rem; font-weight: bold; color: white; }

/* קישורים לרשתות חברתיות שיהיו בלבן */
.contact-info-side a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: 0.3s;
}
.contact-info-side a:hover { opacity: 1; }


/* --- צד שמאל: הטופס (רקע לבן, כתב שחור) --- */
.contact-form-side {
    padding: 60px;
    background: white;
    text-align: right;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #eee;
    background: transparent;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-align: right; 
    direction: rtl;
}

.form-control:focus {
    outline: none;
    border-bottom-color: #000;
}

::placeholder { color: #ccc; }

/* כפתור שליחה - שחור נקי */
.submit-btn {
    background: #000;
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-3px);
}

/* --- מפה (צבעונית) --- */
.map-container {
    width: 100%;
    margin-bottom: -10px;
}

.map-section {
    width: 100%;
    height: 450px;
    border: 0;
    filter: none; /* המפה צבעונית תמיד */
}

/* --- מובייל --- */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info-side { padding: 40px; }
    .contact-form-side { padding: 40px; }
}