/*---------------------------
    1. General & Reset
----------------------------*/
:root {
  --primary-color: #F6C018;
  --primary-hover: #e5b116;
  --secondary-color: #444444;
  --accent-color: #8b6d2a;
  --dark-color: #222222;
  --text-color: #333333;
  --text-light: #777777;
  --text-lighter: #999999;
  --white-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #212121;
  --border-color: #eeeeee;
  --border-light: rgba(0, 0, 0, 0.1);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-primary: 'Heebo', sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.7;
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-color);
  background-color: var(--white-color);
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.2rem;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.bg-light {
  background-color: var(--bg-light) !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded-custom {
  border-radius: var(--border-radius);
}

.shadow-custom {
  box-shadow: var(--box-shadow);
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
}

/*---------------------------
    2. Buttons
----------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.btn:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: var(--transition);
}

.btn:hover::after {
  width: 100%;
  left: auto;
  right: 0;
}

.btn:focus {
  box-shadow: none;
}

.btn i, .btn svg {
  margin-left: 8px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.125rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-color);
  box-shadow: 0 4px 15px rgba(217, 165, 17, 0.4);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-hover);
  color: var(--dark-color);
  box-shadow: 0 6px 20px rgba(217, 165, 17, 0.6);
}

.btn-primary:after {
  background-color: var(--primary-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
}

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.btn-outline:after {
  background-color: var(--white-color);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.btn-outline-primary:after {
  background-color: var(--primary-color);
}

.btn-light {
  background-color: var(--white-color);
  color: var(--dark-color);
}

.btn-light:hover, .btn-light:focus {
  background-color: var(--bg-light);
  color: var(--dark-color);
}

.btn-light:after {
  background-color: var(--bg-light);
}

/*---------------------------
    3. Preloader
----------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader img {
  width: 120px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.loading-bar {
  width: 150px;
  height: 4px;
  background-color: var(--border-light);
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.loading-bar:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50px;
  animation: loading 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes loading {
  0% {
    right: -30%;
  }
  100% {
    right: 100%;
  }
}

/*---------------------------
    4. Header
----------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  background-color: transparent;
  transition: var(--transition);
  z-index: 999;
}

.header.sticky {
  background-color: var(--white-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
  width: 120px;
  transition: var(--transition);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.sticky .logo {
  width: 100px;
}

.main-nav {
  display: flex;
  margin-right: auto;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  color: var(--white-color);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
}

.sticky .nav-link {
  color: var(--text-color);
}

.nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover:before, 
.nav-link.active:before {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.mobile-menu-toggle {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white-color);
  position: absolute;
  right: 0;
  transition: var(--transition);
}

.sticky .mobile-menu-toggle span {
  background-color: var(--dark-color);
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
  bottom: 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background-color: var(--white-color);
  z-index: 9999;
  overflow-y: auto;
  transition: var(--transition);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header .logo {
  width: 100px;
}

.mobile-menu-close {
  font-size: 24px;
  color: var(--text-color);
  cursor: pointer;
}

.mobile-nav {
  padding: 20px;
}

.mobile-nav-item {
  margin-bottom: 10px;
}

.mobile-nav-link {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-color);
}

.mobile-contact {
  padding: 20px;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.mobile-contact-item i {
  margin-left: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 50%;
  font-size: 16px;
}

.mobile-contact-item a {
  color: var(--text-color);
}

.mobile-contact .social-icons {
  display: flex;
  margin-top: 20px;
}

.mobile-contact .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  color: var(--text-color);
  border-radius: 50%;
  margin-left: 10px;
  transition: var(--transition);
}

.mobile-contact .social-icon:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

/*---------------------------
    5. Hero Section
----------------------------*/
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}

.slide-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  color: var(--white-color);
  padding: 0 15px;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.slide-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--white-color);
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
}

.slide-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--white-color);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: var(--transition);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color);
}

.hero-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-down a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white-color);
}

.mouse-icon {
  width: 28px;
  height: 45px;
  border: 2px solid var(--white-color);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  margin-bottom: 10px;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--white-color);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

