:root {
  /* הפלטה שביקשת */
  --c-deepest: #000035; /* רקע ראשי */
  --c-dark: #000042; /* רקע משני */
  --c-mid: #000053; /* כרטיסיות */
  --c-light: #000068; /* גבולות ואלמנטים */
  --c-accent: #1c1c84; /* כפתורים כהים */
  --c-deep-dark: #000919;

  /* צבעים לקריאות */
  --c-white: #ffffff;
  --c-gray: #e0e0e0;
  --c-highlight: #4d94ff; /* תכלת בולט */
  --c-blue-highlight: #01ffd5; /* כחול בולט */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Heebo", sans-serif;
}

body {
  background-color: var(--c-deepest);
  color: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(0, 0, 53, 0.95);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* עדכון ל-CSS הקיים של .logo והוספת עיצוב לתמונה */
.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* רווח בין הלוגו לטקסט */
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-highlight);
  text-transform: uppercase;
  text-decoration: none; /* ביטול קו תחתון כי הפכנו את זה לקישור */
}

.nav-logo-img {
  height: 40px;
  width: auto;
  /* הופך את הצבעים ללבן בוהק */
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--c-highlight);
}

.btn-nav {
  background: var(--c-highlight);
  color: var(--c-deepest);
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  height: 100vh;
  /* 'top center' keeps the head visible and in the clear zone */
  background: url("Assets/5.jpeg") top center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    /* The top 50% is completely clear (original image) */ rgba(0, 0, 53, 0.4)
      85%,
    /* A very soft blue aura starts low down */ var(--c-deepest) 100%
      /* Blends seamlessly into the next section */
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

.highlight-text {
  color: var(--c-highlight);
}

.hero-sub {
  font-size: 1.4rem;
  color: var(--c-gray);
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--c-highlight);
  color: var(--c-deepest);
  box-shadow: 0 5px 20px rgba(77, 148, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(77, 148, 255, 0.6);
}

/* Sections General */
.section-dark {
  background-color: var(--c-deepest);
  padding: 5rem 5%;
}
.section-light {
  background-color: var(--c-dark);
  padding: 5rem 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.center-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.center-sub {
  text-align: center;
  color: var(--c-highlight);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* About Section Split */
.split-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.split-content {
  flex: 1;
  min-width: 300px;
}
.split-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.split-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: -20px 20px 0 var(--c-light);
}

.sub-title {
  color: var(--c-highlight);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.section-title-left {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.split-content p {
  color: var(--c-gray);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.split-content,
.split-image {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out; /* מעבר חלק של שנייה */
}

/* מצב סופי: גלוי ובמקום (ה-JS יוסיף את המחלקה הזו) */
.split-layout.visible .split-content,
.split-layout.visible .split-image {
  opacity: 1;
  transform: translateY(0);
}

/* עיצוב למספרים כדי שיראו טוב */
.number-wrapper {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--c-highlight);
  display: inline-block;
  min-width: 60px; /* מונע קפיצות כשהמספר משתנה */
}

.stats-row {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  border-top: 1px solid var(--c-light);
  padding-top: 2rem;
}
.stat {
  display: flex;
  flex-direction: column;
}
.number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--c-highlight);
}
.label {
  font-size: 0.9rem;
  color: var(--c-gray);
}

/* Method Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--c-mid);
  padding: 2.5rem;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-10px);
  background: var(--c-light);
  border-color: var(--c-highlight);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(77, 148, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--c-highlight);
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card p {
  color: var(--c-gray);
}

/* Image Scroller (New) */
.image-scroller-container {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  position: relative;
}

/* הוספת אפקט של "החשכה" בצדדים כדי שיראה שהתמונות נעלמות */
.image-scroller-container::before,
.image-scroller-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.image-scroller-container::before {
  left: 0;
  background: linear-gradient(to right, var(--c-deepest), transparent);
}
.image-scroller-container::after {
  right: 0;
  background: linear-gradient(to left, var(--c-deepest), transparent);
}

.image-scroller-track {
  display: flex;
  width: max-content;
}

.result-img {
  margin: 0 15px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 300px; /* רוחב קבוע לתמונה */
  height: 400px; /* גובה קבוע */
  flex-shrink: 0;
  border: 2px solid var(--c-light);
}

.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.result-img:hover img {
  transform: scale(1.1);
}

.img-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--c-highlight);
  color: var(--c-deepest);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Showcase Banner */
.showcase-section {
  height: 50vh;
  background: fixed url("Assets/12.png") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.showcase-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 35, 0.7);
}

.showcase-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.showcase-content h2 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
}

