/* איפוס בסיסי ויישור לימין */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Assistant', sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    direction: rtl;
}

/* ניווט עליון */
.luxury-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    padding: 20px 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 16px;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #dfba6b;
}

.main-logo img {
    height: 40px;
    display: block;
}

.header-whatsapp {
    color: #dfba6b;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #dfba6b;
    padding: 8px 20px;
    font-size: 13px;
    transition: 0.3s ease;
}

.header-whatsapp:hover {
    background-color: #dfba6b;
    color: #000;
}

/* תפריט המבורגר צדי מוסתר ברירת מחדל */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -350px; /* מוסתר לחלוטינ מחוץ למסך מימין */
    width: 320px;
    height: 100%;
    background-color: #0a0a0a;
    z-index: 1000;
    transition: 0.4s ease-in-out;
    padding: 40px;
    border-left: 1px solid rgba(223, 186, 107, 0.15);
}

.sidebar-menu.open {
    right: 0; /* נכנס למסך רק כשנוסיף קלאס open */
}

.close-menu-btn {
    background: none;
    border: none;
    color: #dfba6b;
    font-size: 35px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    left: 20px;
}

.menu-logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.menu-logo {
    height: 35px;
}

.menu-links {
    list-style: none;
}

.menu-links li {
    margin-bottom: 20px;
}

.menu-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    transition: 0.3s;
}

.menu-links a:hover {
    color: #dfba6b;
}

/* מסך כהה ברקע כשהתפריט פתוח */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 999;
    display: none;
}

.menu-overlay.show {
    display: block;
}

/* באנר עליון יוקרתי - רחב ומותאם לתמונה שלך */
.hero-banner {
    position: relative;
    width: 100%;
    height: 480px;
    background-image: url('images/contact-luxury-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* החשכה קלה כדי שהטקסט יקרא טוב */
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text .hero-brand {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: 5px;
    color: #dfba6b;
    display: block;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
}

.hero-divider {
    color: #dfba6b;
    font-size: 11px;
    letter-spacing: 3px;
}

/* קונטיינר מרכזי בשיטת גריד מודרנית למניעת בלאגן */
.contact-page-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* חלוקה שווה ומדויקת לשני טורים */
    background-color: #0a0a0a;
    border: 1px solid rgba(223, 186, 107, 0.15);
}

/* פאנל פרטים (צד ימין ב-RTL) */
.contact-info-panel {
    background-color: #0f0f0f;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: #dfba6b;
    margin-bottom: 10px;
    display: block;
}

.contact-info-panel h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

.panel-desc {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-lines {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    font-size: 18px;
    color: #dfba6b;
}

.info-box h4 {
    font-size: 14px;
    color: #dfba6b;
    margin-bottom: 3px;
}

.info-box p, .info-box a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
}

/* פאנל טופס (צד שמאל ב-RTL) */
.contact-form-panel {
    padding: 50px;
}

.contact-form-panel h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

.form-gold-line {
    width: 40px;
    height: 1px;
    background-color: #dfba6b;
    margin-bottom: 30px;
}

.luxury-form .input-group {
    margin-bottom: 20px;
}

.luxury-form label {
    display: block;
    font-size: 12px;
    color: #dfba6b;
    margin-bottom: 6px;
}

.luxury-form input, 
.luxury-form select, 
.luxury-form textarea {
    width: 100%;
    background-color: #141414;
    border: 1px solid #252525;
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    border-radius: 0;
}

.luxury-form input:focus, 
.luxury-form select:focus, 
.luxury-form textarea:focus {
    outline: none;
    border-color: #dfba6b;
}

.submit-luxury-btn {
    width: 100%;
    background-color: #dfba6b;
    color: #000;
    border: 1px solid #dfba6b;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-luxury-btn:hover {
    background-color: transparent;
    color: #dfba6b;
}

/* פוטר */
.gold-footer {
    padding: 20px;
    text-align: center;
    background-color: #050505;
    border-top: 1px solid rgba(223, 186, 107, 0.05);
}

.gold-footer p {
    font-size: 12px;
    color: #555;
}

/* התאמה למובייל */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* טור אחד במובייל */
    }
    .hero-banner {
        height: 300px;
    }
    .hero-text h1 {
        font-size: 32px;
    }
}
/* עיצוב רספונסיבי לבאנר החדש */
.hero-banner-image-container {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    margin-top: 0;
}

.luxury-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero-banner-image-container {
        max-height: 280px;
    }
}