:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --accent-color: #cccccc;
  /* --accent-color: #ff6b35; */
  --test-color: #232323;
  --dark-gray: #1a1a1a;
  --light-gray: #f8f9fa;
  --var-size: 500px;
}

* {
  font-family: "Heebo", sans-serif;
}

body {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  overflow-x: hidden;
  padding-top: 90px;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

.navbar-brand img {
  max-width: 60px;
  border-radius: 50%;
  /* filter: brightness(0) invert(1);
  transition: all 0.3s ease; */
}

.navbar-nav .nav-link {
  color: var(--secondary-color) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(170, 170, 170, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.logo-hero {
  max-width: 300px;
  height: auto;
  margin-bottom: 2rem;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 20px rgba(170, 170, 170, 0.3));
  }
  to {
    filter: drop-shadow(0 0 40px rgba(170, 170, 170, 0.6));
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  /*  */
  background: linear-gradient(45deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #cccccc;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-custom {
  /* #ff8c42 */
  background: linear-gradient(45deg, var(--test-color), #cccccc);
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(170, 170, 170, 0.3);
  animation: slideInUp 1s ease-out 0.4s both;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(170, 170, 170, 0.5);
  color: white;
}

.section {
  padding: 100px 0;
}

.services-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.service-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid #333;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(170, 170, 170, 0.2);
}

.service-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.about-section {
  background: var(--primary-color);
}

.contact-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.contact-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid #333;
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-info {
  background: rgba(170, 170, 170, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-left: 15px;
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #333;
  border-radius: 10px;
  color: white;
  padding: 15px;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(170, 170, 170, 0.25);
  color: white;
}

.form-control::placeholder {
  color: #aaa;
}

.footer {
  background: var(--primary-color);
  border-top: 2px solid var(--accent-color);
  padding: 50px 0 30px;
}

.social-links a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: rgba(170, 170, 170, 0.1);
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  color: var(--accent-color);
  margin: 0 10px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.floating-elements::before,
.floating-elements::after {
  content: "";
  position: absolute;
  background: rgba(170, 170, 170, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.floating-elements::after {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.7;
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  /*  */
  background: linear-gradient(45deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .logo-hero {
    max-width: 200px;
  }
}

/* .list-unstyled {
} */

.list-a {
  text-decoration: none;
}

/* .navbar-toggler {
  color: #aaa;
} */

.fa-award,
.fa-shield-alt {
  /* color: #ffffff; */
  color: #cccccc;
  /* color: #aaa; */
}

/* #test1 {
  max-width: 400px;
  border-radius: 50%;
} */

/* .icon-test {
  background: url("../img/logo.PNG") no-repeat top left;
}
.icon-accessibility-test {
  background-position: 0 0;
  width: 32px;
  height: 32px;
} */

.hero-icon {
  display: inline-block;
  height: var(--var-size);
  width: var(--var-size);
  background-image: url("../img/Tlogo.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.nho {
  width: 100%;
  pointer-events: none;
  user-select: none;
}

/* ...existing code... */

.whatsapp-float {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1ebe57;
  transform: scale(1.08);
}

/* ...existing code... */
/* ...existing code... */

/* גופן קריא */
body[style*="font-family"] {
  letter-spacing: 0.5px;
}

/* ביטול אנימציות */
.disable-animations *,
.disable-animations *:before,
.disable-animations *:after {
  animation: none !important;
  transition: none !important;
}

/* ...existing code... */
/* כפתור נגישות צף */
.accessibility-float {
  position: fixed;
  bottom: 90px;
  right: 15px;
  z-index: 10001;
  background: #0057b8;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.accessibility-float:hover,
.accessibility-float:focus {
  background: #003974;
  outline: none;
  transform: scale(1.08);
}

/* תפריט הנגישות */
.accessibility-menu {
  display: none;
  position: fixed;
  bottom: 160px;
  right: 15px;
  z-index: 10000;
  background: #222;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  padding: 20px 15px;
  min-width: 170px;
}
.accessibility-menu.show {
  display: block;
}

/* ניגודיות גבוהה */
.high-contrast,
.high-contrast * {
  background: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow: none !important;
}
.high-contrast a,
.high-contrast .nav-link,
.high-contrast .btn-custom,
.high-contrast button,
.high-contrast .accessibility-float,
.high-contrast .accessibility-menu {
  color: #ff0 !important;
  background: #111 !important;
  border-color: #ff0 !important;
  text-decoration: underline !important;
}
.high-contrast .form-control,
.high-contrast input,
.high-contrast textarea {
  background: #111 !important;
  color: #fff !important;
  border-color: #ff0 !important;
}
.high-contrast .service-icon,
.high-contrast i,
.high-contrast svg {
  color: #ff0 !important;
  fill: #ff0 !important;
}
.high-contrast .social-links a {
  background: #111 !important;
  color: #ff0 !important;
  border-color: #ff0 !important;
}

/* הדגשת קישורים */
.highlight-links a,
.highlight-links .nav-link {
  outline: 2px solid #ff0 !important;
  background: #222 !important;
  color: #ff0 !important;
  text-decoration: underline !important;
}

/* תפריט הנגישות - עיצוב משופר */
.accessibility-menu {
  display: none;
  position: fixed;
  bottom: 160px;
  right: 15px;
  z-index: 10000;
  background: #222;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  padding: 22px 18px 18px 18px;
  min-width: 210px;
  animation: fadeInAccMenu 0.3s;
  border: 2px solid #0057b8;
  transition: box-shadow 0.2s, border 0.2s;
}
.accessibility-menu.show {
  display: block;
  animation: fadeInAccMenu 0.3s;
}
@keyframes fadeInAccMenu {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.accessibility-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 12px;
  background: #0057b8;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 18px;
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  outline: none;
}
.accessibility-menu button:last-child {
  margin-bottom: 0;
}
.accessibility-menu button:hover,
.accessibility-menu button:focus {
  background: #003974;
  color: #ff0;
  transform: scale(1.04);
}
.accessibility-menu button[style*="color: #ff5252"] {
  background: #fff;
  color: #ff5252 !important;
  border: 1.5px solid #ff5252;
}
.accessibility-menu button[style*="color: #ff5252"]:hover,
.accessibility-menu button[style*="color: #ff5252"]:focus {
  background: #ff5252;
  color: #fff !important;
}

/* אייקונים בתוך כפתורים (אם תוסיף) */
.accessibility-menu button i {
  font-size: 1.2em;
  margin-left: 6px;
  margin-right: 0;
}

/* חץ קטן למעלה */
.accessibility-menu::before {
  content: "";
  position: absolute;
  bottom: -18px;
  right: 32px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
}

/* תפריט המבורגר לבן */
.navbar-toggler {
  border-color: #fff !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* גלריית קרוסלה */
#galleryCarousel .carousel-item img {
  height: 500px;
  object-fit: contain;
  margin: 0 auto;
}

/* אינדיקטורים של קרוסלה מתחת לתמונה בגלריה */
#galleryCarousel .carousel-indicators {
  position: static;
  margin-top: 20px;
  margin-bottom: 0;
  justify-content: center;
}
