/* Global Variables - צבעים משודרגים */
:root {
  --primary: #4361ee; /* כחול-סגול חדשני במקום כחול רגיל */
  --primary-light: #4895ef;
  --primary-lighter: #4cc9f0;
  --primary-dark: #3a0ca3;
  
  /* גוונים חדשים */
  --accent: #00b4d8; /* טורקיז בהיר יותר */
  --accent-light: #90e0ef;
  --purple: #7209b7; /* סגול עמוק יותר */
  --purple-light: #b5179e;
  --pink: #f72585; /* ורוד בהיר יותר */
  --pink-light: #ff77e9;
  
  /* גרדיאנטים משודרגים עם גוונים חיים יותר */
  --primary-gradient: linear-gradient(135deg, #4361ee, #00b4d8);
  --accent-gradient: linear-gradient(135deg, #00b4d8, #4cc9f0);
  --modern-gradient: linear-gradient(135deg, #4361ee, #7209b7);
  --vibrant-gradient: linear-gradient(135deg, #7209b7, #f72585);
  
  --dark: #0b132b; /* כהה יותר */
  --gray: #64748b;
  --light-gray: #e2e8f0;
  --background: #f8fafc;
  --white: #ffffff;
  
  /* שיפור הגלו */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --glow-blue: 0 0 15px rgba(67, 97, 238, 0.5);
  --glow-purple: 0 0 15px rgba(114, 9, 183, 0.5);
  --glow-teal: 0 0 15px rgba(0, 180, 216, 0.5);
  
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', 'Heebo', Arial, sans-serif;
}

body {
  background-color: var(--background);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden; /* מניעת גלילה אופקית */
}

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

/* Animations משודרגות */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: var(--shadow-sm); }
  50% { transform: scale(1.05); box-shadow: var(--shadow-md); }
  100% { transform: scale(1); box-shadow: var(--shadow-sm); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* אפקט של קווי זרימה */
@keyframes flow {
  0% { 
    background-position: 0% 50%; 
    box-shadow: var(--glow-blue);
  }
  50% { 
    background-position: 100% 50%; 
    box-shadow: var(--glow-purple);
  }
  100% { 
    background-position: 0% 50%; 
    box-shadow: var(--glow-blue);
  }
}

/* Header - כותרת עליונה משודרגת */
header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-mark {
  width: 50px;
  height: 50px;
  background: var(--modern-gradient);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 15px;
  box-shadow: var(--glow-blue);
  transition: var(--transition);
}

.logo-mark:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--glow-purple);
}

.logo-text {
  font-size: 1.5rem;
  color: var(--dark);
  font-weight: bold;
}

.logo-text span {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-right: 30px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding-bottom: 5px;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--accent-gradient);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.contact-btn {
  background: var(--vibrant-gradient);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: var(--white);
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
  border: none;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(124, 58, 237, 0.5);
}

.contact-btn::after {
  display: none;
}

/* Hero Section - מדהים יותר */
.hero {
  padding: 170px 0 120px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f1ff 50%, #ede9ff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.08), rgba(114, 9, 183, 0.1));
  z-index: 0;
}

.hero::before {
  top: -25vw;
  right: -25vw;
  animation: pulse 15s ease-in-out infinite;
}

.hero::after {
  bottom: -25vw;
  left: -25vw;
  animation: pulse 15s ease-in-out infinite;
  animation-delay: 7.5s;
}

/* רשת מעגלים קטנים ברקע */
.hero .grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 1vw 1vw, rgba(0, 180, 216, 0.1) 0.5vw, transparent 0.5vw);
  background-size: 5vw 5vw;
  z-index: 0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--dark);
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, rgba(67, 97, 238, 0.2), rgba(114, 9, 183, 0.2));
  bottom: 5px;
  left: 0;
  z-index: -1;
  border-radius: 10px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--gray);
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease 0.2s both;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease 0.4s both;
}

