/* ===============================================
   🎨 L.H.U - MORTGAGE & FINANCIAL CONSULTING
   ===============================================
   צבעים: כסף יוקרתי + כחול עמוק + זהב
   כסף מטאלי, כחול נייבי, נגיעות זהב
   =============================================== */

/* ============== CSS VARIABLES ============== */
:root {
    /* צבעים עיקריים - כסף דינמי */
    --primary-silver: #C0C0C0;        /* כסף בהיר - לוגו והדגשות */
    --silver-metallic: #A8A9AD;       /* כסף מטאלי - טקסטים חשובים */
    --silver-dark: #71797E;           /* כסף כהה - גבולות */
    
    /* צבעים משניים - כחול עמוק יוקרתי */
    --navy-deep: #1A3A5C;             /* כחול נייבי עמוק בהיר יותר - רקעים */
    --royal-blue: #2C5F8D;            /* כחול רויאל - כפתורים */
    
    /* צבעי מבטא - זהב עדין */
    --gold-champagne: #C9A961;        /* זהב שמפניה - מבטאים */
    --bronze: #CD7F32;                /* ברונזה - הדגשות */
    
    /* רקעים */
    --bg-dark: #0D1117;               /* שחור עמוק */
    --bg-darker: #0D1117;             /* שחור עמוק */
    --bg-card: #1A1F2E;               /* אפור כהה - כרטיסים */
    --bg-card-hover: #242B3D;         /* אפור כהה יותר - hover */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    
    /* טקסט */
    --text-primary: #FAFAF9;          /* לבן חם */
    --text-secondary: #C0C0C0;        /* כסף בהיר */
    --text-muted: #A8A9AD;            /* כסף מטאלי */
    --text-dark: #1E293B;
    
    /* צללים */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(192, 192, 192, 0.3);
    --shadow-glow-gold: 0 0 20px rgba(201, 169, 97, 0.3);
    
    /* מרווחים */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* פונטים */
    --font-heading: 'Heebo', sans-serif;
    --font-body: 'Assistant', sans-serif;
}

/* ============== RESET & BASE ============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-dark);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-silver);
}

ul {
    list-style: none;
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ============== CONTAINER ============== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ============== BUTTONS ============== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--silver-metallic) 100%);
    color: var(--navy-deep);
    border-color: var(--primary-silver);
    box-shadow: var(--shadow-glow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
    background: linear-gradient(135deg, var(--gold-champagne) 0%, var(--primary-silver) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-silver);
    border-color: var(--primary-silver);
}

.btn-secondary:hover {
    background: var(--primary-silver);
    color: var(--navy-deep);
    box-shadow: var(--shadow-glow);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ============== HEADER ============== */
.header {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--navy-deep) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* לוגו */
.logo a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: none;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ניווט */
.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-silver), var(--gold-champagne));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-silver);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* CTA בheader */
.header-cta {
    white-space: nowrap;
}

/* תפריט המבורגר */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-silver);
    transition: all 0.3s ease;
    border-radius: 2px;
}



/* ============== HERO SECTION ============== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--navy-deep);
    padding: var(--spacing-xl) 0;
    text-align: center;
    overflow: hidden;
}

/* אנימציית רקע גרדיאנט */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(192, 192, 192, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
    animation: gradientMove 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes gradientMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* הפוס נקודות ברקע */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(192, 192, 192, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* סטטיסטיקות עם אנימציה */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ============== ANIMATIONS ============== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============== SECTION HEADER ============== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease;
}

.section-title {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-silver), var(--gold-champagne));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ============== SERVICES SECTION ============== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    padding: 2.75rem 2.25rem;
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(192, 192, 192, 0.1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-silver), var(--gold-champagne));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
    background: var(--bg-card-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(201, 169, 97, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-silver);
    transition: all 0.5s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    color: var(--navy-deep);
    box-shadow: var(--shadow-glow);
}

.service-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-silver);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============== WHY US SECTION ============== */
.why-us {
    padding: var(--spacing-xl) 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    position: relative;
    padding: 2rem;
    padding-right: 4rem;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.feature-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
    background: var(--bg-card-hover);
}