.arrow-down {
  width: 20px;
  height: 20px;
  position: relative;
}

.arrow-down span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--white-color);
  border-right: 2px solid var(--white-color);
  transform: rotate(45deg);
  animation: arrow 1.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

@keyframes arrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

/*---------------------------
    6. Section Heading
----------------------------*/
.section-heading {
  margin-bottom: 50px;
}

.section-heading .subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}

.heading-line {
  width: 70px;
  height: 4px;
  background-color: var(--primary-color);
  margin-bottom: 20px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section-subtext {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

/*---------------------------
    7. About Section
----------------------------*/
.about-section {
  position: relative;
  overflow: hidden;
}

.about-images {
  position: relative;
  width: 100%;
  height: 500px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: auto;
  z-index: 2;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: auto;
  z-index: 1;
}

.about-pattern {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(217, 165, 17, 0.5);
}

.exp-years {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.about-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-left: 15px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-text p {
  color: var(--text-light);
  margin-bottom: 0;
}

/*---------------------------
    8. Counter Section
----------------------------*/
.counter-section {
  background-color: var(--primary-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.counter-wrapper {
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
}

.counter-icon {
  font-size: 40px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1;
  margin-bottom: 10px;
}

.counter-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
}

/*---------------------------
    9. Services Section
----------------------------*/
.services-section {
  position: relative;
  overflow: hidden;
}

.service-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  height: 100%;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  opacity: 0.1;
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover:before {
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.service-link i {
  margin-right: 8px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-hover);
}

.service-link:hover i {
  transform: translateX(-5px);
}

/*---------------------------
    10. Features Section
----------------------------*/
.features-section {
  position: relative;
  overflow: hidden;
}

.features-content {
  padding-right: 30px;
}

.features-image {
  position: relative;
  width: 100%;
  height: 500px;
}

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

.features-pattern {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
}

.features-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(217, 165, 17, 0.5);
}

.features-badge i {
  font-size: 30px;
  margin-bottom: 5px;
}

.features-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.features-list {
  margin-top: 30px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-list-icon {
  width: 30px;
  height: 30px;
  background-color: #f2ebd5;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: 15px;
  flex-shrink: 0;
}

.feature-list-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-list-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/*---------------------------
    15. Contact Section
----------------------------*/
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-info {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

.contact-info-header {
  margin-bottom: 30px;
  text-align: center;
}

.contact-info-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
  position: relative;
}

.contact-info-header h3:after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 50%;
  transform: translateX(50%);
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.contact-info-header p {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-info-content {
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px 20px;
  background-color: rgba(246, 192, 24, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-right: 3px solid transparent;
}

.contact-info-item:hover {
  background-color: rgba(246, 192, 24, 0.1);
  transform: translateX(-5px);
  border-right-color: var(--primary-color);
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--dark-color);
  font-size: 1.1rem;
  margin-left: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217, 165, 17, 0.3);
}

/* סגנונות לחלק צור קשר - רקע לבן */
.contact-section .contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark-color);
  font-weight: 600;
}

.contact-section .contact-info-text p {
  color: var(--text-color);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.contact-section .contact-info-text a {
  color: var(--text-color);
  font-size: 1.05rem;
  transition: var(--transition);
  font-weight: 500;
}

.contact-section .contact-info-text a:hover {
  color: var(--primary-color);
}

.contact-social {
  text-align: center;
  padding: 20px;
  background-color: rgba(246, 192, 24, 0.05);
  border-radius: 12px;
}

.contact-social h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.contact-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.contact-social .social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--bg-light);
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.contact-social .social-icon:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

/* Enhanced Contact Form Styles */
.contact-form {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
  position: relative;
}

.form-header h3:after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 50%;
  transform: translateX(50%);
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.form-header p {
  color: var(--text-light);
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

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

.form-control {
  width: 100%;
  height: 55px;
  padding: 15px 20px;
  font-size: 1rem;
  color: var(--text-color);
  background-color: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  background-color: var(--white-color);
  box-shadow: 0 0 0 4px rgba(217, 165, 17, 0.1);
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: var(--text-lighter);
  font-weight: 400;
}

textarea.form-control {
  height: 120px;
  resize: vertical;
  padding: 15px 20px;
  min-height: 120px;
  max-height: 200px;
}

.form-group .btn {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(217, 165, 17, 0.3);
  transition: all 0.3s ease;
}

.form-group .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(217, 165, 17, 0.4);
}

/* Form Success/Error States */
.form-control.is-valid {
  border-color: #28a745;
  background-color: var(--white-color);
}

.form-control.is-invalid {
  border-color: #dc3545;
  background-color: var(--white-color);
}

.valid-feedback,
.invalid-feedback {
  font-size: 0.875rem;
  margin-top: 5px;
  padding-right: 20px;
}

.valid-feedback {
  color: #28a745;
}

.invalid-feedback {
  color: #dc3545;
}

/*---------------------------
    16. Map Section
----------------------------*/
.map-section {
  position: relative;
}

.map-wrapper {
  height: 450px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/*---------------------------
    17. Footer
----------------------------*/
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to bottom, rgba(26, 26, 26, 0.97), rgba(26, 26, 26, 0.99)), url('images/photo_2025-04-24_14-39-18.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--primary-color);
}

.footer-top {
  padding: 60px 0 40px;
  position: relative;
}

.footer-top:after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.05;
  z-index: 1;
}

.footer-widget {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-logo:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-logo-img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: translateY(-5px);
}

.footer-desc {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #f0f0f0;
  font-size: 1.05rem;
  position: relative;
  padding-right: 15px;
  border-right: 2px solid rgba(246, 192, 24, 0.2);
}

.footer-social {
  display: flex;
  margin-top: 30px;
}

.footer-social .social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.07);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.footer-social .social-icon:hover {
  color: var(--dark-color);
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.footer-social .social-icon:hover:before {
  transform: translateY(0);
}

.footer-widget-title {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  font-weight: 600;
  padding-bottom: 15px;
}

.footer-widget-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-links {
  position: relative;
}

.footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-right: 18px;
  transition: all 0.3s ease;
}

