/* 🔥 הוספת פונטים משופרים לHeader */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&display=swap');

:root {
    --israel-blue: #0038b8;
    --israel-light-blue: #0052cc;
    --memorial-gold: #d4a017;
    --solemn-gray: #4a4a4a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --primary-gradient: linear-gradient(135deg, var(--israel-blue) 0%, var(--israel-light-blue) 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 56, 184, 0.2);
    --primary-color: var(--israel-blue);
    --secondary-color: var(--memorial-gold);
    --text-dark: #1a1a1a;
    --text-light: #333333;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.2px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(0, 56, 184, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(212, 160, 23, 0.02) 0%, transparent 50%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 🚀 Header משופר - התחלת השיפורים */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 2px 20px rgba(0, 56, 184, 0.08);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 56, 184, 0.1);
    animation: slideDown 0.6s ease-out;
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 8px 40px rgba(0, 56, 184, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

/* 🎨 Header Content משופר */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ✨ לוגו משופר */
.logo {
    font-family: 'Heebo', 'Assistant', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--israel-blue);
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 56, 184, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 56, 184, 0.2);
}

/* 🕯️ נר משופר */
#lottie-candle {
    width: 80px;
    height: 100px;
    margin-left: 0;
    margin-right: 12px;
    filter: drop-shadow(0 2px 8px rgba(255, 200, 100, 0.4));
    animation: candleGlow 4s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

#lottie-candle:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(255, 200, 100, 0.7));
}

/* 🔄 אנימציה של כניסה משופרת */
@keyframes fadeInCandle {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✨ אנימציה לזוהר משופרת */
@keyframes candleGlow {
    0% {
        filter: drop-shadow(0 2px 8px rgba(255, 200, 100, 0.3));
    }
    100% {
        filter: drop-shadow(0 4px 12px rgba(255, 200, 100, 0.6));
    }
}

/* 🎯 כפתור צור קשר משופר */
.contact-header {
    background: linear-gradient(135deg, var(--israel-blue) 0%, var(--israel-light-blue) 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 56, 184, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-header:hover::before {
    left: 100%;
}

.contact-header:hover {
    background: linear-gradient(135deg, var(--israel-light-blue) 0%, var(--israel-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 56, 184, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-header:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 56, 184, 0.2);
}

/* 🌟 אפקטים נוספים לHeader */
header::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--israel-blue), transparent);
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

header.scrolled::after {
    opacity: 0.3;
}

/* 🎬 אנימציית כניסה לHeader */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 💫 פעימה עדינה לנר */
.candle-pulse {
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 90%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 8px rgba(255, 200, 100, 0.4));
    }
    95% {
        transform: scale(1.02);
        filter: drop-shadow(0 4px 12px rgba(255, 200, 100, 0.8));
    }
}

/* 🔚 סיום שיפורי Header */

/* כפתור צור קשר ב-Hero למובייל בלבד */
.contact-hero {
    display: none; /* מוסתר כברירת מחדל */
    background: var(--israel-blue);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--israel-blue);
    margin-top: 30px;
    display: inline-block;
    font-size: 18px;
}

.contact-hero:hover {
    background: var(--israel-light-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 56, 184, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb3 {
    width: 200px;
    height: 200px;
    background: #667eea;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

.hero h1 {
    font-family: 'Alef', sans-serif;
    font-size: clamp(42px, 8vw, 72px);
    color: var(--text-light);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: clamp(20px, 3vw, 28px);
    color: rgba(51, 51, 51, 0.8);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.2s both;
    font-weight: 300;
}

/* Gallery */
.hero-gallery {
    margin-top: 50px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.3s both;
}



.gallery-item {
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* שומר על פרופורציה תוך כדי מילוי */
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(0.95) brightness(1.05);
    display: block;
}

.gallery-overlay p {
    color: white;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.2px;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 56, 184, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: contrast(1) brightness(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Features Section */
.features {
    padding: 20px 0;
    background: #f9fafb;
}

.section-title {
    font-family: 'Alef', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    color: var(--israel-blue);
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
}

/* גריד 3 כרטיסים עבור features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* במסכים בינוניים */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

/* במובייל */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
    }
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 56, 184, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--israel-blue), var(--memorial-gold));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 56, 184, 0.12);
    border-color: rgba(0, 56, 184, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, rgba(0, 56, 184, 0.1) 0%, rgba(0, 56, 184, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 56, 184, 0.15) 0%, rgba(0, 56, 184, 0.08) 100%);
}