.primary-btn {
  background: var(--vibrant-gradient);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 6px 15px rgba(124, 58, 237, 0.3);
  position: relative;
  overflow: hidden;
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: var(--transition);
}

.primary-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.4);
}

.primary-btn:hover::before {
  left: 100%;
  transition: 0.7s;
}

/* Services Section - עיצוב מתקדם */
.services {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #f8f9ff;
  background-image: 
    linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(0, 180, 216, 0.03) 100%),
    radial-gradient(circle at 90% 10%, rgba(0, 180, 216, 0.05) 0%, transparent 20%);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(0, 180, 216, 0.05));
  z-index: 0;
}

.services::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: -50px;
  left: 0;
  background: linear-gradient(to bottom, var(--white) 0%, transparent 100%);
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeIn 1s ease;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--vibrant-gradient);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.service-card {
  border-radius: 20px;
  padding: 45px 35px;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.7);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: var(--vibrant-gradient);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1));
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  transition: var(--transition);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.service-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1));
  z-index: -1;
  filter: blur(10px);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--modern-gradient);
  box-shadow: var(--glow-blue);
  transform: scale(1.1);
}

.service-card:hover .service-icon svg path {
  stroke: white;
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-card:hover h3 {
  background: var(--vibrant-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
}

/* חלק חדש - מקטע שאלות ותשובות נפוצות (FAQ) */
.faq-section {
  padding: 120px 0;
  position: relative;
  background-color: #f3f8ff;
  background-image: 
    linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(0, 180, 216, 0.03) 100%),
    radial-gradient(circle at 15% 85%, rgba(114, 9, 183, 0.05) 0%, transparent 30%);
}

.faq-container {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.question-icon {
  background: var(--vibrant-gradient);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  flex-shrink: 0;
  color: white;
  box-shadow: var(--glow-purple);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--dark);
  flex-grow: 1;
  transition: var(--transition);
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--purple);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 30px 30px 30px;
  margin-right: 65px;
  display: none;
}

.faq-answer p, .faq-answer ul, .faq-answer ol {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.faq-answer ul, .faq-answer ol {
  padding-right: 20px;
}

.faq-answer li {
  margin-bottom: 10px;
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.5s ease;
}

.cta-box {
  background: rgba(114, 9, 183, 0.05);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
}

.inline-cta {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

.inline-cta::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--vibrant-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.inline-cta:hover {
  color: var(--pink);
}

.inline-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Process Section - תהליך העבודה עם אפקטים מיוחדים */
.process {
  padding: 120px 0;
  position: relative;
  background-color: #f9fcff;
  background-image: 
  linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(114, 9, 183, 0.03) 100%),
  radial-gradient(circle at 10% 90%, rgba(247, 37, 133, 0.05) 0%, transparent 25%);
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(67, 97, 238, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(114, 9, 183, 0.05) 0%, transparent 30%),
    linear-gradient(to right, rgba(67, 97, 238, 0.03) 0%, rgba(0, 180, 216, 0.03) 100%);
  z-index: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}

.process-step {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.process-step::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 110%;
  border-radius: 100%;
  background-color: rgba(114, 9, 183, 0.03);
  top: -30%;
  left: 5%;
  transition: var(--transition);
  z-index: -1;
}

.process-step:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-md);
}

.process-step:hover::before {
  transform: translateY(10%) scale(1.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--vibrant-gradient);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.4rem;
  margin: 0 auto 25px;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(114, 9, 183, 0.3);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
  transition: var(--transition);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: var(--glow-purple);
}

.process-step:hover .step-number::after {
  opacity: 0.8;
  transform: scale(1.2);
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
  transition: var(--transition);
}