.footer-links li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.footer-links li:hover {
  padding-right: 22px;
}

.footer-links li:hover:before {
  opacity: 1;
  width: 10px;
  height: 10px;
}

.footer-links a {
  color: #f0f0f0;
  font-size: 1.05rem;
  transition: var(--transition);
  display: block;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
  border-right: 3px solid transparent;
}

.contact-info-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateX(-5px);
  border-right-color: var(--primary-color);
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--dark-color);
  font-size: 1.1rem;
  margin-left: 15px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(246, 192, 24, 0.3);
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.1);
}

.contact-info-text p {
  color: var(--text-color);
  margin-bottom: 0;
  font-size: 1.05rem;
}

.contact-info-text a {
  color: var(--text-color);
  font-size: 1.05rem;
  transition: var(--transition);
}

.contact-info-text a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding: 25px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 30px;
  background-color: rgba(0, 0, 0, 0.2);
}

.copyright {
  color: #f0f0f0;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.8;
}

.footer-bottom-links {
  text-align: left;
}

.footer-bottom-links a {
  color: #f0f0f0;
  margin-right: 20px;
  font-size: 1.05rem;
  transition: var(--transition);
  position: relative;
  opacity: 0.8;
}

.footer-bottom-links a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.footer-bottom-links a:hover:after {
  width: 100%;
}

@media (max-width: 991.98px) {
  .footer-top:after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding-top: 60px;
  }
  
  .footer-top {
    padding: 40px 0 20px;
  }
  
  .footer-desc {
    border-right: none;
    padding-right: 0;
  }
  
  .footer-bottom-links {
    text-align: right;
    margin-top: 15px;
  }
}

/*---------------------------
    18. Back to Top
----------------------------*/
.back-to-top {
  position: fixed;
  bottom: -60px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 15px rgba(217, 165, 17, 0.5);
}