.feature-number {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-number {
    opacity: 0.3;
    transform: scale(1.1);
}

.feature-title {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============== CTA SECTION ============== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(315deg, var(--bg-darker) 0%, var(--navy-deep) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* ============== CONTACT SECTION ============== */
.contact {
    padding: var(--spacing-lg) 0;
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-right: 4px solid transparent;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.contact-item:hover {
    background: var(--bg-card-hover);
    border-right-color: var(--primary-silver);
    transform: translateX(-5px);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-item a {
    color: var(--primary-silver);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
    color: var(--gold-champagne);
}

.contact-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* טופס */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    padding: 0.875rem;
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--bg-darker);
    color: var(--text-primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-silver);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    grid-column: 1 / -1;
    width: 100%;
}

.form-status {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

.form-status.success {
    background: rgba(192, 192, 192, 0.2);
    color: var(--primary-silver);
    border: 1px solid var(--primary-silver);
}

.form-status.error {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border: 1px solid #EF4444;
}

/* ============== SOCIAL BLOCK ============== */
.contact-social-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(192, 192, 192, 0.1);
    text-align: center;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.contact-social-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-social-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.social-icons-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.social-icon-link:hover {
    transform: translateY(-5px);
}

.social-icon-link.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

.social-icon-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 0 15px rgba(214, 36, 159, 0.6);
}

.social-icon-link.facebook:hover {
    background: #1877F2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.6);
}

/* ============== FOOTER ============== */
.footer {
    background: var(--bg-darker);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(192, 192, 192, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-subtitle {
    color: var(--text-secondary);
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-links a::before {
    content: '←';
    position: absolute;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-silver);
    padding-right: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* דיסקליימר */
.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* תחתית */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-legal a {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.footer-legal a:hover {
    color: var(--primary-silver);
}

/* ============== ABOUT PAGE - STORY SECTION ============== */
.hero-about {
    min-height: 50vh;
    padding: var(--spacing-lg) 0;
}

.story {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content h3 {
    color: var(--gold-champagne);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-highlight {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(201, 169, 97, 0.1) 100%);
    padding: 1.5rem;
    border-right: 4px solid var(--primary-silver);
    border-radius: 8px;
    margin-top: 2rem;
}

.story-highlight p {
    margin: 0;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(192, 192, 192, 0.2);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
}

/* ============== TEAM SECTION ============== */
.team {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
}

.member-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(201, 169, 97, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 4rem;
}

.member-name {
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.member-role {
    padding: 0 1.5rem;
    margin: 0.25rem 0;
    color: var(--primary-silver);
    font-weight: 600;
    font-size: 0.9rem;
}

.member-bio {
    padding: 1rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.member-contact {
    padding: 1.5rem;
    padding-top: 1rem;
    background: rgba(192, 192, 192, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

/* ============== TEAM GRID 3 COLUMNS ============== */
.team-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 1024px) {
    .team-grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .team-grid-3 {
        grid-template-columns: 1fr !important;
    }
}

/* ============== PRICING PAGE ============== */
.hero-pricing {
    min-height: 50vh;
    padding: var(--spacing-lg) 0;
}

/* ============== PRICING SECTION ============== */
.pricing {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
}

.pricing-card-highlighted {
    border: 2px solid var(--gold-champagne);
    transform: scale(1.02);
}

.pricing-card-highlighted:hover {
    transform: scale(1.02) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--gold-champagne) 0%, var(--bronze) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow-gold);
}

.pricing-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--primary-silver);
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-features {
    padding: 2rem;
    flex-grow: 1;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    color: var(--primary-silver);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-text {
    line-height: 1.5;
}

.pricing-cta {
    padding: 0 2rem 2rem;
}

.pricing-cta .btn-primary {
    width: 100%;
}

.pricing-note {
    padding: 1rem 2rem;
    background: rgba(192, 192, 192, 0.05);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: auto;
}

.pricing-note p {
    margin: 0;
}

/* ============== FAQ SECTION ============== */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--bg-darker);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
    background: var(--bg-card-hover);
}

.faq-question {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============== REMOTE / ZOOM BADGE ============== */
.remote-badge {
    background: rgba(192, 192, 192, 0.1);
    color: var(--primary-silver);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.remote-highlight {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 4px solid var(--gold-champagne);
}

/* ============== BLOG STYLES ============== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.blog-image {
    height: 200px;
    background-color: var(--bg-darker);
    background-position: center;
    background-size: cover;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ============== ADMIN / LOGIN STYLES ============== */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.admin-dashboard {
    display: none;
}

.editor-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.content-block {
    background: var(--bg-darker);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.remove-block-btn {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #EF4444;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.7rem;
    cursor: pointer;
}

.add-block-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--primary-silver);
    color: var(--primary-silver);
}

/* BLOG POST PAGE (Single) */
.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.post-section-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-section-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-section-image img {
    width: 100%;
    height: auto;
}

/* ============== RESPONSIVE DESIGN ============== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }
    
    html {
        font-size: 14px;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        gap: 0.5rem;
    }
    
    .logo a {
        gap: 0.1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    /* Navigation Mobile - HIDDEN BY DEFAULT */
    .nav {
        position: fixed !important;
        top: 70px !important;
        right: -100% !important;
        width: 100% !important;
        max-width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--bg-darker) 0%, var(--navy-deep) 100%);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        padding: 2rem 1rem;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-left: 1px solid rgba(192, 192, 192, 0.2);
    }
    
    /* SHOW WHEN ACTIVE */
    .nav.active {
        right: 0 !important;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.75rem;
        display: flex;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
        color: var(--text-secondary);
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        padding-right: 1rem;
        border-right: 3px solid var(--primary-silver);
        color: var(--primary-silver);
    }
    
    /* Hamburger Menu */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        background: none;
        border: none;
        padding: 0;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-silver);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
        display: block;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        width: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Header CTA */
    .header-cta {
        display: none !important;
    }
    
    /* Hero Section */
    .hero {
        min-height: 60vh;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    /* Contact */
    .contact {
        padding: var(--spacing-lg) 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .contact-item {
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .contact-icon {
        font-size: 1.25rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .pricing-features {
        padding: 1.5rem;
    }
    
    .pricing-cta {
        padding: 0 1.5rem 1.5rem;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-image {
        height: 150px;
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-image {
        height: 150px;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Extra Small Mobile - 480px and below */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-form {
        padding: 1rem;
        gap: 0.6rem;
    }
}

/* ============== UTILITIES ============== */
.text-center {
    text-align: center;
}
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* ============== LOADING ANIMATION ============== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-silver);
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============== SCROLL ANIMATIONS ============== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============== PULSE ANIMATION FOR CTAs ============== */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(192, 192, 192, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(192, 192, 192, 0);
    }
}

.btn-primary:hover {
    animation: pulse 1.5s infinite;
}

/* ============== GLOW EFFECTS ============== */
.glow-silver {
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
}
.glow-gold {
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
}

/* ============== CUSTOM SCROLLBAR ============== */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-silver);
}

/* ============== SELECTION COLOR ============== */
::selection {
    background: var(--primary-silver);
    color: var(--navy-deep);
}
::-moz-selection {
    background: var(--primary-silver);
    color: var(--navy-deep);
}
/* ============== POPUPS - ENTRY & EXIT INTENT ============== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(192, 192, 192, 0.2);
    color: var(--primary-silver);
    transform: rotate(90deg);
}

.popup-inner {
    padding: 3rem 2.5rem 2.5rem;
    text-align: center;
}

.popup-inner h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-inner p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.popup-form input {
    padding: 0.875rem;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-darker);
    color: var(--text-primary);
    transition: all 0.3s ease;
    direction: rtl;
    text-align: right;
}

.popup-form input::placeholder {
    color: var(--text-muted);
}

.popup-form input:focus {
    outline: none;
    border-color: var(--primary-silver);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.2);
}

.popup-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Entry Popup Specific */
.entry-popup-content {
    max-width: 450px;
}

.entry-popup-overlay {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* Exit Popup Specific */
.exit-popup-content {
    max-width: 500px;
    border: 2px solid var(--gold-champagne);
}

.exit-popup-overlay {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}

.exit-popup-content .popup-inner h3 {
    color: var(--gold-champagne);
}

/* Responsive Popups */
@media (max-width: 480px) {
    .popup-content {
        width: 95%;
        max-width: 100%;
    }

    .popup-inner {
        padding: 2rem 1.5rem 1.5rem;
    }

    .popup-inner h3 {
        font-size: 1.5rem;
    }

    .popup-inner p {
        font-size: 0.9rem;
    }
}

/* ============== BOOKING MODAL STYLES ============== */
/* ADD THIS TO THE END OF style.css */

/* Modal Container */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Overlay */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Modal Content */
.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(192, 192, 192, 0.2);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10001;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(192, 192, 192, 0.1);
    color: var(--primary-silver);
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

/* Meeting Type Selector - REDESIGNED (cleaner, no boxes) */
.meeting-type-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.meeting-type-btn {
    background: transparent;
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.meeting-type-btn:hover {
    border-color: var(--primary-silver);
    background: rgba(192, 192, 192, 0.05);
    transform: translateY(-2px);
}

.meeting-type-btn.selected {
    border-color: var(--primary-silver);
    background: rgba(192, 192, 192, 0.1);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.meeting-type-icon {
    font-size: 1.5rem;
}

/* Selected Meeting Header with X button */
.selected-meeting-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-back-x {
    background: transparent;
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-back-x:hover {
    border-color: var(--primary-silver);
    color: var(--primary-silver);
    background: rgba(192, 192, 192, 0.1);
    transform: rotate(90deg);
}

.meeting-type-dropdown {
    flex: 1;
}

.selected-meeting-btn {
    width: 100%;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.selected-meeting-btn:hover {
    border-color: var(--primary-silver);
    background: rgba(192, 192, 192, 0.15);
}

.selected-meeting-btn i {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Office Address Notice */
.office-notice {
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.office-notice p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.office-notice strong {
    color: var(--gold-champagne);
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-form label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 0.875rem;
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-darker);
    color: var(--text-primary);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--text-muted);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-silver);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.2);
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-actions .btn {
    flex: 1;
}

/* Submit Button with Loader */
#submit-booking-btn {
    position: relative;
}

#submit-booking-btn .btn-text,
#submit-booking-btn .btn-loader {
    transition: opacity 0.3s ease;
}

#submit-booking-btn.loading .btn-text {
    opacity: 0;
}

#submit-booking-btn.loading .btn-loader {
    display: inline-block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Form Status Messages */
#booking-form-status {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    padding: 0.875rem;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

#booking-form-status.success {
    background: rgba(192, 192, 192, 0.2);
    color: var(--primary-silver);
    border: 1px solid var(--primary-silver);
}

#booking-form-status.error {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border: 1px solid #EF4444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .meeting-type-selector {
        grid-template-columns: 1fr;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .form-actions {
        flex-direction: column-reverse;
    }
}

/* Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-silver);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--gold-champagne);
}

/* ============== BOOKING MODAL - UPDATED STYLES ============== */
/* REPLACE OR ADD TO END OF style.css */

/* Selected Meeting Type Badge */
.selected-meeting-type {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(201, 169, 97, 0.15) 100%);
    border: 1px solid var(--primary-silver);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.selected-meeting-type i {
    font-size: 1.25rem;
}

/* Checkbox Wrapper */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(192, 192, 192, 0.05);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-wrapper:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: var(--primary-silver);
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-silver);
}

.checkbox-label {
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
    user-select: none;
}

/* Alternative Location Input */
#alternative-location-input {
    animation: slideDown 0.3s ease;
    margin-top: 0.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#alternative-location-input input {
    border-left: 3px solid var(--gold-champagne);
}

#alternative-location-input small {
    display: block;
    margin-top: 0.5rem;
}

/* Form Actions Enhancement */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-actions .btn {
    flex: 1;
}

.form-actions .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Mobile Responsive - Additional */
@media (max-width: 768px) {
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .checkbox-wrapper {
        padding: 0.75rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
}
/* ============================================
   HEADER FULL-WIDTH FIX - הרחבה מקסימלית (1600px+), אפס פאדינג
   ============================================ */

/* container רחב יותר – 1600px מקסימום, פאדינג מינימלי */
.container {
    max-width: 1600px !important; /* הגדלה מ-1200px ל-1600px – התאם ל-1800px אם רוצה עוד */
    margin: 0 auto !important;
    padding: 0 0.5rem !important; /* פאדינג קל בגוף העמוד (לא ב-header) */
}

/* header – full-width אמיתי, אפס פאדינג, צמוד לקצוות */
.header .container {
    max-width: 100% !important; /* full-width מלא ב-header */
    padding: 0 !important; /* אפס פאדינג – צמוד למסך */
    width: 100vw !important; /* 100% מרוחב המסך, כולל viewport */
    margin: 0 !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important; /* טריק ל-full-width ב-container מוגבל */
}

/* פריסת header-content – שמירה על צמודות + מרכוז */
.header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 0 !important;
    padding: 0 1rem !important; /* פאדינג קל פנימי אם צריך (הסר ל-0 אם רוצה צמוד לגמרי) */
    margin: 0 !important;
    max-width: 1600px !important; /* הגבלה פנימית אם המסך גדול מדי */
    margin: 0 auto !important; /* מרכוז בתוך ה-full-width */
}

/* לוגו וכפתורים – צמודים עוד יותר */
.logo {
    flex-shrink: 0 !important;
    order: -1 !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.header-actions {
    flex-shrink: 0 !important;
    order: 99 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* ניווט – מרכוז מושלם ברוחב החדש */
.nav {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    order: 0 !important;
    margin: 0 auto !important;
}

.nav-list {
    display: flex !important;
    justify-content: center !important;
    gap: 4rem !important; /* gap גדול יותר לניווט ברוחב חדש */
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* התאמה ל-scrolled state */
.header.scrolled .header-content {
    padding: 0 0.75rem !important; /* פאדינג קל יותר כשמגלגלים */
    max-width: 1600px !important;
}

/* מובייל – אל תפריע לרוחב, אבל הגבל כדי שלא ישבר */
@media (max-width: 768px) {
    .container {
        max-width: 100% !important;
        padding: 0 0.25rem !important;
    }
    
    .header .container {
        width: 100% !important; /* full-width אבל לא 100vw במובייל */
        margin-left: 0 !important;
        margin-right: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 0 0.5rem !important; /* פאדינג קל במובייל */
    }
    
    .header-content {
        padding: 0 0.5rem !important;
        gap: 0 !important;
    }
    
    .nav-list {
        gap: 1.5rem !important; /* gap קטן במובייל */
    }
    
    .nav {
        display: none !important; /* הסתר ניווט, המבורגר יחליף */
    }
}

/* מסכים גדולים מאוד (4K+) – אם רוצה להגביל */
@media (min-width: 1920px) {
    .header-content {
        max-width: 1800px !important; /* הגבלה נוספת אם המסך ענק */
    }
}

/* --- באנר אתר בהרצה --- */
.site-notice-bar {
    background-color: #cdfff7; /* צבע רקע צהבהב עדין */
    color: #000000; /* צבע טקסט חום כהה לקריאות טובה */
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #220b88;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    z-index: 1001; /* מוודא שזה מעל ההדר */
}

.site-notice-bar p {
    margin: 0;
}

/* התאמה למובייל - הקטנת טקסט */
@media (max-width: 768px) {
    .site-notice-bar {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}

/* אופציונלי: אם ההדר שלך דביק (sticky), צריך להוריד אותו קצת */
/* במקרה שלך נראה שההדר לא דביק, אז הקוד הזה לא חובה, אבל שים לב אם ההדר מסתיר את הבאנר */

body {
    padding-top: 41px; 
}
.header.sticky {
    top: 41px;
}