.feature-card h3 {
    font-size: 19px;
    margin-bottom: 16px;
    color: var(--israel-blue);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.feature-card p {
    font-size: 16px;
    line-height: 2;
    color: #5a6c7d;
    font-weight: 300;
}

/* Memorial Demo */
.memorial-demo {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.memorial-demo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.memorial-container {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.candle-section {
    text-align: center;
    margin: 60px 0;
    perspective: 1000px;
}

.candle {
    width: 80px;
    height: 150px;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.candle:hover {
    transform: rotateY(20deg) rotateX(-10deg);
}

.candle-body {
    width: 50px;
    height: 100px;
    background: linear-gradient(180deg, #f5f5f5 0%, #e0e0e0 50%, #d0d0d0 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.3),
        inset 0 2px 5px rgba(255,255,255,0.5);
    position: relative;
}

.flame {
    width: 30px;
    height: 40px;
    background: radial-gradient(ellipse at bottom, #fff 0%, #ffeb3b 20%, #ff9800 60%, #ff5722 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    animation: flicker 2s infinite, glow 2s ease-in-out infinite;
    box-shadow: 
        0 0 40px #ff9800,
        0 0 80px #ff5722,
        0 0 120px #ff5722;
    filter: blur(0.5px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--israel-blue) 0%, var(--israel-light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Assistant', sans-serif;
    font-size: clamp(26px, 3.5vw, 34px);
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-section .lead-text {
    font-size: 18px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Contact Form - Labels בצד ימין */
.contact-form {
    max-width: 700px;
    margin: 50px auto 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    min-width: 0; /* חשוב! */
    width: 100%;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.form-group.full-width {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.form-group label {
    width: 120px;
    flex-shrink: 0;
}

.form-group.full-width label {
    text-align: right;
    min-width: auto;
}

.form-group input,
.form-group textarea {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    background: #fafbfc;
    color: #2c3e50;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Assistant', sans-serif;
    font-weight: 400;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--israel-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 56, 184, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 60%;
    padding: 16px;
    background: linear-gradient(135deg, #0038b8 0%, #0052cc 100%);
    box-shadow: 0 4px 12px rgba(0, 56, 184, 0.3);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.submit-button:hover {
    background: var(--israel-light-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 56, 184, 0.3);
}

/* Footer */
footer {
    padding: 60px 0 0;
    background: #0a0f1b;
    color: white;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--israel-blue), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Alef', sans-serif;
    font-size: 20px;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
    font-weight: 400;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}


/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--israel-blue), var(--memorial-gold));
    z-index: 10001;
    transition: width 0.2s ease;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--israel-blue);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

.gallery-section {
    padding: 20px 20px;
    background: linear-gradient(to bottom right, #f8f9fa, #eef1f7);
}

.memorial-text {
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 40px;
}

/* 📱 Responsive Design משופר לHeader */
@media (max-width: 768px) {
    /* הסתרת כפתור צור קשר בכותרת במובייל */
    .contact-form {
        padding: clamp(20px, 5vw, 50px);
    }
    
    .memorial-container {
        padding: 40px 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* 📱 התאמה למסכים קטנים מאוד - Header */
@media (max-width: 480px) {
    .header-content {
        padding: 0 16px;
    }
    
    .logo {
        font-size: 22px;
        gap: 10px;
    }
    
    #lottie-candle {
        width: 60px;
        height: 80px;
        margin-right: 8px;
    }
}

/* במסכים רחבים - הסתרת כפתור Hero */
@media (min-width: 769px) {
    .contact-hero {
        display: none !important;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% { 
        transform: translate(20px, -20px) scale(1.05);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-10px, -30px) scale(1.1);
        opacity: 0.6;
    }
    75% { 
        transform: translate(-20px, -10px) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15); 
        opacity: 0.2;
    }
}

@keyframes flicker {
    0%, 100% { 
        transform: translateX(-50%) scale(1) rotate(-1deg);
        filter: brightness(1) blur(0.5px);
    }
    50% { 
        transform: translateX(-50%) scale(1.06) rotate(-1deg);
        filter: brightness(1.15) blur(0.2px);
    }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 40px #ff9800, 0 0 80px #ff5722, 0 0 120px #ff5722;
    }
    50% { 
        box-shadow: 0 0 60px #ff9800, 0 0 100px #ff5722, 0 0 140px #ff5722;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUpSmooth {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-250px) scale(2.5);
    }
}

@keyframes rippleEffect {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}contact-header {
        display: none;
    }
    
    /* הצגת כפתור צור קשר ב-Hero במובייל */
    .contact-hero {
        display: inline-block !important;
    }
    
    /* 🎯 Header responsive משופר */
    header {
        padding: 16px 0;
    }
    
    header.scrolled {
        padding: 10px 0;
    }
    
    .header-content {
        justify-content: center;
        padding: 0 20px;
    }
    
    .logo {
        font-size: 24px;
        gap: 12px;
    }
    
    /* 🕯️ נר responsive משופר */
    #lottie-candle {
        width: 70px;
        height: 90px;
        margin-right: 10px;
    }
    
    .hero {
        padding: 60px 0 50px;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 26px;
        line-height: 1.4;
    }
    
    .hero .subtitle {
        font-size: 16px;
        color: #444;
    }
    

    
    .feature-card {
        padding: 30px 20px;
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        max-width: 1200px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            max-width: 500px;
        }
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    /* טופס במובייל */
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .form-group label {
        text-align: right;
        min-width: auto;
    }

      .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,0.8);
            font-size: 15px;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(74, 158, 255, 0.2);
            border-radius: 50%;
            color: #4a9eff;
            font-size: 12px;
        }

        .phone-number {
            color: #4a9eff;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .phone-number:hover {
            color: #fff;
        }

  

        .whatsapp-btn:hover {
            background: #20c157;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

  

        .footer-bottom a {
            color: #4a9eff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #fff;
        }
        .footer-section {
            padding-bottom: 10px;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-links a {
                border-right: none;
                border-bottom: 2px solid transparent;
                padding: 8px 0;
            }

            .footer-links a:hover {
                transform: none;
                border-right: none;
                border-bottom-color: #4a9eff;
            }
        }

              /* מספרים מינימליים */
        .number-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 200;
            color: white;
            border-radius: 50%;
            position: relative;
            transition: all 0.3s ease;
        }

        /* מספר 1 */
        .number-1 {
            background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
        }

        /* מספר 2 */
        .number-2 {
            background: linear-gradient(135deg, #8a94a6 0%, #6c757d 100%);
        }

        /* מספר 3 */
        .number-3 {
            background: linear-gradient(135deg, #adb5bd 0%, #8a94a6 100%);
        }

        /* אפקט זוהר עדין */
        .number-icon::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: inherit;
            border-radius: 50%;
            opacity: 0.3;
            z-index: -1;
            filter: blur(8px);
        }

                /* מספרים מינימליים */
        .number-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 200;
            color: white;
            border-radius: 50%;
            position: relative;
            transition: all 0.3s ease;
        }

        /* מספר 1 */
        .number-1 {
            background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
        }

        /* מספר 2 */
        .number-2 {
            background: linear-gradient(135deg, #8a94a6 0%, #6c757d 100%);
        }

        /* מספר 3 */
        .number-3 {
            background: linear-gradient(135deg, #adb5bd 0%, #8a94a6 100%);
        }

        /* אפקט זוהר עדין */
        .number-icon::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: inherit;
            border-radius: 50%;
            opacity: 0.3;
            z-index: -1;
            filter: blur(8px);
        }


        /* אנימציות עדינות */
        .number-icon {
            animation: gentle-pulse 4s ease-in-out infinite;
        }

        .feature-card:hover .number-icon {
            transform: scale(1.1);
        }

        @keyframes gentle-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.9; transform: scale(1.02); }
        }

        @media (max-width: 768px) {


            .number-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
        }
    
    