/*
Theme Name: Khaled Car
Author: Maria Vinakur
Description: A custom WordPress theme
Version: 1.0
*/

/* ===== בסיס ===== */
:root {
  --primary: #0a2942;
  --primary-dark: #0d3655;
  --secondary: #e84c3d;
  --secondary-light: #ff6b5b;
  --secondary-dark: #d44435;
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --yellow-50: #fefce8;
  --yellow-100: #fef9c3;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --border-radius-sm: 0.25rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-2xl: 1.5rem;
  --border-radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Heebo", Arial, sans-serif;
  direction: rtl;
  line-height: 1.5;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== כפתורים ===== */
.primary-btn {
  display: inline-block;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  color: var(--white);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius-full);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.primary-btn:hover {
  background: linear-gradient(to right, var(--secondary-dark), var(--secondary));
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(232, 76, 61, 0.6);
}

.secondary-btn {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius-full);
  transition: all 0.3s ease;
  border: 2px solid var(--white);
  cursor: pointer;
  backdrop-filter: blur(4px);
  text-align: center;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.dark-btn {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
}

.dark-btn:hover {
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  box-shadow: 0 0 20px rgba(10, 41, 66, 0.6);
}

.appointment-btn {
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.appointment-btn:hover {
  background: var(--secondary-dark);
}

.submit-btn {
  width: 100%;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  color: var(--white);
  font-weight: 700;
  padding: 1rem;
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.submit-btn:hover {
  background: linear-gradient(to right, var(--secondary-dark), var(--secondary));
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(232, 76, 61, 0.3);
}

/* ===== נאבבר ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--primary);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.navbar.scrolled {
  background-color: rgba(10, 41, 66, 0.95);
  padding: 0.5rem 0;
  backdrop-filter: blur(8px);
}

.navbar-flag-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--blue-500), var(--white), var(--blue-500));
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.logo-image {
  position: relative;
  height: 4rem;
  width: 4rem;
}

.logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.desktop-menu {
  display: none;
}

@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
    gap: 0.25rem;
    align-items: center;
  }

  .desktop-menu li a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
  }

  .desktop-menu li a:hover,
  .desktop-menu li a.active {
    color: var(--secondary);
  }
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* ===== תפריט מובייל ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translateY(-20px);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.close-menu-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.mobile-menu ul li a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: var(--secondary);
}

.mobile-menu ul li a.appointment-btn {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.25rem;
}

/* ===== הירו סקשן ===== */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 41, 66, 0.7), rgba(10, 41, 66, 0.5), rgba(10, 41, 66, 0.3));
  z-index: 1;
}

.hero-flag-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, var(--blue-500), var(--white), var(--blue-500));
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.particle {
  position: absolute;
  border-radius: 50%;
}

.particle-1 {
  top: 25%;
  left: 25%;
  width: 8px;
  height: 8px;
  background-color: var(--white);
  animation: pulse 3s infinite;
}

.particle-2 {
  top: 33%;
  right: 33%;
  width: 12px;
  height: 12px;
  background-color: var(--secondary);
  animation: ping 3s infinite;
}

.particle-3 {
  bottom: 25%;
  right: 25%;
  width: 8px;
  height: 8px;
  background-color: var(--white);
  animation: pulse 3s infinite;
}

.particle-4 {
  bottom: 33%;
  left: 33%;
  width: 12px;
  height: 12px;
  background-color: var(--secondary);
  animation: ping 3s infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.5s 0.3s both;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.5s 0.5s both;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 5rem;
  }
}

.gradient-text {
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: scaleIn 0.5s 0.7s both;
}

.hero-content p {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.5s 0.9s both;
}

@media (min-width: 768px) {
  .hero-content p {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.5s 1.1s both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: fadeIn 0.5s 1.3s both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.875rem;
}

.trust-badge-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green-500);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--white);
  animation: bounce 2s infinite;
}

.diagonal-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: var(--white);
  transform: skewY(-3deg);
  transform-origin: left;
  z-index: 2;
}

/* ===== שירותים סקשן ===== */
.services-section {
  position: relative;
  padding: 6rem 1rem;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  color: var(--white);
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: url("images/pattern-israel.png");
  opacity: 0.05;
  z-index: 1;
}

