        @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Heebo:wght@400;600;700;900&display=swap');
        
        body {
            font-family: 'Cairo', 'Heebo', sans-serif;
        }
        
        body.hebrew-mode {
            font-family: 'Heebo', 'Cairo', sans-serif;
        }
        
        .hero-pattern {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('photos/malab.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .grass-pattern {
            background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 50%, #1a5f2a 100%);
        }
        
        .slide-in {
            animation: slideIn 0.5s ease-out;
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .language-switcher {
            position: relative;
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            padding: 5px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .lang-btn {
            padding: 8px 16px;
            border-radius: 25px;
            border: none;
            background: transparent;
            color: white;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .lang-btn.active {
            background: #fbbf24;
            color: #1f2937;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        
        .lang-btn:hover:not(.active) {
            background: rgba(255, 255, 255, 0.2);
        }
        
        /* Hebrew specific adjustments */
        [dir="ltr"] .space-x-reverse {
            --tw-space-x-reverse: 0;
        }
        
        [dir="ltr"] .mr-2 {
            margin-right: 0;
            margin-left: 0.5rem;
        }
        
        [dir="ltr"] .ml-2 {
            margin-left: 0;
            margin-right: 0.5rem;
        }
        
        [dir="ltr"] .text-right {
            text-align: left;
        }
        
        .hebrew-text {
            display: none;
        }
        
        .arabic-text {
            display: inline;
        }
        
        body.hebrew-mode .hebrew-text {
            display: inline;
        }
        
        body.hebrew-mode .arabic-text {
            display: none;
        }
        
        .whatsapp-btn {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: white;
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }
        
        .contact-person {
            transition: all 0.3s ease;
            border: 2px solid #e5e7eb;
        }
        
        .contact-person:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-color: #22c55e;
        }
        
        .contact-person.selected {
            background-color: #dcfce7;
            border-color: #22c55e;
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
        }
        
        .booking-info-box {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border: 2px solid #22c55e;
        }
        
        .map-container {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1));
            pointer-events: none;
        }
        
        .open-map-btn {
            background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
            color: white;
            transition: all 0.3s ease;
        }
        
        .open-map-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(66, 133, 244, 0.4);
        }