.process-step:hover h3 {
  background: var(--vibrant-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.process-step p {
  color: var(--gray);
}

/* Contact Section - עיצוב עשיר יותר */
.contact {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: #faf8ff;
  background-image: 
  linear-gradient(135deg, rgba(114, 9, 183, 0.04) 0%, rgba(247, 37, 133, 0.03) 100%),
  radial-gradient(circle at 80% 80%, rgba(67, 97, 238, 0.05) 0%, transparent 30%);
}

.contact::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 9, 183, 0.05) 0%, transparent 70%);
  top: -250px;
  right: -250px;
}

.contact::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--vibrant-gradient);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: rgba(248, 250, 252, 0.8);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.contact-item:hover {
  transform: translateX(8px);
  background-color: rgba(248, 250, 252, 1);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(114, 9, 183, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: var(--vibrant-gradient);
  box-shadow: var(--glow-purple);
}

.contact-item:hover .contact-icon svg path {
  stroke: white;
}

.contact-text {
  font-size: 1rem;
  color: var(--gray);
  transition: var(--transition);
}

.contact-item:hover .contact-text {
  color: var(--dark);
}

/* עיצוב קישורי טלפון ומייל */
.contact-text a {
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item:hover .contact-text a {
  color: var(--purple);
  font-weight: 500;
}

.contact-form {
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(226, 232, 240, 0.7);
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--vibrant-gradient);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.contact-form:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
  color: var(--purple);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--background);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple-light);
  box-shadow: 0 0 0 4px rgba(114, 9, 183, 0.1);
  background-color: white;
}

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

.submit-btn {
  background: var(--vibrant-gradient);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(114, 9, 183, 0.3);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(114, 9, 183, 0.4);
}

.submit-btn:hover::before {
  left: 100%;
  transition: 0.7s;
}

/* Error Message Styling */
.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 5px;
  animation: fadeIn 0.3s ease;
}

.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1) !important;
}

/* Footer - פוטר מרשים יותר */
footer {
  background: linear-gradient(to top, var(--dark), #0b132b);
  color: var(--white);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(67, 97, 238, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 50%, rgba(114, 9, 183, 0.05) 0%, transparent 25%),
    radial-gradient(circle at 50% 90%, rgba(0, 180, 216, 0.05) 0%, transparent 20%);
  top: -50%;
  left: -50%;
  z-index: 0;
  animation: gradientShift 30s ease infinite;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
  position: relative;
  width: fit-content;
}

.footer-logo span {
  background: linear-gradient(135deg, var(--primary-lighter), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: var(--transition);
}

.footer-logo::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--vibrant-gradient);
  transition: var(--transition);
}

.footer-logo:hover::after {
  width: 100%;
}

.footer-about p {
  color: #a1a1aa;
  margin-bottom: 25px;
  opacity: 0.8;
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--vibrant-gradient);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 15px;
}

.footer-nav a {
  color: #a1a1aa;
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.8;
  position: relative;
  padding-right: 20px;
  display: inline-block;
}

.footer-nav a::before {
  content: '›';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple-light);
  opacity: 0;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
  opacity: 1;
  padding-right: 25px;
  text-shadow: 0 0 10px rgba(114, 9, 183, 0.5);
}