.back-to-top.active {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-hover);
  transform: translateY(-5px);
}

/*---------------------------
    19. Cookie Consent
----------------------------*/
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  z-index: 999;
  transition: var(--transition);
}

.cookie-consent.active {
  bottom: 0;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-content p {
  margin-bottom: 0;
  margin-left: 20px;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  align-items: center;
}

.cookie-accept {
  margin-left: 15px;
}

.cookie-learn-more {
  color: var(--text-color);
  text-decoration: underline;
}

/*---------------------------
    20. Lightbox
----------------------------*/
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.3s ease;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

/* Zoom effect */
.lightbox-content img.zoom-in {
  transform: scale(0.9);
  opacity: 0;
}

.lightbox.active .lightbox-content img.zoom-in {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 22px;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.lightbox-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
}

.lightbox-prev,
.lightbox-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateX(0);
}

.lightbox-prev {
  margin-right: 20px;
  transform: translateX(-20px);
}

.lightbox-next {
  margin-left: 20px;
  transform: translateX(20px);
}

.lightbox.active .lightbox-prev,
.lightbox.active .lightbox-next {
  transform: translateX(0);
  transition: transform 0.4s ease 0.2s, background-color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

/*---------------------------
    21. Notification
----------------------------*/
.notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.notification.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.notification-icon {
  width: 40px;
  height: 40px;
  background-color: #f2ebd5;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-left: 15px;
}

.notification-message {
  color: var(--text-color);
  font-weight: 500;
}

.notification-close {
  margin-right: 15px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.notification-close:hover {
  color: var(--primary-color);
}

.notification.success .notification-icon {
  background-color: #e8f5e9;
  color: #4caf50;
}

.notification.error .notification-icon {
  background-color: #fdecea;
  color: #f44336;
}

/*---------------------------
    22. Media Queries
----------------------------*/
@media (max-width: 1199.98px) {
  h1, .slide-title {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .about-images {
    height: 450px;
  }
  
  .experience-badge {
    width: 100px;
    height: 100px;
  }
  
  .counter-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  h1, .slide-title {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-actions {
    margin-right: 20px;
  }
  
  .about-images {
    height: 400px;
    margin-bottom: 50px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-wrapper {
    padding: 40px;
  }
  
  .footer-top {
    padding: 60px 0 30px;
  }
}

@media (max-width: 767.98px) {
  h1, .slide-title {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .slide-subtitle {
    font-size: 1.2rem;
  }
  
  .about-images {
    height: 350px;
  }
  
  .about-img-2 {
    width: 60%;
  }
  
  .experience-badge {
    width: 90px;
    height: 90px;
  }
  
  .exp-years {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .counter-item {
    margin-bottom: 20px;
  }
  
  .contact-form-wrapper, 
  .contact-info {
    padding: 30px;
  }
  
  .cta-wrapper {
    padding: 30px;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-content p {
    margin-bottom: 15px;
    margin-left: 0;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom-links {
    margin-top: 10px;
    text-align: center !important;
  }
}

@media (max-width: 575.98px) {
  h1, .slide-title {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .slide-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .about-images {
    height: 300px;
  }
  
  .filters-container {
    overflow-x: auto;
    padding-bottom: 5px;
  }
  
  .gallery-filter, 
  .projects-filter {
    flex-wrap: nowrap;
    margin-right: -5px;
    margin-left: -5px;
    width: auto;
    display: inline-flex;
  }
  
  .filter-btn {
    white-space: nowrap;
    margin: 0 5px;
  }
  
  .notification {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
  }
}

/*---------------------------
    23. Additional Utilities
----------------------------*/
.preloader-hide {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.is-invalid {
  border-color: #f44336 !important;
}

.invalid-feedback {
  color: #f44336;
  font-size: 0.875rem;
  margin-top: 5px;
}

.menu-open {
  overflow: hidden;
}

/* CSS for Form Feedback Styles */
.form-control.is-invalid {
  background-image: none;
  box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.25);
}

.form-control.is-valid {
  background-image: none;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.25);
}

/* Additional animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

/* CSS for Isotope transitions */
.gallery-item,
.project-item {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

/* Additional CSS for form success animation */
@keyframes checkmark {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
}

.success-checkmark .check-icon .icon-line {
  stroke: #4CAF50;
  stroke-width: 8;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: checkmark 1s ease-in-out forwards;
}

.success-checkmark .check-icon .icon-circle {
  stroke: #4CAF50;
  stroke-width: 4;
  fill: none;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .back-to-top,
  .cookie-consent,
  .notification,
.lightbox {
    display: none !important;
  }
  
  body {
    background-color: #fff;
    color: #000;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
} 

/* תיקון לסגנונות חסרים עבור גלריית העבודות */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 250px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-rgb), 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-info {
  text-align: center;
  color: #fff;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white-color);
}

.gallery-info p {
  font-size: 14px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.gallery-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.gallery-view:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* תיקון לסגנונות חסרים עבור כפתורי הסינון */
.gallery-filter,
.projects-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 20px;
  background-color: #f0f4f8;
  border: none;
  border-radius: 30px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: #fff;
}

/* סגנונות לסקשן הפרויקטים */
#projects {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

#projects:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.png');
  opacity: 0.03;
  z-index: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(246, 192, 24, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white-color);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 50px;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.project-actions {
  display: flex;
  gap: 15px;
}

.project-link,
.project-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--primary-color);
  font-size: 18px;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-card:hover .project-link,
.project-card:hover .project-view {
  transform: translateY(0);
  opacity: 1;
}

.project-link:hover,
.project-view:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
}

.project-card:hover .project-link {
  transition-delay: 0.1s;
}

.project-card:hover .project-view {
  transition-delay: 0.2s;
}

.project-details {
  padding: 25px;
}

.project-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-color);
  transition: color 0.3s ease;
}

.project-card:hover .project-title {
  color: var(--primary-color);
}

.project-desc {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.project-client {
  display: flex;
  align-items: center;
}

.project-client i {
  color: var(--primary-color);
  margin-left: 8px;
}

.project-date {
  color: var(--text-lighter);
  font-size: 14px;
}

/* רספונסיביות לסקשן הפרויקטים */
@media (max-width: 1199.98px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991.98px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  #projects {
    padding: 70px 0;
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .project-image {
    height: 220px;
  }
  
  .project-details {
    padding: 20px;
  }
  
  .project-title {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-image {
    height: 200px;
  }
}

/* Gallery Section Styles */
.gallery-section {
  position: relative;
  background-color: var(--white-color);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, 
.filter-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--dark-color);
}

.gallery-masonry .row {
  margin-right: -10px;
  margin-left: -10px;
}

.gallery-item {
  padding: 10px;
  transition: all 0.4s ease;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: transform 0.5s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.gallery-image img {
  width: 100%;
  height: 300px; /* Fixed height for consistent look */
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item.col-lg-6 .gallery-image img {
  height: 400px; /* Taller images for larger grid items */
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.gallery-info {
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.gallery-card:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-info h4 {
  color: var(--white-color);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.gallery-info p {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.gallery-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

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

/* Gallery Compact Styles - Updated */
.gallery-compact .row {
  margin-right: -5px;
  margin-left: -5px;
}

.gallery-compact-item {
  padding: 5px;
}

.gallery-compact .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-compact .gallery-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-compact .gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}

.gallery-compact .gallery-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 12px;
}

.gallery-compact .gallery-card:hover .gallery-image img {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.1);
}

.gallery-compact .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-compact .gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-compact .gallery-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  transform: scale(0.8);
}

.gallery-compact .gallery-card:hover .gallery-view {
  transform: scale(1);
}

.gallery-compact .gallery-view:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

/* New - Image Link Style */
.gallery-img-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: inherit;
  text-decoration: none;
}

/* Media Queries for Gallery Compact */
@media (min-width: 768px) {
  .gallery-compact .gallery-image img {
    height: 200px;
  }
}

@media (min-width: 992px) {
  .gallery-compact .gallery-image img {
    height: 220px;
  }
}

/* CTA Section - Enhanced */
.cta-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--bg-light);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)), url('../images/pattern.png');
  background-size: cover;
}

.cta-wrapper {
  position: relative;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 50px;
  overflow: hidden;
}

.cta-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 0 0 0 100%;
  z-index: 1;
}

.cta-wrapper:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color);
  opacity: 0.05;
  border-radius: 0 100% 0 0;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
}

.cta-content h2:after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: 0;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.cta-features {
  margin: 25px 0 20px;
  list-style: none;
}

.cta-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--text-color);
  font-weight: 500;
}

