     * {
          box-sizing: border-box; /* Previne depasirea continutului */
        }

        html, body {
          max-width: 100%; /* Blocheaza derapajul orizontal */
          overflow-x: hidden; /* Ascunde orice derapaj orizontal */
        }

        .container, .container-fluid {
          padding-left: 15px;
          padding-right: 15px;
          overflow: hidden; /* Ascunde continutul care depaseste */
        }

        /* Carusel - ajustari pentru ecrane mici */
        @media (max-width: 767px) {
          .hero-carousel, .carousel-item {
            height: 60vh; /* Reducem inaltimea pe mobil */
          }
        
          .hero-content h1 {
            font-size: 2rem; /* Titlu mai mic pe mobil */
          }
        
          .card-img-top {
            height: 200px; /* Imagini mai mici pe mobil */
          }
        
          /* Impiedica depasirea caruselului de produse */
          .products-carousel .owl-stage-outer {
            overflow: hidden;
          }
        
          /* Ajustare navbar pe ecrane mici */
          .navbar-collapse {
            max-height: 70vh;
            overflow-y: auto;
          }
        }

        /* Asigura continutul in limitele containerului */
        .row {
          margin-left: 0;
          margin-right: 0;
        }

        .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
          padding-left: 15px;
          padding-right: 15px;
        }

        /* Rezolvare problema specifica pentru carusel */
        .carousel-inner {
          overflow: visible; /* Permite continutul sa fie vizibil doar in limite */
        }

        /* CSS-ul original */
        :root {
          --primary-color: #9678b6;
          --secondary-color: #5d4b71;
          --accent-color: #d8bfd8;
          --text-color: #333;
          --light-bg: #f8f5fa;
        }

        body {
          font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
          color: var(--text-color);
        }
        .logo span {
          font-weight: 800;
          color: var(--accent-color) !important;
          text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
        }

        .navbar {
          background: linear-gradient(135deg, #967bb6 0%, #b388d6 50%, #e4c2f3 100%);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
          padding: 15px 0;
          transition: all 0.4s ease;
        }

        .navbar-brand img {
          height: 80px;
          transition: all 0.4s ease;
          border: double 2px var(--primary-color);
          border-radius: 50%;
        }

        .nav-link {
          color: var(--light-bg) !important;
          font-weight: 600;
          font-size: medium;
          margin: 0 10px;
          transition: all 0.3s;
          position: relative;
          text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2);
        }

        .nav-link:after {
          content: "";
          position: absolute;
          width: 0;
          height: 2px;
          bottom: 0;
          left: 0;
          background-color: var(--primary-color);
          transition: width 0.3s;
        }

        .nav-link:hover:after {
          width: 100%;
        }

        .nav-link.active {
          color: var(--light-bg) !important;
        }

        .nav-link.active:after {
          width: 100%;
        }

        /* Carusel Hero Section */
        .hero-carousel {
          height: 100vh;
        }

        .carousel-item {
          height: 100vh;
          background-size: cover;
          background-position: center;
        }

        .carousel-item:nth-child(1) {
          background-image: linear-gradient(
              rgba(0, 0, 0, 0.1),
              rgba(0, 0, 0, 0.1)
          ),
          url("./imagini/6.jpg");
        }

        .carousel-item:nth-child(2) {
          background-image: linear-gradient(
              rgba(0, 0, 0, 0.1),
              rgba(0, 0, 0, 0.1)
          ),
          url("./imagini/fundal.jpg");
        }

        .carousel-item:nth-child(3) {
          background-image: linear-gradient(
              rgba(0, 0, 0, 0.1),
              rgba(0, 0, 0, 0.1)
          ),
          url("./imagini/2.jpg");
        }

        .carousel-item:nth-child(4) {
          background-image: linear-gradient(
              rgba(0, 0, 0, 0.1),
              rgba(0, 0, 0, 0.1)
          ),
          url("./imagini/produse_bg.jpg");
        }

        .hero-content {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          text-align: center;
          color: white;
          width: 100%;
        }

        .hero-content h1 {
          font-size: 4rem;
          font-weight: 700;
          margin-bottom: 20px;
          text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .section-title {
          position: relative;
          margin-bottom: 50px;
          text-align: center;
          color: var(--secondary-color);
        }

        .section-title:after {
          content: "";
          position: absolute;
          bottom: -15px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 3px;
          background: var(--primary-color);
        }

        .section-padding {
          padding: 100px 0;
        }

        .bg-light-purple {
          background-color: var(--light-bg);
        }

        .card {
          border: none;
          border-radius: 15px;
          overflow: hidden;
          transition: transform 0.3s, box-shadow 0.3s;
          margin-bottom: 30px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .card-img-top {
          height: 300px;
          object-fit: contain;
        }

        .btn-primary {
          background-color: var(--primary-color);
          border: none;
          padding: 12px 30px;
          border-radius: 30px;
          font-weight: 600;
          transition: all 0.3s;
        }

        .btn-primary:hover {
          background-color: var(--secondary-color);
          transform: translateY(-3px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .review-card {
          height: 350px;
          background: white;
          border-radius: 15px;
          padding: 30px;
          margin: 20px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .review-text {
          font-style: italic;
          margin-bottom: 20px;
          position: relative;
          padding-left: 30px;
        }

        .review-text:before {
        content: "";
          position: absolute;
          left: 0;
          top: -15px;
          font-size: 60px;
          color: var(--accent-color);
          font-family: Georgia, serif;
        }

        .review-author {
          display: flex;
          align-items: center;
        }

        .review-author img {
          width: 60px;
          height: 60px;
          border-radius: 50%;
          margin-right: 15px;
          object-fit: cover;
        }

        .feature-icon {
          font-size: 3rem;
          color: var(--primary-color);
          margin-bottom: 20px;
        }

        .feature-item {
          text-align: center;
          padding: 30px 20px;
          transition: all 0.3s;
        }

        .feature-item:hover {
          transform: translateY(-10px);
        }

        .gallery-item {
          margin-bottom: 30px;
          overflow: hidden;
          border-radius: 15px;
          position: relative;
        }

        .gallery-item img {
          transition: transform 0.5s;
          height: 250px;
          width: 100%;
          object-fit: cover;
        }

        .gallery-item:hover img {
          transform: scale(1.1);
        }

        .gallery-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(150, 120, 182, 0.7);
          display: flex;
          align-items: center;
          justify-content: center;
          opacity: 0;
          transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
          opacity: 1;
        }

        .gallery-overlay i {
          color: white;
          font-size: 3rem;
        }

        .contact-info {
          display: flex;
          align-items: center;
          margin-bottom: 20px;
        }

        .contact-icon {
          width: 60px;
          height: 60px;
          background: var(--primary-color);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          font-size: 1.5rem;
          margin-right: 20px;
          flex-shrink: 0;
        }

        .contact-text {
          font-size: 1.1rem;
        }

        .contact-text a {
          color: var(--secondary-color);
          text-decoration: none;
          transition: all 0.3s;
        }

        .contact-text a:hover {
          color: var(--primary-color);
          text-decoration: underline;
        }

        .map-container {
          height: 400px;
          border-radius: 15px;
          overflow: hidden;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        footer {
          background: var(--secondary-color);
          color: white;
          padding: 70px 0 20px;
        }

        .footer-title {
          position: relative;
          margin-bottom: 25px;
          padding-bottom: 10px;
          font-weight: 600;
        }

        .footer-title:after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          width: 50px;
          height: 2px;
          background: var(--accent-color);
        }

        .footer-links a {
          display: block;
          color: rgba(255, 255, 255, 0.7);
          text-decoration: none;
          margin-bottom: 10px;
          transition: all 0.3s;
        }

        .footer-links a:hover {
          color: white;
          padding-left: 5px;
        }

        .copyright {
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          padding-top: 20px;
          margin-top: 50px;
          text-align: center;
          color: rgba(255, 255, 255, 0.6);
        }

        .lang-switcher {
          margin-left: 20px;
        }

        .lang-btn {
          background: transparent;
          border: 1px solid var(--primary-color);
          color: var(--primary-color);
          border-radius: 5px;
          padding: 5px 15px;
          transition: all 0.3s;
        }

        .lang-btn.active {
          background: var(--primary-color);
          color: white;
        }

        .lang-btn:not(.active):hover {
          background: rgba(150, 120, 182, 0.1);
        }

        .accommodation-image {
          height: 300px;
          width: 100%;
          object-fit: cover;
          border-radius: 15px;
          margin-bottom: 20px;
        }

        .program-table {
          width: 100%;
          border-collapse: collapse;
          margin-top: 20px;
        }

        .program-table th,
        .program-table td {
          padding: 12px 15px;
          text-align: left;
          border-bottom: 1px solid #eee;
        }

        .program-table th {
          background-color: var(--light-bg);
          color: var(--secondary-color);
        }

        .program-table tr:hover {
          background-color: rgba(150, 120, 182, 0.05);
        }

        .auto-call-btn {
          background-color: var(--primary-color);
          display: inline-flex;
          align-items: center;
          padding: 10px 25px;
          border-radius: 30px;
          color: white;
          font-weight: 600;
          text-decoration: none;
          transition: all 0.3s;
          margin-top: 20px;
        }

        .auto-call-btn i {
          margin-right: 10px;
          font-size: 1.2rem;
        }

        .auto-call-btn:hover {
          background-color: var(--secondary-color);
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          color: white;
        }

        .owl-nav {
          text-align: center;
          margin-top: 20px;
        }

        .owl-prev,
        .owl-next {
          display: inline-block;
          width: 40px;
          height: 40px;
          background: var(--primary-color) !important;
          color: white !important;
          border-radius: 50% !important;
          margin: 0 10px;
          font-size: 1.5rem !important;
          line-height: 40px !important;
          transition: all 0.3s;
        }

        .owl-prev:hover,
        .owl-next:hover {
          background: var(--secondary-color) !important;
        }

        .owl-dots {
          text-align: center;
          margin-top: 20px;
        }

        .owl-dot {
          width: 12px;
          height: 12px;
          border-radius: 50%;
          /* background: #ddd !important; */
          margin: 0 5px;
          display: inline-block;
        }

        /* .owl-dot.active {
          background: var(--primary-color) !important;
        } */
        .review-btn {
                  display: inline-flex;
                  align-items: center;
                  background-color: var(--primary-color);
                  color: white;
                  padding: 10px 20px;
                  border-radius: 30px;
                  text-decoration: none;
                  font-weight: 600;
                  margin-top: 20px;
                  transition: all 0.3s;
              }
              
              .review-btn:hover {
                  background-color: var(--secondary-color);
                  transform: translateY(-3px);
                  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                  color: white;
              }
              
              .review-btn i {
                  margin-right: 10px;
                  font-size: 1.2rem;
              }
              
        /* Produse Carousel */
        .products-carousel .card {
          margin: 0 15px;
          background-color: var(--primary-color);
          color: white;
        }

        /* Equal height columns */
        .equal-height-row {
          display: flex;
          flex-wrap: wrap;
        }

        .equal-height-row > [class*="col-"] {
          display: flex;
          flex-direction: column;
        }

        .equal-height-row > [class*="col-"] > * {
          flex: 1;
        }

        /* Custom close button for lightbox */
        .lb-close {
          position: absolute;
          top: 20px;
          right: 20px;
          z-index: 9999;
          background: rgba(0, 0, 0, 0.7);
          width: 50px;
          height: 50px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 30px;
          color: white;
          cursor: pointer;
          transition: all 0.3s;
        }

        .lb-close:hover {
          background: var(--primary-color);
          transform: rotate(90deg);
        }

        @media (max-width: 991px) {
          .hero-content h1 {
            font-size: 3rem;
          }

          .section-padding {
            padding: 70px 0;
          }

          .navbar-brand img {
            height: 50px;
          }
        }

      @media (max-width: 767px) {
        .hero-content h1 {
          font-size: 2.5rem;
        }

        .section-title {
          font-size: 1.8rem;
        }

        .contact-info {
          flex-direction: column;
          text-align: center;
        }

        .contact-icon {
          margin-right: 0;
          margin-bottom: 15px;
        }

        .lang-switcher {
          margin-top: 15px;
          margin-left: 0;
          width: 100%;
          text-align: center;
        }
      }