/* Pricing */
.pricing-card-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: linear-gradient(145deg, var(--c-mid), var(--c-dark));
  padding: 4rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid var(--c-highlight);
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.price {
  font-size: 4.5rem;
  font-weight: 900;
  margin: 1rem 0;
  line-height: 1;
}
.currency {
  font-size: 2rem;
}
.per-month {
  font-size: 1.2rem;
  color: var(--c-gray);
  font-weight: normal;
}
.market-price {
  text-decoration: line-through;
  color: #888;
  margin-bottom: 2rem;
}
.bonus-tag {
  color: #ffdd57;
  font-weight: bold;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
}

.features-list {
  text-align: right;
  margin-bottom: 3rem;
  display: inline-block;
}
.features-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.features-list i {
  color: var(--c-highlight);
  margin-left: 10px;
}

.btn-full {
  width: 100%;
  background: var(--c-highlight);
  color: var(--c-deepest);
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  display: block;
}

/* Contact */
.contact-container {
  text-align: center;
  max-width: 600px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-form input,
.contact-form textarea {
  padding: 15px;
  background: var(--c-mid);
  border: 1px solid var(--c-light);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-highlight);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.social-area {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-btn {
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--c-mid);
  transition: 0.3s;
}
.social-btn:hover {
  background: var(--c-light);
}
.whatsapp {
  color: #25d366;
}
.instagram {
  color: #e1306c;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #000020;
  font-size: 0.9rem;
  color: #888;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  /* הופך את הצבעים ללבן בוהק */
  filter: brightness(0) invert(1);
}
.footer-logo-img {
  height: 60px; /* לוגו מעט גדול יותר בתחתית */
  width: auto;
  /* הופך את הצבעים ללבן בוהק */
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.footer-logo-img:hover {
  filter: none; /* מחזיר צבע מלא במעבר עכבר */
  opacity: 1;
}

/* Mobile */
/* --- Mobile Optimization (Updated) --- */
@media (max-width: 768px) {
  /* 1. Global Section Spacing */
  .section-dark,
  .section-light {
    padding: 4rem 1rem; /* More vertical space, standard side space */
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }

  /* 2. Navbar */
  .navbar {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: var(--c-deepest);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: 0.4s;
    border-bottom: 1px solid var(--c-highlight);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .hamburger {
    display: block;
  }

  /* 3. Hero & Titles */
  /* NEW: Better mobile image visibility */

  .hero {
    /* Shorter height = Less zoom = We see more of the picture */
    height: 65vh;
    min-height: 500px;
    background-position: top center;
  }

  /* Since the overlay is transparent now, we add a slight shadow to text 
     to make sure it's readable over the bright parts of the image */
  .hero h1 {
    font-size: 2.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  }
  .section-title-left,
  .center-title {
    font-size: 2.2rem;
    text-align: center;
  }
  .sub-title,
  .center-sub {
    text-align: center;
  }

  /* 4. About Section - Fix alignment */
  .split-layout {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .split-content {
    text-align: center;
    padding: 0 1rem;
  }
  .split-content p {
    text-align: center;
  }
  .split-image {
    padding: 0 1rem;
  }
  .split-image img {
    box-shadow: -10px 10px 0 var(--c-light);
  }
  .stats-row {
    justify-content: center;
    gap: 2rem;
  }

  /* --- 5. CONTACT SECTION FIXES (MAJOR UPDATE) --- */

  /* Add specific padding to the container holding the form */
  .contact-container {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem; /* Adds 24px padding on Left and Right */
    margin: 0 auto;
    box-sizing: border-box; /* Critical: keeps padding inside width */
  }

  .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  /* Force inputs and buttons to respect the container padding */
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't expand width */
    margin-bottom: 15px; /* Space between elements */
  }

  /* Social Buttons Fix */
  .social-area {
    display: flex;
    flex-direction: column; /* Stack them */
    width: 100%;
    gap: 15px;
    margin-top: 10px;
    box-sizing: border-box;
  }

  .social-btn {
    width: 100%; /* Full width of the container (minus padding) */
    text-align: center;
    box-sizing: border-box;
    display: block;
  }

  /* Pricing Fix */
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  .features-list {
    text-align: center;
    padding: 0;
  }
}

/* Basic Section Styling */
.section-dark {
  color: white;
  padding: 60px 0;
  overflow: hidden; /* Critical for hiding the scroll bar */
}

.center-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.center-sub {
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.center-sub-2 {
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* SCROLLER CONTAINER */
.image-scroller-container {
  width: 100%;
  overflow: hidden; /* Hides parts that are out of screen */
  position: relative;
}

/* TRACK - This moves */
.image-scroller-track {
  display: flex;
  gap: 20px; /* Space between images */
  width: max-content; /* Allows divs to sit side by side */
  animation: scroll 30s linear infinite; /* The infinite loop */
}

/* Pause animation on hover (Optional UX improvement) */
.image-scroller-track:hover {
  animation-play-state: paused;
}

/* INDIVIDUAL CARD STYLING */
.result-img {
  position: relative;
  width: 300px; /* Fixed width is recommended for smooth math */
  height: 400px;
  flex-shrink: 0; /* Prevents images from squashing */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.result-img:hover img {
  transform: scale(1.05);
}

/* Tag Styling */
.img-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

/* THE ANIMATION KEYFRAMES */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* We move -50% because JS doubled the content. 
         Once we hit half, it snaps back to 0 instantly visually unnoticeable */
    transform: translateX(50%);
  }
}

/* RTL NOTE: Since direction is RTL, translateX works differently. 
     If the scroll moves the wrong way, change 50% to -50% */

/* --- Hero Animations (Fixed) --- */

/* הגדרת האנימציה - הופעה מלמטה למעלה */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* הגדרת אנימציה קופצנית לכפתור */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  80% {
    transform: scale(1.05) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* מצב התחלתי - כולם מוסתרים */
.hero-content h1,
.hero-content .hero-sub,
.hero-content .btn-primary {
  opacity: 0;
}

/* 
   התיקון: הוספנו את המילה forwards בתוך שורת האנימציה עצמה.
   זה מבטיח שהאלמנט יישאר במצב הסופי (גלוי) ולא יחזור אחורה.
*/

/* 1. הכפתור מופיע ראשון */
.hero-content .btn-primary {
  /* שם אנימציה | משך | עקומת תנועה | השהייה | מצב סופי */
  animation: popIn 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.2s forwards;
}

/* 2. הכותרת מופיעה אחריו */
.hero-content h1 {
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

/* 3. הטקסט המשני מופיע אחרון */
.hero-content .hero-sub {
  animation: fadeInUp 1s ease-out 1.1s forwards;
}

@media (max-width: 768px) {
  .split-image {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0;
  }

  .split-image img {
    width: 200px; /* גודל קבוע */
    height: 200px; /* גובה זהה לרוחב = ריבוע */
    object-fit: cover; /* חותך את השוליים כדי למנוע עיוות ומבטיח עיגול */
    border-radius: 50%; /* הופך את הריבוע לעיגול */

    /* עיצוב */
    border: 3px solid var(--c-highlight); /* מסגרת תכלת */
    box-shadow: 0 0 20px rgba(77, 148, 255, 0.3) !important; /* זוהר עדין */
  }
}

.mantra-bar {
  background: linear-gradient(
    to right,
    var(--c-deepest),
    var(--c-accent),
    var(--c-deepest)
  );
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mantra-bar h2 {
  color: white;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

.mantra-bar .divider {
  color: var(--c-highlight); /* הצבע התכלת */
  margin: 0 15px;
  font-style: italic;
}

@media (max-width: 768px) {
  .mantra-bar h2 {
    font-size: 1.1rem; /* הקטנה למובייל */
    letter-spacing: 2px;
  }
}

/* --- Organic Calisthenics Section --- */
.section-calisthenics {
  /* רקע עם נגיעה כהה יותר */
  background: radial-gradient(circle at left, var(--c-dark), var(--c-deepest));
  padding: 6rem 0; /* הורדנו פאדינג צדדי כי הקונטיינר מטפל בזה */
  overflow: hidden; /* קריטי! חותך את התמונה אם היא יוצאת מהמסך */
  position: relative;
}

.relative-container {
  position: relative;
  /* מגדיר רוחב תוכן כדי שהתמונה לא תעלה על הטקסט במחשב */
  display: flex;
  justify-content: flex-start; /* מצמיד טקסט לימין */
}

/* --- עיצוב הטקסט --- */
.cali-text-content {
  width: 60%; /* הטקסט תופס 60% מהרוחב, משאיר מקום לתמונה */
  z-index: 2; /* הטקסט תמיד מעל */
  position: relative;
}

.cali-list {
  margin-top: 2rem;
}

.cali-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cali-list i {
  color: var(--c-highlight);
}

/* --- עיצוב התמונה (המחשב) --- */
.cali-peeking-image {
  position: absolute;
  top: 50%;
  left: -100px; /* מזיז את התמונה שמאלה, שתציץ מהצד */
  transform: translateY(-50%); /* ממרכז אנכית */
  width: 500px; /* גודל גדול ומרשים */
  height: auto;
  z-index: 1; /* מתחת לטקסט אם הם חופפים */
  pointer-events: none; /* כדי שלא יפריע ללחיצות */
}

.organic-img {
  width: 100%;
  height: auto;
  /* אפקט זוהר עדין סביב הדמות */
  filter: drop-shadow(0 0 30px rgba(77, 148, 255, 0.2));
  /* זווית קטנה למראה דינמי */
  transform: rotate(-5deg);
  transition: transform 0.5s ease;
}

/* אפקט ריחוף עדין */
.section-calisthenics:hover .organic-img {
  transform: rotate(0deg) scale(1.05);
}

/* --- התאמה למובייל (מעודכן: תמונה מתחת לטקסט) --- */
@media (max-width: 768px) {
  .section-calisthenics {
    padding: 3rem 1.5rem;
  }

  .relative-container {
    display: flex; /* מפעיל פלקס כדי לשלוט בסדר */
    flex-direction: column; /* מסדר אחד מתחת לשני */
  }

  .cali-text-content {
    width: 100%;
    order: 1; /* קובץ שהטקסט יופיע ראשון */
    z-index: 2;
  }

  .cali-peeking-image {
    position: relative;
    order: 2; /* קובע שהתמונה תופיע שניה (מתחת לטקסט) */

    /* איפוס הגדרות דסקטופ */
    top: auto;
    left: auto;
    right: auto;
    transform: none;

    /* עיצוב המיקום החדש */
    width: 220px; /* גודל התמונה במובייל */
    margin-top: -30px; /* מושך את התמונה למעלה כדי שתהיה קרובה לשורות האחרונות */
    align-self: flex-end; /* מצמיד את התמונה לצד שמאל (באתר RTL) */
    margin-left: -10px; /* גורם לה לצאת טיפה מהמסך בצד שמאל לאפקט טבעי */

    z-index: 1; /* מוודא שהיא מתחת לטקסט במקרה של חפיפה */
    opacity: 1;
  }

  .organic-img {
    /* הופך את התמונה (מראה) כדי שתפנה לכיוון הטקסט - אופציונלי */
    transform: scaleX(-1) rotate(5deg);
  }
}

/* --- Reem Spotlight Section --- */
.reem-section {
  padding: 5rem 0;
  background-color: var(--c-mid); /* רקע מעט שונה להדגשה */
  position: relative;
  overflow: hidden;
}

.reem-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.reem-content {
  flex: 1;
}

.reem-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ddd;
}

/* עיצוב נגן אודיו דמוי וואטסאפ */
.whatsapp-audio-container {
  background: #202c33; /* צבע רקע של הודעה בוואטסאפ כהה */
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  margin-top: 20px;
  border-left: 4px solid #25d366; /* פס ירוק */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.3s;
}

.whatsapp-audio-container:hover {
  transform: scale(1.02);
  background: #2a3942;
}

.wa-icon {
  color: #8696a0;
  font-size: 1.2rem;
}

.wa-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wa-name {
  font-size: 0.8rem;
  color: #8696a0;
}

.wa-bar {
  width: 150px;
  height: 4px;
  background: #8696a0;
  border-radius: 2px;
  position: relative;
}
/* פס התקדמות דמה */
.wa-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: #25d366;
}

.wa-time {
  font-size: 0.8rem;
  color: #8696a0;
  align-self: flex-end;
}

/* עיצוב הוידאו (מסגרת טלפון) */
.reem-video-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-frame {
  width: 300px; /* רוחב של סטורי/ריל */
  height: 533px; /* יחס גובה 16:9 */
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #000; /* מסגרת שחורה כמו טלפון */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: #000;
  position: relative;
  z-index: 2;
}

.phone-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-glow {
  position: absolute;
  width: 300px;
  height: 500px;
  background: var(--c-highlight);
  border-radius: 50%;
  filter: blur(80px); /* אפקט זוהר חזק מאחורי הטלפון */
  opacity: 0.2;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* התאמה למובייל */
@media (max-width: 768px) {
  .reem-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .reem-content {
    padding: 0 1.5rem; /* מוסיף רווח של כ-24 פיקסלים משני הצדדים */
    width: 100%;
    box-sizing: border-box; /* מוודא שהרווח לא שובר את רוחב המסך */
    text-align: center; /* (אופציונלי) ממרכז את הטקסט שיראה טוב יותר */
  }

  /* רווח בין הטקסט לוידאו */
  .reem-video-wrapper {
    margin-top: 2rem;
  }
}

/* --- עיצוב השם באזור האודות --- */
.personal-name {
  font-size: 1.5rem; /* גודל מכובד אבל קטן מהכותרת הראשית */
  font-weight: 700;
  color: #ccc; /* צבע אפור בהיר */
  margin-top: -10px; /* מקרב אותו לכותרת של "מי אני" */
  margin-bottom: 1.5rem;
  display: inline-block;
  border-bottom: 2px solid var(--c-highlight); /* קו תכלת מתחת לשם */
  padding-bottom: 5px;
}

/* התאמה למובייל */
@media (max-width: 768px) {
  .personal-name {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
    display: block; /* מוודא שזה תופס שורה משלו */
    width: fit-content;
    margin-left: auto;
    margin-right: auto; /* מירכוז במובייל */
  }
}

/* --- Showcase Banner Fix for Mobile --- */
@media (max-width: 768px) {
  /* הקטנת הכותרת הראשית בבאנר */
  .showcase-content h2 {
    font-size: 2rem; /* מקטין מ-4rem ל-2rem כדי שייכנס */
    line-height: 1.3; /* רווח נעים בין השורות */
    padding: 0 15px; /* מונע מהטקסט להידבק לקצוות המסך */
    width: 100%;
    word-wrap: break-word; /* מונע גלישה החוצה במקרה של מילה ארוכה */
  }

  /* שליטה ספציפית על הטקסט המודגש (השורה השנייה) */
  .showcase-content .highlight-text {
    display: block; /* גורם לזה לרדת שורה בצורה מסודרת */
    font-size: 1.5rem; /* עושה את המשפט הארוך קצת יותר קטן מהכותרת הראשית */
    margin-top: 10px; /* רווח בין "הגשמת כושר" למשפט השני */
  }
}

/* 1. MARQUEE CONTAINER */
.shorts-marquee-container {
  width: 100%;
  overflow: hidden; /* Hide overflow for the infinite effect */
  position: relative;
  padding: 20px 0;
}

/* Gradient Fade Effect on sides */
.shorts-marquee-container::before,
.shorts-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.shorts-marquee-container::before {
  right: 0;
  background: linear-gradient(to left, var(--c-deepest), transparent);
}
.shorts-marquee-container::after {
  left: 0;
  background: linear-gradient(to right, var(--c-deepest), transparent);
}

/* 2. TRACK ANIMATION */
.shorts-track {
  display: flex;
  gap: 30px;
  width: max-content;
  /* The Animation: 40 seconds, linear speed, infinite loop */
  animation: scroll-rtl 40s linear infinite;
}

/* Pause on Hover */
.shorts-track:hover {
  animation-play-state: paused;
}

/* STOP Animation Class (Applied when video plays) */
.shorts-track.stop-animation {
  animation: none !important;
  overflow-x: auto; /* Enable manual scrolling */
  width: 100%; /* Fit container */
  padding-bottom: 20px;
  /* Re-style scrollbar for manual mode */
  scrollbar-width: thin;
  scrollbar-color: var(--c-highlight) var(--c-deepest);
}

/* 3. CARD STYLING */
.shorts-card {
  position: relative;
  width: 240px;
  height: 426px;
  background: var(--c-mid);
  border: 1px solid var(--c-light);
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0; /* Don't shrink in flex */
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  direction: rtl; /* Ensure internal content is RTL */
}

.shorts-card:hover {
  transform: translateY(-10px);
  border-color: var(--c-highlight);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.shorts-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.shorts-card:hover img {
  opacity: 0.6;
}

.shorts-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  color: var(--c-white);
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 10;
  text-shadow: 0 2px 4px black;
}

/* Red Play Button */
.shorts-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  z-index: 5;
  transition: transform 0.2s;
}
.shorts-play-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid white;
  margin-left: 4px;
}
.shorts-card:hover .shorts-play-btn {
  transform: translate(-50%, -50%) scale(1.2);
}

/* Iframe */
.shorts-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* 4. KEYFRAMES FOR RTL SCROLLING */
/* Since content is duplicated, we move from 0 to 50% (half width) */
@keyframes scroll-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .shorts-card {
    width: 200px;
    height: 355px;
  }
  .shorts-track {
    gap: 15px;
  }
}

/* --- FOOTER STYLES (UPDATED) --- */
.site-footer {
  background-color: #000015; /* כהה יותר מהרקע הרגיל */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-col h4 {
  color: var(--c-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--c-highlight);
  display: inline-block;
  padding-bottom: 5px;
}

/* Brand Column */
.brand-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
  transition: opacity 0.3s;
}

.footer-logo-img:hover {
  opacity: 0.8;
}

/* Links Column */
.links-col {
  flex: 1;
  min-width: 200px;
}

.footer-links-list li {
  margin-bottom: 0.8rem;
}

.footer-links-list a {
  color: #aaa;
  transition: 0.3s;
  text-decoration: none;
}

.footer-links-list a:hover {
  color: var(--c-highlight);
  padding-right: 5px; /* הזזה קטנה באנימציה */
}

/* Social Column */
.social-col {
  flex: 1;
  min-width: 200px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* צבעים ספציפיים לכל רשת במעבר עכבר */
.social-icon.insta:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  transform: translateY(-5px);
  border-color: white;
}

.social-icon.youtube:hover {
  background: #ff0000;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.social-icon.tiktok:hover {
  background: #000;
  border-color: #00f2ea;
  box-shadow: 2px 2px 0 #ff0050, -2px -2px 0 #00f2ea;
  transform: translateY(-5px);
}

/* --- Footer Mobile --- */
@media (max-width: 768px) {
  .footer-layout {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-col {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-links-list a:hover {
    padding-right: 0; /* ביטול הזזה במובייל */
  }
}

/* --- נגישות (Accessibility) --- */

/* 1. עצירת האנימציה כאשר המקלדת נמצאת בתוך האזור */
.shorts-track:focus-within {
  animation-play-state: paused;
}

/* 2. עיצוב המצב שנבחר עם TAB */
.shorts-card:focus {
  outline: none; /* ביטול המסגרת המכוערת של הדפדפן */
  border-color: var(--c-blue-highlight); /* שינוי צבע הגבול לתכלת */
  box-shadow: 0 0 0 4px rgba(77, 148, 255, 0.6); /* הוספת הילה זוהרת מסביב */
  transform: translateY(-10px); /* הקפצה למעלה כמו ב-HOVER */
}

/* אופציונלי: הדגשת כפתור ה-PLAY כשנמצאים בפוקוס */
.shorts-card:focus .shorts-play-btn {
  transform: translate(-50%, -50%) scale(1.2);
}

/* --- Global Accessibility Focus Styles --- */

/* כאשר מנווטים עם מקלדת (TAB), האלמנט יקבל מסגרת ברורה */
:focus-visible {
  outline: 3px solid var(--c-blue-highlight);
  outline-offset: 3px;
}

/* ביטול ה-outline הרגיל רק אם הגדרנו focus-visible, 
   אבל בשביל תמיכה לאחור נשאיר עיצוב בסיסי */
button:focus,
a:focus,
input:focus,
textarea:focus,
[tabindex="0"]:focus {
  outline: none; /* מבטל את ברירת המחדל המכוערת */
  box-shadow: 0 0 0 3px var(--c-blue-highlight); /* יוצר הילה במקום */
}

/* תיקון נגישות לטופס - שלא ייעלם הפוקוס */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--c-blue-highlight);
  box-shadow: 0 0 0 3px rgba(77, 148, 255, 0.4); /* הילה עדינה יותר בשדות */
}

/* נגישות להמבורגר */
.hamburger:focus {
  color: var(--c-blue-highlight);
}

/* --- Privacy Policy Page Styles --- */

.page-header {
  background-color: var(--c-dark);
  padding: 120px 0 60px; /* רווח מלמעלה בגלל ה-Navbar הקבוע */
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header h1 {
  font-size: 3rem;
  color: var(--c-white);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--c-highlight);
}

.policy-content {
  background-color: var(--c-deepest);
  min-height: 60vh;
}

.policy-card {
  background: var(--c-mid);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--c-light);
  max-width: 900px;
  margin: 0 auto; /* מירכוז הכרטיסייה */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.policy-card h2 {
  color: var(--c-highlight);
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p {
  color: #ddd;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-card ul {
  list-style: disc;
  margin-right: 20px; /* הזחה לימין בגלל RTL */
  margin-bottom: 1.5rem;
  color: #ccc;
}

.policy-card li {
  margin-bottom: 0.5rem;
}

.policy-card strong {
  color: white;
}

/* התאמה למובייל */
@media (max-width: 768px) {
  .policy-card {
    padding: 1.5rem;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .policy-card h2 {
    font-size: 1.4rem;
  }
}

/* --- Process Timeline Design --- */

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

/* הקו המחבר לאורך כל התהליך */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px; /* מיקום הקו ביחס לצד ימין */
  width: 2px;
  background: rgba(77, 148, 255, 0.3); /* צבע תכלת שקוף */
  z-index: 0;
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
  gap: 2rem;
  align-items: flex-start;
}

/* טיפול באייטם האחרון - שלא יהיה לו רווח מיותר למטה */
.timeline-item:last-child {
  margin-bottom: 0;
}

/* העיגול עם המספר */
.timeline-marker {
  width: 50px;
  height: 50px;
  background: var(--c-deepest);
  border: 2px solid var(--c-highlight);
  color: var(--c-highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  z-index: 1; /* מעל הקו */
  flex-shrink: 0; /* שלא יתכווץ */
  box-shadow: 0 0 15px rgba(77, 148, 255, 0.2);
  transition: 0.3s;
}

/* אפקט במעבר עכבר על השורה */
.timeline-item:hover .timeline-marker {
  background: var(--c-highlight);
  color: var(--c-deepest);
  box-shadow: 0 0 20px rgba(77, 148, 255, 0.6);
  transform: scale(1.1);
}

/* הכרטיסייה של הטקסט */
.timeline-content {
  background: var(--c-mid);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  position: relative;
}

/* חץ קטן שמצביע מהכרטיסייה למספר */
.timeline-content::before {
  content: "";
  position: absolute;
  top: 15px;
  right: -10px; /* החץ יוצא ימינה לכיוון המספר */
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--c-mid); /* צבע החץ כצבע הרקע */
}

.timeline-item:hover .timeline-content {
  transform: translateX(-5px); /* תזוזה קלה שמאלה */
  border-color: var(--c-highlight);
}

.timeline-content h3 {
  /* יצירת אפקט זהב מטאלי */
  background: linear-gradient(
    to right,
    #bf953f,
    #fcf6ba,
    #b38728,
    #fbf5b7,
    #aa771c
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* הטקסט עצמו שקוף כדי שהרקע ייראה */

  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 800; /* עובי מודגש יותר כדי שהאפקט ייראה טוב */
  display: inline-block; /* נדרש לפעמים כדי שהאפקט לא ייחתך */
}

.timeline-marker {
  /* ... שאר ההגדרות נשארות אותו דבר ... */
  border-color: #ffc83d; /* מסגרת זהובה */
  color: #ffc83d; /* מספר זהוב */
  /* ... */
}

/* וגם במעבר עכבר (Hover) */
.timeline-item:hover .timeline-marker {
  background: #ffc83d; /* רקע זהב */
  color: var(--c-deepest); /* מספר כהה */
  box-shadow: 0 0 20px rgba(255, 200, 61, 0.6); /* זוהר זהוב */
}
.timeline-content p {
  color: var(--c-gray);
  font-size: 1rem;
  margin: 0;
}

/* --- התאמה למובייל --- */
@media (max-width: 768px) {
  .process-timeline::before {
    right: 19px; /* תיקון מיקום הקו במובייל */
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .timeline-item {
    gap: 1rem; /* פחות רווח בין המספר לטקסט */
    margin-bottom: 2rem;
  }

  .timeline-content {
    padding: 1rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
  }
}

/* הוסף את זה בסוף קובץ ה-CSS */

@media (max-width: 768px) {
  /* במובייל מבטלים את ההסתרה הראשונית כדי למנוע חורים ריקים */
  .split-content,
  .split-image {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Image Scroller - Manual Slider Mode */
.image-scroller-container {
  width: 100%;
  padding: 2rem 0;
  position: relative;
  /* הפעלת גלילה אופקית */
  overflow-x: auto;
  overflow-y: hidden;
  /* החלקת גלילה במובייל */
  -webkit-overflow-scrolling: touch;
  /* הסתרת פס הגלילה (אופציונלי - אם רוצים שיראה נקי) */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */

  /* מגנט תמונות למרכז */
  scroll-snap-type: x mandatory;
  cursor: grab;
}

/* הסתרת פס גלילה לכרום/ספארי */
.image-scroller-container::-webkit-scrollbar {
  display: none;
}

/* ביטול הגרדיאנטים בצדדים (אופציונלי - אם אתה רוצה שהתמונות יראו עד הקצה) */
.image-scroller-container::before,
.image-scroller-container::after {
  display: none;
}

.image-scroller-track {
  display: flex;
  gap: 20px; /* רווח בין תמונות */
  width: max-content;
  padding: 0 5%; /* ריפוד בצדדים כדי שהתמונה הראשונה לא תהיה דבוקה לקיר */

  /* ביטול האנימציה האוטומטית */
  animation: none !important;
}

/* במידה ומשתמשים מרחפים מעל - ניתן להוסיף אפקטים כאן אם רוצים */
.image-scroller-track:hover {
  animation-play-state: unset;
}

.result-img {
  margin: 0; /* ביטול המרג'ין הישן כי אנחנו משתמשים ב-GAP */
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 300px;
  height: 400px;
  flex-shrink: 0;
  border: 2px solid var(--c-light);

  /* יישור המגנט למרכז */
  scroll-snap-align: center;
}

.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  /* מונע גרירה של התמונה עצמה במקום גלילה */
  pointer-events: none;
}

/* התאמה למובייל - הקטנת התמונות מעט כדי שיראו את הבאה בתור */
@media (max-width: 768px) {
  .result-img {
    width: 260px;
    height: 350px;
  }
}

/* --- Gallery Navigation Buttons --- */
.scroller-wrapper {
  position: relative;
  max-width: 1000px; /* רוחב מקסימלי לגלריה כדי שהחיצים לא יהיו רחוקים מדי */
  margin: 0 auto;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--c-highlight); /* צבע התכלת שלך */
  color: var(--c-deepest);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background-color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.nav-btn:active {
  transform: translateY(-50%) scale(0.9);
}

/* מיקום הכפתורים */
/* בגלל שהאתר ב-RTL (עברית): */
.next-btn {
  right: -20px; /* החץ הימני יהיה בצד ימין */
}

.prev-btn {
  left: -20px; /* החץ השמאלי יהיה בצד שמאל */
}

/* התאמה למובייל: נסתיר את החיצים כי במובייל יותר נוח לגלול עם האצבע */
@media (max-width: 768px) {
  .nav-btn {
    display: none; /* מסתיר את הכפתורים בנייד */
  }

  /* מגדיל את אזור הגלילה בנייד שיתפוס את כל הרוחב */
  .scroller-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* --- Gallery Dots Indicators --- */
.dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(
    255,
    255,
    255,
    0.3
  ); /* צבע אפור שקוף לנקודות לא פעילות */
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* כשהנקודה פעילה (התמונה שלה מוצגת) */
.dot.active {
  background-color: var(--c-highlight); /* הצבע המודגש שלך */
  transform: scale(1.3); /* הגדלה קלה */
  box-shadow: 0 0 10px rgba(77, 148, 255, 0.5);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* העיצוב החדש והמודגש לטקסט המשני */
.center-sub {
  text-align: center;
  color: var(--c-highlight); /* נשאר הצבע התכלת */
  font-size: 1.4rem; /* הגדלת הגופן כדי שיתפוס יותר מקום */
  font-weight: 700; /* הפיכת הטקסט למודגש */
  margin-bottom: 3rem;

  /* האפקט הבולט: הוספת צל זוהר */
  text-shadow: 0 0 15px rgba(77, 148, 255, 0.7),
    /* זוהר תכלת חזק יותר */ 0 0 5px rgba(255, 255, 255, 0.4); /* הבהרה לבנה קלה */

  /* קו תחתון קטן כאלמנט עיצובי נוסף */
  position: relative;
  padding-bottom: 5px; /* רווח בין הטקסט לקו */
}

/* הוספת קו דקורטיבי קטן וממורכז מתחת לטקסט */
.center-sub::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%; /* התחלה באמצע */
  transform: translateX(-50%); /* מזיז חצי מהרוחב שמאלה כדי למרכז */
  width: 80px; /* רוחב קטן ומדויק */
  height: 3px;
  background-color: var(--c-highlight);
  border-radius: 5px;
}

/* --- Spotlight Video Section --- */

.spotlight-wrapper {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* יוצר מיכל ששומר על יחס גובה-רוחב של 16:9 (מתאים ליוטיוב רגיל) */
.video-responsive-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); /* צל עמוק ויוקרתי */
  border: 2px solid var(--c-light);
  background: black;
  margin-top: 2rem;
}

.video-responsive-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* אפקט זוהר עדין מסביב למסגרת */
.video-responsive-container:hover {
  border-color: var(--c-highlight);
  box-shadow: 0 20px 60px rgba(77, 148, 255, 0.3);
  transition: all 0.3s ease;
}

/* התאמה למובייל */
@media (max-width: 768px) {
  .spotlight-wrapper h2 {
    font-size: 1.8rem; /* הקטנת כותרת במובייל */
    padding: 0 10px;
  }
}

/* CSS כללי - ברירת מחדל למסכים גדולים (Desktop) */
.logo-text {
  /* גודל למחשב/מסך רחב */
  font-size: 1.4rem;
  /* אפשר להוסיף גם גופן, צבע, וכו' */
  line-height: 1.4; /* כדי לשמור על יישור עם הלוגו */
}

/* Media Query למסכים קטנים (טלפון) */
/* זה יחול כאשר רוחב המסך קטן מ-768px (דוגמה נפוצה) */
@media (max-width: 768px) {
  .logo-text {
    /* גודל לטלפון/מסך צר */
    font-size: 1.1rem;
  }
}

/* אם רוצים גודל נוסף לטאבלט, אפשר להוסיף: */
/*
@media (min-width: 769px) and (max-width: 1024px) {
  .logo-text {
    font-size: 1.1rem;
  }
}
*/