.cta-features li i {
  margin-left: 10px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.cta-content p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: var(--text-light);
}

.cta-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  transition: var(--transition);
}

.cta-phone i {
  width: 40px;
  height: 40px;
  background-color: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: var(--transition);
}

.cta-phone:hover {
  color: var(--primary-color);
}

.cta-phone:hover i {
  background-color: var(--primary-color);
  color: var(--dark-color);
  transform: scale(1.05);
}

.cta-image {
  position: relative;
  z-index: 2;
  max-height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.cta-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cta-image:hover img {
  transform: scale(1.05);
}

.cta-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

@media (max-width: 991.98px) {
  .cta-wrapper {
    padding: 40px;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-image {
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-wrapper {
    padding: 30px;
  }
  
  .cta-content h2 {
    font-size: 1.6rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cta-image {
    max-height: 220px;
  }
  
  .cta-image img {
    height: 220px;
  }
} 

/* Full Gallery Modal Styles */
.full-gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 9998;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.full-gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.full-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  background-color: #fff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.full-gallery-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--dark-color);
}

.full-gallery-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.full-gallery-close:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.full-gallery-content {
  padding: 30px 0 50px;
}

.full-gallery-content .row {
  margin-right: -10px;
  margin-left: -10px;
}

.full-gallery-item {
  padding: 10px;
}

.full-gallery-content .gallery-image img {
  height: 220px;
}

.full-gallery-content .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 220px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.full-gallery-content .gallery-card:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Enhanced Full Gallery Image Effects */
.full-gallery-content .gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.full-gallery-content .gallery-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 15px;
}

.full-gallery-content .gallery-card:hover .gallery-image img {
  transform: scale(1.15);
  filter: brightness(1.15) contrast(1.1) saturate(1.1);
}

.full-gallery-content .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(3px);
  border-radius: 15px;
}

.full-gallery-content .gallery-card:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}

