 :root {
            --primary-color: #8e44ad;
            --secondary-color: #9b59b6;
            --accent-color: #f39c12;
            --success-color: #27ae60;
			--danger-color: #e74c3c;
			--warning-color: #f1c40f;
			--info-color: #3498db;
			--light-color: #f5f5f5;
			--dark-color: #2c3e50;
			--gray-color: #95a5a6;
			--transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		html, body {
		  overflow-x: hidden; /* ❗ מונע גלילה לרוחב */
		  width: 100%;        /* מוודא שהגוף לא חורג */
		}
        
        body {
            font-family: 'Heebo', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            color: var(--dark-color);
            min-height: 100vh;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }  
        
        /* Header Styles */
        header {
            background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
            position: fixed;
            z-index: 999;
			width: 100%;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-left: 10px;
            color: var(--accent-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-right: 20px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 20px;
            transition: var(--transition);
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .active {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* Hero Section */
        .hero {
            padding: 8rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1527176930608-09cb256ab504?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 4rem;
            color: var(--dark-color);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
            transition: var(--transition);
            margin: 0 10px;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }
                       
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 0 auto;
            border-radius: 2px;
        }
        
        .card-options {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .card-option {
            flex: 1;
            min-width: 300px;
            max-width: 400px;
            background: white;
           /* border-radius: 15px;*/
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .card-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            z-index: -1;
            transition: var(--transition);
        }
        
        .card-option:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .card-option:hover::before {
            opacity: 0.05;
        }
        
        .card-option i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        
        .card-option:hover i {
            transform: scale(1.1);
            color: var(--accent-color);
        }
        
        .card-option h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .card-option p {
            color: #666;
            margin-bottom: 1.5rem;
        }        
        
        .card {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.8s;
            cursor: pointer;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-radius: 15px;
		    margin: 0 !important;
			padding: 0 !important;
			border: none;
        }
		.card,
		.card-front,
		.card-back {
		  box-shadow: none !important;
		}

        /* Card Selection Section */
        .card-selection {
            padding: 5rem 0;
            background-color: white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
           /* border-radius: 10px;*/
            margin: 2rem auto;
            max-width: 1100px;
        }
        .card.flipped {
            transform: rotateY(180deg);
        }
        /* Card Display */
        .card-display {
            perspective: 1000px;
            width: 300px;
            height: 480px;
            margin: 3rem auto;
            position: relative;
        }
		.card-text-front {
		  text-align: center;
		  margin-top: 15px;
		  background: rgba(255, 255, 255, 0.95);
		  padding: 12px;
		  border-radius: 10px;
		  max-width: 320px;
		  width: 100%;
		  font-size: 1rem;
		  color: #333;
		  direction: rtl;
		}

		.card-text-front p {
		  margin: 0;
		  font-size: 1rem;
		  color: #333;
		}

        .card-front,
		.card-back {
		  position: absolute;
		  width: 100%;
		  height: 100%;
		  backface-visibility: hidden;
		  display: flex;
		  align-items: stretch;       /* ⬅ כדי שהתמונה תתפרש לאורך מלא */
		  justify-content: stretch;   /* ⬅ כדי שהתמונה תתפרש לרוחב מלא */
		  text-align: center;
		  background: transparent;
		  color: white;
		  font-size: 1.5rem;
		  padding: 0 !important;
		  margin: 0 !important;
		}

		.card-front img,
		.card-back img {
		  width: 100%;
		  height: 100%;
		  object-fit: contain ;          /* ⬅ תמלא את כל האזור מבלי שוליים */
		  display: block;
		  border-radius: 0;
		  margin: 0;
		  padding: 0;
		  background: none;
		}

		
      			
		.card-description {
		  margin-top: 20px;
		  padding: 15px;
		  background-color: rgba(155, 89, 182, 0.05);
		  border-radius: 10px;
		  max-width: 300px;
		  font-size: 1.1rem;
		  color: var(--dark-color);
		}
		
		.modal-note {
		  margin-top: 20px;
		  padding: 15px;
		  text-align: center;
		  font-size: 1.1rem;
		  background-color: rgba(455, 89, 182, 0.05);
		  max-width: 300px;
		}


		.close-modal {
		  display: none;
		  position: absolute;
		  top: 10px;
		  left: 15px;
		  font-size: 1.2rem; /* ⬅️ קטן יותר מ-2rem */
		  color: #8e44ad;
		  cursor: pointer;
		  z-index: 9999;
		  background: rgba(255, 255, 255, 0.95); /* ⬅️ קצת שקוף */
		  border-radius: 50%;
		  padding: 4px 6px; /* ⬅️ קטן יותר */
		  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
		  line-height: 1;
		}

		.close-modal:hover {
		  background-color: #f2f2f2;
		}



		/* כפתור סגירה בתחתית (מופיע רק לאחר היפוך) */
		.btn-close-modal {
		  margin-top: 20px;
		  padding: 8px 18px;
		  background-color: #8e44ad;
		  color: #fff;
		  border: none;
		  border-radius: 10px;
		  font-size: 1rem;
		  cursor: pointer;
		  transition: background-color 0.3s;
		}

		.btn-close-modal:hover {
		  background-color: #732d91;
		}
		
        
        .card-back {
            background: white;
            color: var(--dark-color);
            transform: rotateY(180deg);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .card-back h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .card-back p {
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .card-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
            opacity: 0.1;
             /*  border-radius: 15px;*/
        }
        
       .modal-card .card {
            width: 300px;
            height: 450px;
            perspective: 1000px;
            margin: 0 auto;
        }
        .modal-card .card .card-front,
        .modal-card .card .card-back {
            width: 100%;
            height: 100%;
            position: absolute;
            backface-visibility: hidden;
            border-radius: 0;
            overflow: hidden;
        }
        .modal-card .card .card-front img,
        .modal-card .card .card-back img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .modal-card .card.flipped {
            transform: rotateY(180deg);
        }
        .modal-card .card {
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.8s;
        }


	  /* About Section */
        .about-section {
            padding: 5rem 0;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            margin: 2rem auto;
            max-width: 1100px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
        }
        
        .footer-column p {
            margin-bottom: 1rem;
        }
		
		 .social-links {
            display: flex;
            gap: 15px;
            margin-top: 2rem;
        }         
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            transition: var(--transition);
        }        
        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

		.social-links_contact {
		  display: flex;
		  gap: 15px;
		  margin-top: 2rem;
		  justify-content: center;
		}

		.social-links_contact a {
		  display: inline-flex;
		  align-items: center;
		  justify-content: center;
		  width: 50px;
		  height: 50px;
		  background: linear-gradient(135deg, #8e44ad, #9b59b6);
		  border-radius: 50%;
		  color: white;
		  font-size: 1.4rem;
		  text-decoration: none;
		  transition: all 0.3s ease;
		  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		}

		.social-links_contact a i {
		  transition: color 0.3s ease;
		}

		/* צבע שונה בעת מעבר (hover) לפי רשת */
		.social-links_contact a:hover i.fa-facebook-f { color: #1877f2; }
		.social-links_contact a:hover i.fa-instagram { color: #e1306c; }
		.social-links_contact a:hover i.fa-youtube   { color: #ff0000; }
		.social-links_contact a:hover i.fa-telegram  { color: #0088cc; }
		.social-links_contact a:hover i.fa-whatsapp  { color: #25d366; }

		/* צל חזק כשעוברים עם העכבר */
		.social-links_contact a:hover {
		  transform: translateY(-5px) scale(1.05);
		  box-shadow: 0 10px 20px rgba(142, 68, 173, 0.4);
		}
		
		.tel-link,
		.email-link {
		  color: #2c3e50;
		  text-decoration: none;
		  font-weight: 500;
		  transition: color 0.3s ease;
		}

		.tel-link:hover,
		.email-link:hover {
		  color: #8e44ad;
		  text-decoration: underline;
		}

		.email-link1,
		.tel-link1 {
		  color: white;
		  text-decoration: none;
		  font-weight: 500;
		  transition: color 0.3s ease;
		}

		.email-link1:hover,
		.tel-link1:hover {
		  color: var(--accent-color);
		  text-decoration: underline;
		}
	
		@media (max-width: 600px) {
			.social-link_contact {
				width: 40px;
				height: 40px;
				font-size: 1.2rem;
			}
		}

        
        .footer-links li {
            margin-bottom: 10px;
            list-style: none;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Modal */
       .modal {
		  display: none;
		  position: fixed;
		  top: 0; left: 0;
		  width: 100%; height: 100%;
		  background-color: rgba(0, 0, 0, 0.7);
		  z-index: 1000;
		  justify-content: center;
		  align-items: center;
		}

		.modal.show {
		  display: flex;
		}

		.modal-content {
		  position: relative;
		  background: white;
		  width: 90%;
		  max-width: 400px;
		  border: 1px solid #8e44ad; /* מסגרת סגולה */
		  border-radius: 16px;
		  padding: 20px;
		  margin: 20px auto;
		  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
		  max-height: 90vh;
		  overflow-y: auto;

		  display: flex;
		  flex-direction: column;
		  align-items: center;
		  justify-content: flex-start;
		  text-align: center;
		  box-sizing: border-box;
		}



		.modal-card {
		  width: 100%;
		  max-width: 320px;
		  height: auto; /* ✅ מאפשר גובה דינמי */
		}

		#modal-card {
		  width: 100%;
		  height: 450px; /* ✅ גובה אחיד סביר */
		  transform-style: preserve-3d;
		  transition: transform 0.8s;
		  position: relative;
		  cursor: pointer;
		  border-radius: 0;
		}

		/* ✅ תמונות בתוך הקלף – לא ייחתכו */
		#modal-card img {
		  width: 100%;
		  height: 100%;
		  object-fit: contain; 
		  display: block;
		  margin: 0;
		  padding: 0;
		  background: none;
		}


		/* ✅ התאמה למובייל */
		@media (max-width: 480px) {
		  #modal-card {
			height: 380px; /* גובה קטן יותר לפופאפ */
		  }
		}


		#modal-card.flipped {
		  transform: rotateY(180deg);
		}
		#close-button {
		  display: none;
		  margin-top: 20px;
		  padding: 10px 20px;
		  background-color: #8e44ad;
		  color: white;
		  border: none;
		  border-radius: 30px;
		  font-size: 1rem;
		  cursor: pointer;
		  transition: background 0.3s;
		}
		#close-button:hover {
		  background-color: #732d91;
		}

		#close-button:active {
		  transform: scale(0.95);
		}
		.close-button {
		  background-color: #8e44ad;
		  color: white;
		  border: none;
		  padding: 10px 20px;
		  font-size: 1rem;
		  border-radius: 25px;
		  margin-top: 20px;
		  cursor: pointer;
		  transition: background 0.3s ease;
		  animation: fadeIn 0.5s ease-in;
		  margin-bottom: 10px;
		}

		.close-button:hover {
		  background-color: #732d91;
		}

		.fade-in {
		  animation: fadeIn 0.5s ease-in;
		}

		@keyframes fadeIn {
		  from { opacity: 0; transform: translateY(-10px); }
		  to { opacity: 1; transform: translateY(0); }
		}
		
		#views-section .content-box {
		  max-height: 300px;
		  overflow-y: auto;
		  margin-top: 20px;
		  border: 1px solid #eee;
		  border-radius: 10px;
		  background: #fafafa;
		}

		.highlight-action {
		  color: var(--primary-color);
		  font-weight: bold;
		  text-decoration: underline;
		}

		.close-button.show {
		  display: inline-block;
		}

		.card-text-front {
		  text-align: center;
		  margin-top: 15px;
		  background: rgba(255, 255, 255, 0.9);
		  padding: 10px;
		  border-radius: 10px;
		  width: 100%;
		}

		.modern-table {
		  width: 100%;
		  border-collapse: collapse;
		  margin-top: 20px;
		}

		.modern-table th, .modern-table td {
		  border: 1px solid #ccc;
		  padding: 8px;
		  text-align: center;
		}

		.modern-table th {
		  background-color: #f2f2f2;
		}



		.hamburger {
		  position: absolute;
		  top: 10px;
		  right: 10px;
		  z-index: 1000;
		  font-size: 1.5rem;
		  cursor: pointer;
		  color: white;
		}
		@media (max-width: 768px) {
		  nav ul.nav-links {
			display: none;
			flex-direction: column;
			background: var(--primary-color);
			position: absolute;
			top: 100%;
			right: 0;
			width: 100%;
			padding: 1rem;
			z-index: 999;
		  }

		  nav ul.nav-links.show {
			display: flex;
		  }

		  .hamburger {
			display: block;
		  }
		   .page-title h1 {
                font-size: 2.5rem;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .contact-info {
                order: 2;
            }
            
            .contact-form {
                order: 1;
            }
		}
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1rem;
                justify-content: center;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .card-option {
                min-width: 100%;
            }
        }
        
        /* Animation */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .float-animation {
            animation: float 4s ease-in-out infinite;
        }
		
		.switch {
		  position: relative;
		  display: inline-block;
		  width: 60px;
		  height: 34px;
		}
		.switch input { display: none; }
		.slider {
		  position: absolute;
		  cursor: pointer;
		  top: 0; left: 0;
		  right: 0; bottom: 0;
		  background-color: #ccc;
		  transition: .4s;
		  border-radius: 34px;
		}
		.slider:before {
		  position: absolute;
		  content: "";
		  height: 26px; width: 26px;
		  left: 4px; bottom: 4px;
		  background-color: white;
		  transition: .4s;
		  border-radius: 50%;
		}
		input:checked + .slider {
		  background-color: #8e44ad;
		}
		input:checked + .slider:before {
		  transform: translateX(26px);
		}
		
		.spinner {
		  border: 4px solid #f3f3f3;
		  border-top: 4px solid #8e44ad;
		  border-radius: 50%;
		  width: 18px;
		  height: 18px;
		  animation: spin 0.9s linear infinite;
		  display: inline-block;
		  vertical-align: middle;
		  margin-left: 5px;
		}
		@keyframes spin {
		  0% { transform: rotate(0deg); }
		  100% { transform: rotate(360deg); }
		}
		
		.user-avatar {
		  width: 40px;
		  height: 40px;
		  border-radius: 50%;
		  overflow: hidden;
		  border: 2px solid var(--primary-color);
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  flex-shrink: 0;
		  background-color: #eee;
		}

		.user-avatar img.avatar-img {
		  width: 100%;
		  height: 100%;
		  object-fit: cover;
		  display: block;
		}

		@media (max-width: 480px) {
		  .hero .btn {
			display: block;
			width: 100%;
			margin: 10px 0;
			text-align: center;
		  }
		   .modal-content {
			width: calc(100% - 40px);
			padding: 16px;
			margin: 20px auto;
		  }	  
		}

		 /* Page Title */
        .page-title {
            text-align: center;
            padding: 3rem 0;
            position: relative;
        }
        
        .page-title h1 {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .page-title p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.2rem;
        }

		/* Contact Section */
        .contact-section {
            padding: 2rem 0 5rem;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 2rem;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-form {
            flex: 2;
            min-width: 300px;
        }
        
        .contact-card {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }
        
        .contact-card h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-left: 1rem;
            flex-shrink: 0;
        }
        
        .contact-text h3 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            color: var(--dark-color);
        }
        
        .contact-text p {
            color: #666;
            line-height: 1.5;
        }
        
		/* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark-color);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: 'Heebo', sans-serif;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
		/* Map Section */
        .map-section {
            margin-top: 4rem;
        }
        
        .map-container {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

		.success-popup {
		  position: fixed;
		  top: 50%;
		  left: 50%;
		  transform: translate(-50%, -50%);
		  background: white;
		  border: 3px solid #8e44ad;
		  border-radius: 16px;
		  padding: 30px 20px;
		  text-align: center;
		  z-index: 9999;
		  box-shadow: 0 0 15px rgba(0,0,0,0.2);
		  animation: fadeInScale 0.3s ease-in-out;
		  font-family: 'Heebo', sans-serif;
		  max-width: 90%;
		  width: 320px;
		}

		.success-popup img {
		  width: 160px;
		  margin-bottom: 10px;
		}

		.success-popup h3 {
		  color: #27ae60;
		  font-size: 1.3rem;
		  margin-bottom: 8px;
		}

		.success-popup p {
		  color: #333;
		  font-size: 1.1rem;
		}

		/* אנימציה */
		@keyframes fadeInScale {
		  from { opacity: 0; transform: scale(0.9) translate(-50%, -50%); }
		  to   { opacity: 1; transform: scale(1) translate(-50%, -50%); }
		}

		.spinner_contact {
		  border: 4px solid #f3f3f3;
		  border-top: 4px solid #8e44ad;
		  border-radius: 50%;
		  width: 18px;
		  height: 18px;
		  animation: spin_contact 0.9s linear infinite;
		  display: inline-block;
		  vertical-align: middle;
		}

		@keyframes spin_contact {
		  0% { transform: rotate(0deg); }
		  100% { transform: rotate(360deg); }
		}
		
		.product-card {
		  text-decoration: none;
		  color: inherit;
		}
		.product-card:hover {
		  text-decoration: none;
		}

		.product-card a {
		  text-decoration: none; /* ביטול קו תחתון */
		  color: inherit; /* שמירה על צבע הטקסט */
		  display: block; /* כדי שכל הכרטיס יהיה לחיץ */
		}

		.product-card a:hover {
			text-decoration: none;
		}
		
.btn-login {
    padding: 10px 16px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
  }

  .btn-login:hover {
    background-color: #e67e22;
    color: white;
  }
  
.popup-overlay.promotion {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
}

.popup-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  max-width: 500px;
  width: 100%;
  animation: popupIn 0.4s ease-out;
  overflow: hidden;
  position: relative;
}

.popup-header {
  background: #8e44ad;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-icon {
  font-size: 2.2rem;
  color: #f39c12;
}

.popup-content {
  padding: 20px;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
}

.popup-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #8e44ad;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.popup-btn:hover {
  background-color: #732d91;
}

.popup-close {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
}

@keyframes popupIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.badge-primary {
	background-color: rgba(142, 68, 173, 0.1);
	color: var(--primary-color);
}

.badge-success {
	background-color: rgba(39, 174, 96, 0.1);
	color: var(--success-color);
}

.badge-danger {
	background-color: rgba(231, 76, 60, 0.1);
	color: var(--danger-color);
}

.badge-warning {
	background-color: rgba(241, 196, 15, 0.1);
	color: var(--warning-color);
}

.badge-info {
	background-color: rgba(52, 152, 219, 0.1);
	color: var(--info-color);
}



