#home-page {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

#home-hero {
  position: relative;
  height: 60vh;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#home-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(173, 178, 212, 0.95) 0%,
    rgba(199, 217, 221, 0.95) 100%
  );
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(173, 178, 212, 0.4);
  color: white;
  text-align: center;
  backdrop-filter: blur(10px);
  z-index: 2;
}

#home-hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: bold;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  opacity: 0.8;
}

#home-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#recommendation-image-column-container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.recommendation-image-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recommendation-image {
  width: 100%;
}

.recommendation-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* #recommendation-image-column-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.recommendation-image-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.recommendation-image {
  width: 90%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.recommendation-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

#home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-description-section {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
}

#home-description-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

#home-description-section p {
  font-size: 1.3em;
  line-height: 1.6;
  color: #4f4f4f;
  margin: 0 0 15px 0;
  text-align: center;
}

#home-description-section p:last-child {
  margin-bottom: 0;
}

#home-services {
  margin: 60px 0;
}

#home-services h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(173, 178, 212, 0.3);
}

.service-card h3 {
  color: #adb2d4;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.service-card p {
  color: #4f4f4f;
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 15px;
}

.service-card a {
  display: inline-block;
  background: linear-gradient(135deg, #adb2d4 0%, #c7d9dd 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(173, 178, 212, 0.3);
}

.service-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(173, 178, 212, 0.5);
}

#home-recommendations {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  padding: 40px;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#home-recommendations h2 {
  margin-bottom: 30px;
  font-size: 2.5em;
  color: #333;
  font-weight: bold;
  text-align: center;
}

.carousel-container {
  width: 100%;
  max-width: 1000px;
}

.recommendation-carousel-card {
  height: 300px;
  background-color: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 15px;
  padding: 30px;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-in-out;
}

.recommendation-carousel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.recommendation-carousel-card p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #4f4f4f;
  text-align: right;
  direction: rtl;
}

/* Responsive design */
@media only screen and (max-width: 1200px) {
  #home-hero {
    height: 50vh;
    margin-bottom: 30px;
  }

  #home-hero-content {
    width: 85%;
    padding: 30px;
  }

  #home-hero-content h1 {
    font-size: 2.5em;
  }

  #home-description-section {
    padding: 30px;
    margin: 30px 0;
  }

  #home-description-section h2 {
    font-size: 2em;
  }

  #home-description-section p {
    font-size: 1.2em;
  }

  #home-services h2 {
    font-size: 2em;
  }

  #home-recommendations {
    padding: 30px;
    margin: 30px 0;
  }

  #home-recommendations h2 {
    font-size: 2em;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  #recommendation-image-column-container {
    gap: 15px;
  }
}

/* 2 cards per row on tablets */
@media (max-width: 768px) {
  #home-hero {
    height: 40vh;
  }

  #home-hero-content {
    width: 90%;
    padding: 25px;
  }

  #home-hero-content h1 {
    font-size: 2em;
  }

  #home-description-section,
  #home-recommendations {
    padding: 20px;
    margin: 20px 0;
  }

  #home-description-section p {
    font-size: 1.1em;
  }

  #home-services h2,
  #home-recommendations h2 {
    font-size: 1.8em;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  #recommendation-image-column-container {
    flex-direction: column;
    gap: 10px;
  }
}

/* 1 card per row on mobile */
@media (max-width: 480px) {
  #home-hero {
    height: 35vh;
  }

  #home-hero-content {
    width: 95%;
    padding: 20px;
  }

  #home-hero-content h1 {
    font-size: 1.8em;
  }

  .hero-subtitle {
    font-size: 1.3em;
  }

  .hero-description {
    font-size: 1.1em;
  }

  #home-description-section,
  #home-recommendations {
    padding: 15px;
    margin: 15px 0;
  }

  #home-services h2,
  #home-recommendations h2 {
    font-size: 1.5em;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  #recommendation-image-column-container {
    flex-direction: column;
    gap: 10px;
  }

  .recommendation-image-column {
    gap: 10px;
  }
}