.full-gallery-content .gallery-view {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #e5b116);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.4s ease;
  transform: scale(0.7) rotate(-10deg);
  box-shadow: 0 8px 25px rgba(217, 165, 17, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.full-gallery-content .gallery-card:hover .gallery-view {
  transform: scale(1) rotate(0deg);
  background: linear-gradient(135deg, var(--white-color), #f5f5f5);
  color: var(--primary-color);
  box-shadow: 0 12px 35px rgba(217, 165, 17, 0.5);
  border-color: var(--primary-color);
}

.full-gallery-content .gallery-view:hover {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, var(--primary-color), #d49c15);
  color: var(--dark-color);
}

/* Full Gallery Lightbox */
.full-gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.full-gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* Additional styles for gallery responsiveness */
@media (max-width: 767.98px) {
  .full-gallery-content .gallery-image img {
    height: 180px;
  }
  
  .full-gallery-content .gallery-card {
    height: 180px;
  }
  
  .full-gallery-content .gallery-view {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .full-gallery-content .gallery-card:hover {
    transform: scale(1.04) translateY(-4px);
  }
  
  .full-gallery-header {
    padding: 15px 20px;
  }
  
  .full-gallery-header h3 {
    font-size: 1.3rem;
  }
  
  .full-gallery-content {
    padding: 20px 0 40px;
  }
  
  .full-gallery-item {
    padding: 5px;
  }
}

/* Animation for the full gallery items */
.full-gallery-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.full-gallery-modal.active .full-gallery-item {
  opacity: 1;
  transform: translateY(0);
}

/* Adding delay to each gallery item to create a staggered effect */
.full-gallery-modal.active .full-gallery-item:nth-child(1) { transition-delay: 0.1s; }
.full-gallery-modal.active .full-gallery-item:nth-child(2) { transition-delay: 0.15s; }
.full-gallery-modal.active .full-gallery-item:nth-child(3) { transition-delay: 0.2s; }
.full-gallery-modal.active .full-gallery-item:nth-child(4) { transition-delay: 0.25s; }
.full-gallery-modal.active .full-gallery-item:nth-child(5) { transition-delay: 0.3s; }
.full-gallery-modal.active .full-gallery-item:nth-child(6) { transition-delay: 0.35s; }
.full-gallery-modal.active .full-gallery-item:nth-child(7) { transition-delay: 0.4s; }
.full-gallery-modal.active .full-gallery-item:nth-child(8) { transition-delay: 0.45s; }
.full-gallery-modal.active .full-gallery-item:nth-child(9) { transition-delay: 0.5s; }
.full-gallery-modal.active .full-gallery-item:nth-child(10) { transition-delay: 0.55s; }
.full-gallery-modal.active .full-gallery-item:nth-child(11) { transition-delay: 0.6s; }
.full-gallery-modal.active .full-gallery-item:nth-child(12) { transition-delay: 0.65s; }
.full-gallery-modal.active .full-gallery-item:nth-child(13) { transition-delay: 0.7s; }
.full-gallery-modal.active .full-gallery-item:nth-child(14) { transition-delay: 0.75s; }
.full-gallery-modal.active .full-gallery-item:nth-child(15) { transition-delay: 0.8s; }
.full-gallery-modal.active .full-gallery-item:nth-child(16) { transition-delay: 0.85s; }

/* Style for the outline primary button */
.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.btn-outline-primary:after {
  background-color: var(--primary-color);
}

/* Add margin spacing for button */
.ms-2 {
  margin-right: 0.5rem !important;
} 

@media (max-width: 767.98px) {
  .gallery-compact .gallery-card {
    height: 150px;
  }
  
  .gallery-compact .gallery-image img {
    height: 150px;
  }
  
  .gallery-compact .gallery-view {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .gallery-compact .gallery-card:hover {
    transform: scale(1.02) translateY(-2px);
  }
}

/* סגנונות לפוטר - רקע כהה */
.footer .contact-info-text p {
  color: #f0f0f0;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.footer .contact-info-text a {
  color: #f0f0f0;
  font-size: 1.05rem;
  transition: var(--transition);
}

.footer .contact-info-text a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding: 25px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 30px;
  background-color: rgba(0, 0, 0, 0.2);
}

/* Form Alert Messages */
.alert {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.success-icon,
.error-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.success-icon {
  background-color: #28a745;
  color: #fff;
}

.error-icon {
  background-color: #dc3545;
  color: #fff;
}

.success-text h4,
.error-text h4 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.success-text p,
.error-text p {
  margin: 0;
  font-size: 1rem;
}

/* Button Loading State */
.btn-spinner {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-spinner {
  display: inline-block;
}

/* Form Labels */
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 0.95rem;
}

/* סגנונות לאייקונים כלינקים */
a.contact-info-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--dark-color);
  font-size: 1.1rem;
  margin-left: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217, 165, 17, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

a.contact-info-icon:hover {
  background-color: var(--primary-hover);
  color: var(--dark-color);
  transform: scale(1.05);
}

/* הוספת סגנונות עבור הפוטר */
.footer a.contact-info-icon {
  width: 42px;
  height: 42px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--dark-color);
  font-size: 1.1rem;
  margin-left: 15px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(246, 192, 24, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a.contact-info-icon:hover {
  background-color: var(--primary-hover);
  color: var(--dark-color);
  transform: scale(1.1);
}