.footer-nav a:hover::before {
  opacity: 1;
  right: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.copyright p {
  opacity: 0.7;
  transition: var(--transition);
}

.copyright p:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Responsive Design - מותאם לכל המסכים */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  
  nav {
    margin-top: 20px;
  }
  
  nav ul {
    flex-direction: column;
    text-align: center;
  }
  
  nav li {
    margin: 10px 0;
  }
  
  .hero {
    padding: 130px 0 80px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    order: -1;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .question-icon {
    width: 35px;
    height: 35px;
    margin-left: 15px;
  }
  
  .faq-answer {
    margin-right: 50px;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

/* Utility Classes - קלאסים שימושיים */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* אפקטים וטיפוגרפיה מתקדמים */
.gradient-text {
  background: var(--vibrant-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.glow-text {
  text-shadow: 0 0 10px rgba(114, 9, 183, 0.5);
}

.glow-box {
  box-shadow: var(--glow-purple);
}

/* Animations and Effects */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Glass Morphism Effect - אפקט זכוכית עכשווי */
.glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Additional Effect - Floating Animation */
.float {
  animation: float 6s ease-in-out infinite;
}

/* אפקט הבהוב עדין לאלמנטים */
.pulse {
  animation: pulse 6s ease-in-out infinite;
}

/* אפקט זרימת גרדיאנט */
.flow-effect {
  background: linear-gradient(-45deg, var(--primary), var(--accent), var(--purple), var(--pink));
  background-size: 400% 400%;
  animation: flow 15s ease infinite;
}

/* עיצוב לכפתור תיק העבודות בתפריט */
.portfolio-btn {
  position: relative;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  padding-bottom: 5px;
}

.portfolio-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition);
}

.portfolio-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.portfolio-btn:hover::after {
  width: 100%;
}

/* עיצוב לכפתור המשני בסקציית Hero */
.secondary-btn {
background: rgba(114, 9, 183, 0.1);
border: none;
color: var(--purple);
padding: 15px 35px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
transition: var(--transition);
position: relative;
z-index: 1;
overflow: hidden;
box-shadow: 0 4px 10px rgba(114, 9, 183, 0.1);
}

.secondary-btn::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--vibrant-gradient);
opacity: 0;
transition: var(--transition);
z-index: -1;
}

.secondary-btn:hover {
color: white;
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(114, 9, 183, 0.3);
}

.secondary-btn:hover::before {
opacity: 1;
}

/* כפתור צף עם אייקון לתיק העבודות */
.floating-portfolio-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--vibrant-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

.floating-portfolio-btn svg {
  width: 24px;
  height: 24px;
}

.floating-portfolio-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--glow-purple);
}

/* טיפים לתיק העבודות */
.portfolio-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  animation: pulse 2s infinite;
}


/* הפחתת גובה וגודל אלמנטים במובייל */
@media (max-width: 768px) {
header {
  padding: 10px 0;
}

header.scrolled {
  padding: 8px 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.logo-text {
  font-size: 1.2rem;
}

/* התאמת תוכן לפי הסרגל החדש */
.hero {
  padding-top: 120px; /* הקטנת ריווח עליון בהירו */
}

/* אפשרות להפוך את הסרגל לקבוע בגלילה ולא מסתיר */
body {
  padding-top: 60px; /* מרווח לפי גובה הסרגל */
}

/* סגנון למנהל תפריט במובייל עם לחצן המבורגר */
.mobile-menu-toggle {
  display: block;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle span:first-child {
  top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 9px;
}

.mobile-menu-toggle span:last-child {
  top: 18px;
}

.mobile-menu-toggle.active span:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
  top: 9px;
  transform: rotate(-45deg);
}

/* תפריט קומפקטי למובייל */
.header-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

nav {
  margin-top: 0;
}

nav ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  flex-direction: column;
  padding: 10px 0;
  z-index: 1000;
}

nav ul.mobile-active {
  display: flex;
}

nav li {
  margin: 8px 0;
}
}

/* סגנון לתיקון המבנה הכללי של המכלים */
.process-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px; /* מרווח קבוע בין הטאבים */
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

/* סגנון לקלפים עצמם */
.process-tab {
  flex: 1;
  max-width: 340px;
  min-width: 280px;
  height: 380px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-tab:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ספרור הצעדים */
.step-number {
  width: 70px;
  height: 70px;
  background: var(--vibrant-gradient);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

/* תיקון לגלילת תוכן במובייל */
@media (max-width: 480px) {
.hero {
  padding-top: 100px;
}

body {
  padding-top: 55px;
}
}

@media (max-width: 992px) {
  .process-tabs {
    flex-wrap: wrap;
  }
  
  .process-tab {
    flex: 0 0 calc(50% - 20px);
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .process-tab {
    flex: 0 0 100%;
  }
}
