/* ===========================================
   Webloom - Stylesheet
   עיצוב: ירוק טבעי-מודרני עם אקצנט אפרסק
   =========================================== */

:root {
  /* צבעים ראשיים - ירוק */
  --green-darkest: #0f2e1f;
  --green-dark: #1a4d33;
  --green: #2d7a4f;
  --green-mid: #4a9968;
  --green-light: #7fb88e;
  --green-lighter: #b8d9c0;
  --green-mint: #d4ebd9;
  --green-bg: #eef6f0;

  /* רקעים בהירים */
  --bg: #fafaf7;
  --bg-cream: #f5f1e8;
  --bg-soft: #f9f6ef;
  --white: #ffffff;

  /* צבע משני - אפרסק חם */
  --peach: #f5946d;
  --peach-light: #fbc4a8;
  --peach-soft: #fde4d4;
  --peach-dark: #d97852;

  /* טקסט */
  --text: #1a2b22;
  --text-soft: #3f5246;
  --text-muted: #6b7d72;
  --text-light: #9aa89f;

  /* פונטים */
  --font-display: 'Frank Ruhl Libre', 'Times New Roman', serif;
  --font-body: 'Heebo', system-ui, -apple-system, sans-serif;

  /* גדלים */
  --max-width: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;

  /* מעברים */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* רקע ובסיס */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  direction: rtl;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

img, svg {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================================
   ניווט
   =========================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(45, 122, 79, 0.08);
  transition: all 0.3s var(--ease);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--green-dark);
  letter-spacing: -0.5px;
  direction: ltr;
}

.logo-text {
  display: inline-flex;
}

.logo-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  animation: bloomIn 0.6s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.06s);
}

.logo-leaf {
  width: 22px;
  height: 22px;
  color: var(--green);
  opacity: 0;
  transform: scale(0) rotate(-30deg);
  animation: leafBloom 0.8s var(--ease-bounce) forwards;
  animation-delay: 0.6s;
}

@keyframes bloomIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes leafBloom {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-links a.active {
  color: var(--green-dark);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--peach);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================================
   סקשן ראשי - Hero
   =========================================== */

.hero {
  position: relative;
  padding: 80px 24px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-decoration svg {
  position: absolute;
  color: var(--green-light);
  opacity: 0.12;
}

.leaf-1 {
  width: 280px;
  height: 280px;
  top: 5%;
  left: -60px;
  transform: rotate(-25deg);
  animation: floatLeaf 8s ease-in-out infinite;
}

.leaf-2 {
  width: 180px;
  height: 180px;
  top: 40%;
  right: -40px;
  transform: rotate(45deg);
  animation: floatLeaf 10s ease-in-out infinite reverse;
}

.leaf-3 {
  width: 140px;
  height: 140px;
  bottom: 5%;
  left: 15%;
  transform: rotate(160deg);
  animation: floatLeaf 12s ease-in-out infinite;
  opacity: 0.08 !important;
}

@keyframes floatLeaf {
  0%, 100% { transform: rotate(var(--rot, -25deg)) translateY(0); }
  50% { transform: rotate(var(--rot, -25deg)) translateY(-20px); }
}

.circle-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: var(--green-mint);
  top: -100px;
  right: 10%;
  opacity: 0.5;
}

.circle-2 {
  width: 300px;
  height: 300px;
  background: var(--peach-soft);
  bottom: -50px;
  left: -50px;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg);
  color: var(--green-dark);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--green-lighter);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.2s forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}

.badge-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--green-darkest);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease) forwards;
}

.hero-title .line-1 { animation-delay: 0.4s; }
.hero-title .line-2 { animation-delay: 0.55s; }
.hero-title .line-3 { animation-delay: 0.7s; }
.hero-title .line-4 { animation-delay: 0.85s; }

.hero-title em {
  font-style: normal;
  color: var(--peach-dark);
}

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

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 1s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 1.15s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  border: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(-4px);
}

.btn-primary {
  background: var(--peach);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(245, 148, 109, 0.3);
}

.btn-primary:hover {
  background: var(--peach-dark);
  box-shadow: 0 6px 20px rgba(245, 148, 109, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-lighter);
}

.btn-ghost:hover {
  background: var(--green-bg);
  border-color: var(--green-light);
}

.btn-large {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 1.3s forwards;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num.stat-gift {
  color: var(--peach-dark);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--green-lighter);
}

/* ===========================================
   סקשן ערכים
   =========================================== */

.values {
  padding: 100px 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--peach-dark);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--green-darkest);
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--green-mint);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to left, var(--green), var(--peach));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(45, 122, 79, 0.08);
  border-color: var(--green-light);
}

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

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--green-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green);
  transition: all 0.3s var(--ease);
}

