:root {
  --bg-100:#070708;
  --bg-90:#0b0b0b;
  --card:#0f1113;
  --accent:#e50914;
  --muted:rgba(255,255,255,0.65);
  --glass: rgba(255,255,255,0.03);
  --maxW:1200px;
  --radius:14px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/images/project1.png');
  background-size: cover;
  background-position: center;
  opacity: 0.50;
  z-index: 0;
}
html {
  height: 100%;
  width: 100%;
  margin: 0;
  position: relative;
}

body,
#about,
#services,
#clients,
#projects,
#booking,
.reviews-gallery,
.site-footer {
  background: #000;
  position: relative;
  z-index: 1;
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  font-family: "Alef", "Rubik", system-ui, sans-serif;
  color: #fff;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  padding: 0;
}

.nav {transition: height 0.2s ease, padding-top 0.2s ease; position: fixed; top: 0; left: 0; right: 0; width: 100vw; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; background: #070708; z-index: 9999; padding-top: 0 !important; margin-top: 0 !important; }

.nav {
  padding-top: 0 !important;
  margin-top: 0 !important;
}


.nav-inner {
  width: 100%;
  max-width: var(--maxW);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 12px;
  background: transparent;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(229,9,20,0.15);
  background: none;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.logo-text .name { font-weight: 800; font-size: 1.05rem; }
.logo-text .sub { font-size: .85rem; color: var(--muted); margin-top: 2px; }

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

.nav-links a {
  white-space: nowrap;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all .18s ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.03);
  transform: translateY(-3px);
}

.nav-links .cta-link {
  background: linear-gradient(90deg,var(--accent),#b70a10);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(229,9,20,0.12);
}



.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(229,9,20,0.15);
  background: none;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.logo-text .name { font-weight: 800; font-size: 1.05rem; }
.logo-text .sub { font-size: .85rem; color: var(--muted); margin-top: 2px; }

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  white-space: nowrap;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all .18s ease;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.03);
  transform: translateY(-3px);
}
.nav-links .cta-link {
  background: linear-gradient(90deg,var(--accent),#b70a10);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(229,9,20,0.12);
}

.hero {
  position: relative;
  height: 105vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px;
  background: #000;
}
.hero-center { position: relative; z-index: 3; max-width: 1100px; text-align: center; padding: 20px; }
.hero-title {
  font-family: "Rubik", sans-serif;
  font-size: 48px;
  letter-spacing: 0.2px;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.hero-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 880px;
  margin: 0 auto 22px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(90deg,var(--accent),#b70a10);
  color: #111;
  box-shadow: 0 12px 40px rgba(229,9,20,0.12);
}
.btn.ghost {
  background: #e8e1e1;
  border: 1px solid rgba(255,255,255,0.05);
  color: black;
}

.section { padding: 80px 20px; }
.container { max-width: var(--maxW); margin: 0 auto; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.text h2 { font-family: "Rubik", sans-serif; font-size: 28px; color: var(--accent); margin-bottom: 12px; }
.text p { color: var(--muted); line-height: 1.6; }
.visual { height: 350px; border-radius: 12px; background-size: cover; background-position: center; box-shadow: 0 20px 50px rgba(0,0,0,0.6); }

#services {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #3b0a0a 50%, #0a0a0a 100%);
}

#services .section-title {
  margin-bottom: 60px;
  margin-top: -20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 20px;
  margin-top: 26px;
}
.card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .45s, box-shadow .45s;
  padding-bottom: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(229,9,20,0.12);
}
.card-media { height: 160px; background-size: cover; background-position: center; }
.card-content { padding: 20px; }

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 28px;
  align-items: start;
}
.booking-left h2 { font-family: "Rubik", sans-serif; color: var(--accent); }
.cal-embed {
  width: 100%;
  height: 520px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
}

.site-footer {
  padding: 40px 20px;
  background: #000;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  max-width: var(--maxW);
  margin: 0 auto;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s, transform .9s; }
.reveal.visible { opacity: 1; transform: none; }