.pattern-overlay.light {
  background-image: url("images/pattern-israel-light.png");
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

.section-header .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  border-radius: var(--border-radius-full);
}

.section-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gradient-text-light {
  background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  text-align: center;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
  animation-play-state: paused;
}

.service-card.animate {
  animation-play-state: running;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
}

.service-icon {
  width: 5rem;
  height: 5rem;
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  transform: rotate(6deg) scale(1.1);
}

.service-icon-svg {
  width: 3rem;
  height: 3rem;
  color: var(--white);
}

.blue {
  background: linear-gradient(to bottom right, var(--blue-500), var(--blue-700));
}

.red {
  background: linear-gradient(to bottom right, var(--secondary), var(--secondary-dark));
}

.green {
  background: linear-gradient(to bottom right, var(--green-500), #1a9f44);
}

.purple {
  background: linear-gradient(to bottom right, var(--purple-500), #7928ca);
}

.yellow {
  background: linear-gradient(to bottom right, var(--yellow-500), #d97706);
}

.cyan {
  background: linear-gradient(to bottom right, var(--cyan-500), #0891b2);
}

.orange {
  background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.card-divider {
  width: 3rem;
  height: 4px;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  border-radius: var(--border-radius-full);
  margin: 1rem auto;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
}

.section-footer {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s 0.6s forwards;
}

.geometric-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  display: flex;
  overflow: hidden;
  z-index: 2;
}

.geometric-divider div {
  height: 4rem;
  width: 4.166%;
  background-color: var(--white);
}

.geometric-divider div:nth-child(odd) {
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.geometric-divider div:nth-child(even) {
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}

/* ===== סטטיסטיקה סקשן ===== */
.stats-section {
  padding: 5rem 1rem;
  background-color: var(--white);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background-color: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
  animation-play-state: paused;
}

.stat-card.animate {
  animation-play-state: running;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--shadow-2xl);
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accent-text {
  color: var(--secondary);
}

.stat-label {
  color: var(--gray-600);
  font-size: 1.125rem;
}

/* ===== תהליך העבודה סקשן ===== */
.process-section {
  padding: 6rem 1rem;
  background-color: var(--white);
  position: relative;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--gray-200);
  transform: translateY(-50%);
  display: none;
}

@media (min-width: 768px) {
  .process-line {
    display: block;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step {
  position: relative;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
  animation-play-state: paused;
}

.process-step.animate {
  animation-play-state: running;
}

.process-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.process-icon-svg {
  width: 2rem;
  height: 2rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.process-arrow {
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  color: var(--gray-300);
  display: none;
}

@media (min-width: 768px) {
  .process-arrow {
    display: block;
  }
}

.process-note {
  margin-top: 4rem;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s 0.6s forwards;
}

.note-icon {
  background-color: var(--green-100);
  color: var(--green-600);
  padding: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.note-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.note-content p {
  color: var(--gray-600);
}

.dotted-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  overflow: hidden;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  opacity: 0.7;
  animation: pulse 2s infinite;
}

.dot:nth-child(even) {
  animation-delay: 0.5s;
}

/* ===== למה לבחור בנו סקשן ===== */
.why-us-section {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.bg-circles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bg-circle-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
  filter: blur(100px);
  transform: translate(-50%, -50%);
}

.bg-circle-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: linear-gradient(to right, rgba(239, 68, 68, 0.1), rgba(234, 179, 8, 0.1));
  filter: blur(100px);
  transform: translate(50%, 50%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-us-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
  animation-play-state: paused;
}

.why-us-card.animate {
  animation-play-state: running;
}

.why-us-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.why-us-icon {
  width: 5rem;
  height: 5rem;
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.5s ease;
}

.why-us-card:hover .why-us-icon {
  transform: rotate(12deg) scale(1.1);
}

.why-us-icon-svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--white);
}

.why-us-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.why-us-card p {
  color: rgba(255, 255, 255, 0.9);
}

.line-divider {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  z-index: 2;
}

.line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  flex-grow: 1;
  max-width: 10rem;
}

.line-icon {
  margin: 0 1rem;
  color: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
}

/* ===== המלצות סקשן ===== */
.testimonials-section {
  padding: 6rem 1rem;
  background-color: var(--white);
  position: relative;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s forwards;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-card {
  background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
  border-radius: var(--border-radius-xl);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.testimonial-quote {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.2);
  font-size: 7.5rem;
  line-height: 1;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .testimonial-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.testimonial-image {
  width: 7rem;
  height: 7rem;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonial-image {
    margin: 0;
  }
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .testimonial-text {
    text-align: right;
  }
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .testimonial-rating {
    justify-content: flex-start;
  }
}

.star-icon {
  color: var(--yellow-500);
  fill: var(--yellow-500);
}

.testimonial-text p {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-author p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-style: normal;
}

.testimonial-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--blue-300);
  font-size: 0.875rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .testimonial-location {
    justify-content: flex-start;
  }
}

.testimonial-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .testimonial-controls {
    flex-direction: row;
    justify-content: space-between;
  }
}

.testimonial-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  width: 3rem;
}

.testimonial-arrows {
  display: flex;
  gap: 0.5rem;
}

.testimonial-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.testimonial-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

/* ===== גלריה סקשן ===== */
.gallery-section {
  padding: 6rem 1rem;
  background-color: var(--gray-50);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 18rem;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
  animation-play-state: paused;
}

.gallery-item.animate {
  animation-play-state: running;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 41, 66, 0.9), rgba(10, 41, 66, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  color: var(--white);
  text-align: center;
  transform: translateY(10px);
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-zoom {
  transform: translateY(0);
}

.gallery-zoom i {
  display: block;
  margin: 0 auto 0.5rem;
}

.gallery-button {
  text-align: center;
  margin-top: 4rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s 0.6s forwards;
}

/* ===== מותגי רכב סקשן ===== */
.brands-section {
  padding: 6rem 1rem;
  background-color: var(--white);
  position: relative;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.brand-item {
  background-color: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.4s forwards;
  animation-play-state: paused;
}

.brand-item.animate {
  animation-play-state: running;
}

.brand-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

.brand-item img {
  max-width: 80%;
  max-height: 5rem;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
}

/* ===== צור קשר סקשן ===== */
.contact-section {
  padding: 6rem 1rem;
  background-color: var(--gray-50);
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateX(-30px);
  opacity: 0;
  animation: fadeInRight 0.6s forwards;
}

.quick-contact-form {
  padding: 2rem;
}

.quick-contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(10, 41, 66, 0.1);
}

.form-success {
  text-align: center;
  padding: 2rem;
  display: none;
}

.form-success.active {
  display: block;
  animation: fadeIn 0.5s forwards;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--green-100);
  color: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--gray-600);
}

.contact-info-container {
  transform: translateX(30px);
  opacity: 0;
  animation: fadeInLeft 0.6s forwards;
}

.contact-info {
  background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  color: var(--white);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.8);
}

.opening-hours {
  margin-top: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
}

.opening-hours h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* ===== קריאה לפעולה סקשן ===== */
.cta-section {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 48rem;
  text-align: right;
  position: relative;
  z-index: 2;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

/* ===== פוטר ===== */
.footer {
  background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
  color: var(--white);
  padding-top: 5rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-column .underline {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  border-radius: var(--border-radius-full);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 4rem;
  width: 4rem;
  object-fit: contain;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary);
  transform: scale(1.1);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-column ul li a::before {
  content: "›";
  margin-left: 0.5rem;
}

.contact-info li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info li i {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== וואטסאפ כפתור ===== */
.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background-color: #25d366;
  color: var(--white);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

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

/* ===== פלואטינג נאב ===== */
.floating-nav {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius-full);
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-xl);
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-nav.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.floating-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-full);
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-btn {
  background: linear-gradient(to right, var(--blue-500), var(--blue-700));
}

.appointment-btn {
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
}

.floating-nav-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* ===== לייטבוקס ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 101;
}

.lightbox-close:hover {
  background-color: var(--secondary);
  transform: scale(1.1);
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

/* ===== אנימציות ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}