.value-card:hover .value-icon {
  background: var(--peach-soft);
  color: var(--peach-dark);
  transform: rotate(-5deg) scale(1.05);
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-darkest);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ===========================================
   סקשן תהליך
   =========================================== */

.process {
  padding: 100px 0;
  background: var(--bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.step {
  position: relative;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--green-mint);
  transition: all 0.3s var(--ease);
}

.step:hover {
  border-color: var(--green-light);
  box-shadow: 0 12px 30px rgba(45, 122, 79, 0.06);
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-darkest);
  margin-bottom: 8px;
}

.step p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ===========================================
   סקשן קריאה לפעולה
   =========================================== */

.cta-section {
  padding: 100px 24px;
}

.cta-box {
  background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-decoration {
  position: absolute;
  inset: 0;
  color: var(--green-mint);
  opacity: 0.15;
  pointer-events: none;
}

.cta-decoration svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
}

/* ===========================================
   כותרת עמוד פנימי
   =========================================== */

.page-header {
  position: relative;
  padding: 80px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.page-decoration {
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--green-darkest);
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}

.page-title em {
  font-style: normal;
  color: var(--peach-dark);
}

.page-sub {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================================
   עמוד שירותים
   =========================================== */

.services-list {
  padding: 60px 0 80px;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--green-mint);
}

.service-item:last-child {
  border-bottom: none;
}

.service-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
  opacity: 0.6;
}

.service-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green-darkest);
  margin-bottom: 4px;
}

.service-tagline {
  font-size: 1rem;
  color: var(--peach-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.service-desc {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px 24px;
}

.service-features li {
  position: relative;
  padding-right: 24px;
  font-size: 15px;
  color: var(--text-soft);
}

.service-features li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d7a4f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.service-visual {
  color: var(--green-mid);
  opacity: 0.8;
}

/* ===========================================
   עמוד יצירת קשר
   =========================================== */

.contact-section {
  padding: 60px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-methods h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-darkest);
  margin-bottom: 8px;
}

.methods-intro {
  color: var(--text-soft);
  margin-bottom: 24px;
  font-size: 15px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--green-mint);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  position: relative;
}

.contact-method:hover {
  border-color: var(--green-light);
  background: var(--green-bg);
  transform: translateX(-4px);
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.whatsapp .method-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.phone .method-icon {
  background: var(--peach-soft);
  color: var(--peach-dark);
}

.email .method-icon {
  background: var(--green-bg);
  color: var(--green);
}

.method-icon svg {
  width: 24px;
  height: 24px;
}

.method-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.method-value {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
  direction: ltr;
  text-align: right;
}

.method-arrow {
  width: 20px;
  height: 20px;
  color: var(--text-light);
  transition: all 0.3s var(--ease);
  transform: scaleX(-1);
}

.contact-method:hover .method-arrow {
  color: var(--green);
  transform: scaleX(-1) translateX(-4px);
}

/* טופס */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--green-mint);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--peach-soft) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-darkest);
  margin-bottom: 8px;
}

.form-intro {
  color: var(--text-soft);
  margin-bottom: 28px;
  font-size: 15px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--green-mint);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: all 0.2s var(--ease);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--green-bg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--green-bg);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
  font-weight: 500;
  margin-top: 16px;
  animation: fadeInUp 0.5s var(--ease);
}

.form-success svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===========================================
   פוטר
   =========================================== */

.footer {
  background: var(--green-darkest);
  color: var(--green-mint);
  padding: 60px 0 32px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  direction: ltr;
}

.footer-tagline {
  color: var(--green-lighter);
  font-size: 15px;
  max-width: 300px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: var(--green-lighter);
  font-size: 15px;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
  direction: ltr;
  text-align: right;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--peach-light);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(180, 217, 192, 0.15);
  text-align: center;
  color: var(--green-light);
  font-size: 13px;
}

/* ===========================================
   אנימציית גלילה
   =========================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   כפתור ווצאפ צף
   =========================================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  z-index: 99;
  transition: all 0.3s var(--ease);
  animation: floatIn 0.6s var(--ease-bounce) 1.5s backwards;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: 1;
  animation: whatsappPulse 2.5s ease-out infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* ===========================================
   רספונסיבי - מובייל
   =========================================== */

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 65px;
    right: 0;
    left: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 24px;
    border-bottom: 1px solid var(--green-mint);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--green-mint);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    width: 100%;
  }

  .hero {
    padding: 40px 20px 60px;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 50px;
  }

  .stat-divider {
    display: none;
  }

  .values,
  .process,
  .cta-section {
    padding: 60px 0;
  }

  .cta-box {
    padding: 50px 24px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .service-number {
    font-size: 2.5rem;
  }

  .service-visual {
    max-width: 160px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-tagline {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 16px;
    left: 16px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* כיבוד העדפת תנועה מופחתת */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