.clients-section,
.projects-section,
.testimonials-section {
  background: #000;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #ff2e2e;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}
.section-subtitle { color: #bbb; font-size: 1.1rem; margin-bottom: 50px; }

.client-card h3 { color:#fff; margin-bottom:8px; font-size:1.2rem; }
.client-card p { color:#aaa; font-size:0.9rem; }
.client-card:hover { transform: translateY(-8px); box-shadow: 0 0 25px rgba(255,0,0,0.4); }

.carousel { width:100px; height:180px; margin:50px auto; perspective:900px; }
.carousel-track { width:100%; height:100%; position:relative; transform-style:preserve-3d; animation:rotate 20s linear infinite; }
.carousel-item { position:absolute; width:160px; height:80px; left:50%; top:50%; transform-origin:0 0 0; }
.carousel-item img { width:100%; height:auto; object-fit:contain; }
.carousel-item:nth-child(1){transform:rotateY(0deg) translateZ(300px);}
.carousel-item:nth-child(2){transform:rotateY(60deg) translateZ(300px);}
.carousel-item:nth-child(3){transform:rotateY(120deg) translateZ(300px);}
.carousel-item:nth-child(4){transform:rotateY(180deg) translateZ(300px);}
.carousel-item:nth-child(5){transform:rotateY(240deg) translateZ(300px);}
.carousel-item:nth-child(6){transform:rotateY(300deg) translateZ(300px);}
@keyframes rotate { from{transform:rotateY(0deg);} to{transform:rotateY(360deg);} }

.testimonial {
  min-width: 300px;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.testimonial:hover { transform: translateY(-10px); }
.testimonial p { font-size: 1rem; color: #ccc; margin-bottom: 15px; line-height: 1.5; }
.testimonial h4 { font-size: 1.1rem; color: #fff; font-weight: 600; }

.projects-section {
  background: #000;
  color: white;
  padding: 80px 20px;
  text-align: center;
  overflow-x: auto;
}
.projects-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 20px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.project {
  flex: 0 0 auto;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  transition: transform 0.3s;
}
.project:hover { transform: translateY(-10px); }
.project video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: -30px;
  color: #ddd;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.about-text p:last-child { margin-bottom: 0; }


@media(max-width:980px){
  .split,.booking-wrap{grid-template-columns:1fr}
  .hero-title{font-size:36px}
  .hero{height:86vh}
  .nav-inner{padding:6px 8px}
}
@media(max-width:620px){
  .nav-inner{gap:8px}
  .nav-links{display:none}
}
@media(max-width:600px){
  .grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .grid img { height: auto; }
}

.site-footer {
  position: relative;
  background: #070708;
  overflow: hidden;
}

.footer-grid {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  background: #070708;
  color: white;
  padding: 40px 0;
  overflow: hidden;
  text-align: center;
}

.footer-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-grid .muted {
  color: rgba(255, 255, 255, 0.6);
}

.social-links a {
  color: white;
  font-size: 28px;
  text-shadow: 0 0 10px #e50914, 0 0 20px #e50914, 0 0 40px #e50914;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #e50914;
  text-shadow: 0 0 15px #e50914, 0 0 30px #e50914, 0 0 60px #e50914;
  transform: scale(1.15);
}

.site-footer .particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#booking {
  background: linear-gradient(180deg, #1a0000, #300000, #1a0000);
  position: relative;
  z-index: 1;
}

#booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(229,9,20,0.15), transparent 70%);
  z-index: 0;
}

#booking .container {
  position: relative;
  z-index: 2;
}

.timeline-horizontal {
  background: var(--bg-90);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.timeline-horizontal h2 {
  font-size: 2rem;
  margin-bottom: 60px;
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.timeline-row::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 3px;
  background: rgba(229, 9, 20, 0.2);
  box-shadow: 0 0 20px rgba(255, 0, 70, 0.5);
  z-index: 1;
}

.step {
  position: relative;
  width: 22%;
  min-width: 200px;
  text-align: center;
  direction: rtl;
  z-index: 2;
}

.circle {
  background: rgba(10, 10, 10, 0.8);
  border: 2px solid rgba(255, 0, 70, 0.5);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 15px rgba(255, 0, 70, 0.3);
}

.neon-icon {
  font-size: 2.5rem;
  color: #ff2f7a;
  text-shadow:
    0 0 5px #ff2f7a,
    0 0 10px #ff2f7a,
    0 0 20px #ff2f7a,
    0 0 40px #ff2f7a,
    0 0 80px #ff2f7a;
  animation: pulseNeon 2.5s infinite alternate;
}

@keyframes pulseNeon {
  0% {
    opacity: 0.8;
    text-shadow:
      0 0 5px #ff2f7a,
      0 0 15px #ff2f7a,
      0 0 30px #ff2f7a;
  }
  100% {
    opacity: 1;
    text-shadow:
      0 0 10px #ff2f7a,
      0 0 25px #ff2f7a,
      0 0 50px #ff2f7a;
  }
}

.step h3 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .timeline-row {
    flex-direction: column;
    align-items: center;
  }

  .timeline-row::before {
    display: none;
  }

  .step {
    width: 100%;
    margin-bottom: 50px;
  }
}

#reviews {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.reviews-gallery,
.grid {
  background: transparent;
}

#reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(229, 9, 20, 0.08), transparent 70%);
  z-index: 0;
}

.reviews-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1100px;
}

.grid div {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid div:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 35px rgba(229, 9, 20, 0.25);
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.grid div:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  background: white;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 820px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 65%;
    background: rgba(10, 10, 10, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}

.accessibility-footer {
  margin-top: 10px;
  text-align: center;
}

.accessibility-footer a {
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #111;
  margin: 10% auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  color: #fff;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

form {
    background-color: #111; /* מעט אפור כהה */
    padding: 20px;
    border: 2px solid #e10600; /* אדום */
    border-radius: 8px;
    max-width: 400px;
    margin: 40px auto;
  }

  label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #e10600; /* אדום */
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1.5px solid #e10600;
    border-radius: 4px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    resize: vertical;
  }

  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="email"]:focus,
  textarea:focus {
    outline: none;
    border-color: #fff; /* לבן בהיר בעת פוקוס */
    background-color: #222;
  }

  .form-button {
    font-weight: bold;
    background-color: #e10600; /* אדום */
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
  }

  button:hover {
    background-color: #a80400; /* אדום כהה */
  }

  #responseMessage {
    max-width: 400px;
    margin: 20px auto;
    font-size: 18px;
    font-weight: bold;
    color: #e10600; /* אדום */
    text-align: center;
  }

   .response-message {
    background-color: #111; /* רקע כהה */
    color: #e10600; /* אדום */
    border: 2px solid #e10600;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    max-width: 400px;
    margin: 30px auto;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
  }

.credit{
  margin-top: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
