        :root {
            --primary-blue: #2E5D8A;
            --light-blue: #4A90A4;
            --accent-orange: #FF6B35;
            --dark-purple: #2D1B2E;
            --dark-soft: #25182c;
        }

        body {
            font-family: 'Verdana', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }

        .text-justify {
            text-align: justify;
        }

        /* Padding */
        .pl-3 {
            padding-left: 5px;
        }

        /* Spacing */
        .mb-3 {
            margin-bottom: 5px;
        }

        .mr-3 {
            margin-right: 5px;
        }

        /* Header */
        .navbar {
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1.4rem 0;
        }

        .navbar-brand img {
            height: 70px;
        }

        .navbar-nav .nav-link {
            color: var(--dark-soft) !important;
            font-weight: 500;
            margin: 0 10px;
        }

        .btn-login {
            background: var(--accent-orange);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
        }

        .navbar-cosy .btn-cosy,
        .navbar-cosy .btn-cosy-white {
            padding: 16px 24px;
        }

        .btn-outline-primary {
            background: #fff !important;
            border: 2px solid #eee !important;
            border-radius: 20px !important;
            color: #000 !important;
            padding: 16px 24px;
            margin-right: 5px;
        }

        .btn-primary {
            border: 2px solid #eee !important;
            border-radius: 20px !important;
            background: #653279 !important;
            border-radius: 20px !important;
            color: #fff !important;
            padding: 16px 24px;
        }





        /* Destinations Section */
        .destinations-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            color: black;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-text {
            width: 50%;
            margin: 0 auto;
            text-align: justify;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .services-text {
            color: #55575b;
            font-size: 20px;
            font-weight: 400;
            letter-spacing: -.01em;
            line-height: 150%;
            margin-top: 24px;
            text-align: left;
        }

        .destination-card {

            position: relative;
            min-height: 327px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

        }

        .destination-card-home {

            position: relative;
            min-height: 250px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

        }


        .destination-card-home img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 40px 20px 95px;
            text-align: center;
        }

        .destination-name {
            font-size: 1.3rem;
            font-weight: bold;
        }

        .destination-button {
            background: #fff;
            border: 2px solid #eee;
            border-radius: 24px;
            box-shadow: 0 15px 32px rgba(0, 0, 0, .05);
            height: 72px;
            width: 119px;

            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            /* opzionale, per rimuovere sottolineatura */
            color: #000;
            /* opzionale, cambia il colore del testo */
        }

        .headDestination {
            margin-left: auto;
            margin-right: auto;
            max-width: 600px;
        }

        .destination-card img {
            width: 100%;
            height: 327px;
            object-fit: cover;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: white;
        }

        .service-card {
            background: white;
            overflow: hidden;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .service-card img {
            width: 100%;
            height: 300px;
            border-radius: 15px;
            object-fit: cover;
        }

        .service-content {
            padding: 20px 0;
        }

        .service-title {
            color: var(--primary-blue);
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .service-text {
            font-feature-settings: "calt" off;
            color: #55575b;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: -.01em;
            line-height: 150%;
            margin-top: 24px;
            text-align: justify;
        }

        /* Story Section */
        .story-section {
            background: var(--dark-purple);
            color: white;
            padding: 80px 0;
        }

        .story-image {
            border-radius: 15px;
            overflow: hidden;
        }

        .story-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .story-content h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        /* Tours Slider */
        /* Tours Slider */
        .tours-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        /* Header con titolo e frecce */
        .tours-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .section-title {
            margin: 0;
        }

        /* Contenitore per le frecce personalizzate */
        .custom-arrows {
            display: flex;
            gap: 15px;
        }

        .custom-arrow {
            width: 50px;
            height: 50px;
            border: 2px solid var(--primary-blue);
            background: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--primary-blue);
            font-size: 18px;
        }

        .custom-arrow:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }

        .custom-arrow:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Nascondi le frecce native di Slick */
        .tours-slider .slick-prev,
        .tours-slider .slick-next {
            display: none !important;
        }

        .tour-card {
            overflow: hidden;
            margin: 0 15px;
        }

        .tour-card img {
            width: 100%;
            height: 430px;
            object-fit: cover;
            border-radius: 15px;
        }

        .tour-content {
            padding: 5px;
            box-shadow: none;
        }

        .tour-title {
            color: var(--primary-blue);
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .tour-price {
            color: var(--accent-orange);
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .tours-header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .custom-arrow {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
        }


        /* Hero Slider Custom Controls */
        .hero-slider .slick-arrow {
            position: absolute !important;
            bottom: 30px !important;
            top: auto !important;
            width: 50px !important;
            height: 50px !important;
            /* background: rgba(255, 255, 255, 0.9) !important; */
            border: 2px solid #fff;
            border-radius: 16px;
            z-index: 10 !important;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: none !important;
        }

        .hero-slider .slick-arrow:hover {
            position: absolute !important;
            bottom: 30px !important;
            top: auto !important;
            width: 50px !important;
            height: 50px !important;
            /* background: rgba(255, 255, 255, 0.9) !important; */
            border: 2px solid #fff;
            border-radius: 16px;
            z-index: 10 !important;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: none !important;
            /*background: rgba(255, 255, 255, 1) !important; */
        }

        .hero-slider .slick-prev {
            bottom: 30px !important;
            right: 100px !important;
            left: auto !important;
        }

        .hero-slider .slick-next {
            bottom: 30px !important;
            right: 40px !important;
            left: auto !important;
        }

        .hero-slider .slick-arrow:before {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 16px;
            color: white;
            opacity: 1;
            position: absolute;
            top: 50%;
            left: 35%;
            transform: translate(-50%, -50%);
        }

        .hero-slider .slick-prev:before {
            border-right: 8px solid #fff;
            border-bottom: 8px solid transparent;
            border-top: 8px solid transparent;
            content: "";
            display: inline-block;
            margin: 0 5px;
            /*content: '\f104'; */
        }

        .hero-slider .slick-next:before {
            /*content: '\f105'; */
            border-left: 8px solid #fff;
            border-bottom: 8px solid transparent;
            border-top: 8px solid transparent;
            content: "";
            display: inline-block;
            margin: 0 5px;
        }

        .hero-slider .slick-dots {
            position: absolute;
            bottom: 30px;
            left: 40px;
            width: auto;
            display: flex !important;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .hero-slider .slick-dots li {
            width: 12px;
            height: 12px;
            margin-right: 8px;
        }

        .hero-slider .slick-dots li button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            padding: 0;
            font-size: 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-slider .slick-dots li button:before {
            display: none;
        }

        .hero-slider .slick-dots li.slick-active button {
            background: white;
        }



        /* Footer */
        .footer {
            background: var(--dark-purple);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }

        .newsletter-section {
            background: var(--primary-blue);
            padding: 40px 0;
            text-align: center;
        }

        .newsletter-input {
            border: none;
            padding: 12px 20px;
            border-radius: 25px;
            margin-right: 10px;
            width: 300px;
        }

        .btn-newsletter {
            background: var(--accent-orange);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
        }

        .imgButton {
            margin-left: 8px;
            margin-right: 8px;
        }

        /* Responsive */
        @media (max-width: 768px) {

            .newsletter-input {
                width: 100%;
                margin-bottom: 15px;
                margin-right: 0;
            }
        }


        .dropdown-item.active {
            background-color: rgba(0, 0, 0, 0.1);
            font-weight: 500;
        }

        .dropdown-item:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        .dropdown-toggle {
            border: none;
            background: transparent;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            min-height: 40px;
            min-width: 60px;
            justify-content: center;
        }

        .dropdown-toggle:focus {
            box-shadow: none;
            outline: none;
        }

        .language-btn {
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            padding: 0.375rem 1rem;
            transition: background-color 0.15s ease-in-out;
        }

        .language-btn:hover {
            background-color: #f8f9fa;
        }

        .dropdown-item.active.disabled {
            background-color: #e9ecef;
            font-weight: 500;
            cursor: default;
            pointer-events: none;
        }

        .dropdown-menu {
            min-width: 120px;
        }

        /* Rimuovi i margini dei form */
        .dropdown-menu form {
            margin: 0;
        }

        .dropdown-menu li {
            margin: 0;
        }



        .main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
        }

        .small-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            height: 400px;
        }

        .small-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .small-images .small-image:first-child {
            grid-row: span 2;
        }

        .badge-category {
            margin-top: 8px;
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 20px;
        }

        .price-section {
            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            position: sticky;
            top: 20px;
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
            color: #333;
        }

        .btn-book {
            background-color: #6f42c1;
            color: white;
            padding: 12px 0;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            width: 100%;
            margin-top: 20px;
        }

        .btn-book:hover {
            background-color: #5a359a;
            color: white;
        }

        .form-control,
        .form-select {
            border-radius: 8px;
            border: 2px solid #e9ecef;
            padding: 12px 15px;
            margin-bottom: 15px;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #6f42c1;
            box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
        }

        .accessibility-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .accessibility-subtitle {
            font-size: .9rem;
            margin-bottom: 10px;
        }

        .accessibility-icons {
            display: flex;
            gap: 30px;
            margin: 20px 0;
        }

        .accessibility-item {
            text-align: center;
        }

        .accessibility-item i {
            font-size: 1.5rem;
            color: #6c757d;
            margin-bottom: 5px;
        }

        .itinerary-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .disponibility-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin: 30px 0 15px 0;
            color: #333;
        }

        .itinerary-list {
            list-style: none;
            padding: 0;
        }

        .itinerary-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        .itinerary-list li:last-child {
            border-bottom: none;
        }

        .rating-stars {
            color: #ffc107;
            margin-bottom: 10px;
        }

        .tour-info {
            display: flex;
            gap: 20px;
            margin: 15px 0;
            font-size: 0.9rem;
            color: #6c757d;
        }

        .tour-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .gallery {
            display: grid;
            grid-template-columns: 0.9fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 0.75rem;
            height: 600px;
            border-radius: 1rem;
            overflow: hidden;

        }

        .gallery figure {
            margin: 0;
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
            cursor: pointer;

        }



        .gallery img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;

        }


        /* Immagine principale - grande a sinistra, occupa entrambe le righe */
        .gallery figure:nth-child(1) {
            grid-row: 1 / 3;
            grid-column: 1;
            border-radius: 1rem 0.5rem 0.5rem 1rem;
        }

        /* Immagine 2 - in alto a destra */
        .gallery figure:nth-child(2) {
            grid-row: 1;
            grid-column: 2;
            border-radius: 0.5rem 1rem 0.5rem 0.5rem;
        }

        /* Immagine 3 - in basso a sinistra (nella colonna destra) */
        .gallery figure:nth-child(3) {
            grid-row: 2;
            grid-column: 2;
            border-radius: 0.5rem 0.5rem 0.5rem 1rem;
        }

        /* Immagine 4 - in basso a destra (nella colonna destra) */
        .gallery figure:nth-child(4) {
            grid-row: 2;
            grid-column: 2;
            border-radius: 0.5rem 0.5rem 1rem 0.5rem;
            margin-left: 50.75%;
            width: 49.25%;
        }

        /* Aggiustamento per immagine 3 quando c'è anche la 4 */
        .gallery figure:nth-child(3):nth-last-child(2) {
            width: 49.25%;
            margin-right: 0.75rem;
        }







        /* Responsive design */
        @media (max-width: 768px) {
            .gallery {
                grid-template-columns: 1fr;
                grid-template-rows: 60vh auto auto auto;
                height: auto;
                gap: 1rem;
            }

            .gallery figure:nth-child(1) {
                grid-row: 1;
                grid-column: 1;
                border-radius: 1rem 1rem 0.5rem 0.5rem;
                width: 100%;
                margin: 0;
            }

            .gallery figure:nth-child(2) {
                grid-row: 2;
                grid-column: 1;
                border-radius: 0.5rem;
                width: 100%;
                margin: 0;
            }

            .gallery figure:nth-child(3) {
                grid-row: 3;
                grid-column: 1;
                border-radius: 0.5rem;
                width: 100%;
                margin: 0;
            }

            .gallery figure:nth-child(4) {
                grid-row: 4;
                grid-column: 1;
                border-radius: 0.5rem 0.5rem 1rem 1rem;
                width: 100%;
                margin: 0;
            }

            .view-all-badge {
                bottom: 1.5rem;
                left: 1.5rem;
                padding: 0.75rem 1.5rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 1rem;
            }

            .gallery {
                gap: 0.75rem;
                border-radius: 0.75rem;
            }

            .gallery figcaption {
                padding: 1.5rem 1rem 1rem;
            }

            .gallery figcaption h3 {
                font-size: 1.1rem;
            }

            .gallery figcaption p {
                font-size: 0.8rem;
            }
        }

        /* Animazione di caricamento */
        .gallery figure {
            animation: fadeInUp 0.6s ease-out;
        }

        .gallery figure:nth-child(1) {
            animation-delay: 0.1s;
        }

        .gallery figure:nth-child(2) {
            animation-delay: 0.2s;
        }

        .gallery figure:nth-child(4) {
            animation-delay: 0.4s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Effetto hover per le immagini della galleria */
        .hover-scale-effect {
            transition: transform 0.3s ease;
        }

        .hover-scale-effect:hover {
            transform: scale(1.05);
        }

        /* Lightbox Styles */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .lightbox-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .lightbox-image-container {
            max-width: 90%;
            max-height: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lightbox-main-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .lightbox-image-title {
            color: white;
            font-size: 1.1rem;
            margin-top: 1rem;
            text-align: center;
            margin-bottom: 0;
        }

        .lightbox-counter {
            color: #ccc;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            margin-bottom: 0;
        }

        .lightbox-close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        .lightbox-close-btn:hover {
            background: rgba(220, 38, 38, 0.8);
            transform: rotate(90deg);
        }

        .lightbox-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        .lightbox-nav-btn:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-thumbnails {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 1rem;
            padding: 0.5rem;
            backdrop-filter: blur(15px);
            max-width: 90%;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .lightbox-thumbnails::-webkit-scrollbar {
            display: none;
        }

        .thumbnail-btn {
            background: none;
            border: 2px solid transparent;
            border-radius: 8px;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .thumbnail-btn:hover {
            transform: scale(1.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .thumbnail-btn.active {
            border-color: white;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }

        .thumbnail-image {
            width: 60px;
            height: 40px;
            object-fit: cover;
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .lightbox-container {
                padding: 1rem;
            }

            .lightbox-main-image {
                max-height: 70vh;
            }

            .lightbox-nav-btn {
                width: 40px;
                height: 40px;
            }

            .lightbox-thumbnails {
                max-width: 95%;
                padding: 0.25rem;
            }

            .thumbnail-image {
                width: 45px;
                height: 30px;
            }
        }

        @media (max-width: 480px) {
            .lightbox-container {
                padding: 0.5rem;
            }

            .lightbox-main-image {
                max-height: 60vh;
            }

            .lightbox-nav-btn {
                width: 35px;
                height: 35px;
            }

            .lightbox-close-btn {
                width: 35px;
                height: 35px;
            }

            .lightbox-thumbnails {
                display: none;
                /* Nascondi su mobile molto piccoli */
            }
        }

        /* Prevenire selezione del testo */
        .lightbox-overlay * {
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }

        /* Accessibilità */
        .lightbox-nav-btn:focus,
        .lightbox-close-btn:focus,
        .thumbnail-btn:focus {
            outline: 2px solid white;
            outline-offset: 2px;
        }

        /* Gestione del body quando lightbox è aperto */
        body.lightbox-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
            height: 100%;
        }

        /* Login */
        /* Focus states */
        .form-control:focus {
            border-color: #6366f1 !important;
            box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25) !important;
        }

        .form-check-input:checked {
            background-color: #6366f1;
            border-color: #6366f1;
        }

        .form-check-input:focus {
            border-color: #6366f1;
            box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
        }

        /* Hover effects for links */
        a[style*="color: #6366f1"]:hover {
            color: #4f46e5 !important;
            text-decoration: underline !important;
        }

        /* Loading animation */
        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        [wire:loading] {
            animation: pulse 1.5s ease-in-out infinite;
        }

        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .min-vh-100 {
                padding-top: 2rem !important;
                padding-bottom: 5rem !important;
            }
        }

        /* Tour Booking Styles */

        /* Container principale */
        .booking-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Sottotitolo del booking */
        p.booking-subtitle {
            text-align: left;
        }

        /* Progress Bar */
        .booking-progress .progress {
            height: 8px;
            border-radius: 4px;
            background-color: #e9ecef;
        }

        .progress-steps .step {
            color: #6c757d;
            font-weight: 500;
            font-size: 0.85rem;
        }

        .progress-steps .step.active {
            color: #198754;
            font-weight: 600;
        }

        /* Date Cards */
        .date-card {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .date-card:hover {
            border-color: #007bff;
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
            transform: translateY(-2px);
        }

        .date-card.selected {
            border-color: #198754;
            background-color: #f8fff9;
            box-shadow: 0 4px 12px rgba(25, 135, 84, 0.2);
        }

        .date-card-header {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e9ecef;
        }

        .date-card-header .date {
            font-size: 1.5rem;
            font-weight: bold;
            color: #007bff;
            line-height: 1;
        }

        .date-card-header .month {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: #6c757d;
            font-weight: 600;
            margin-top: 2px;
        }

        .date-card.selected .date-card-header .date {
            color: #198754;
        }

        .date-card-body {
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .day-name {
            font-weight: 600;
            margin-bottom: 8px;
            color: #495057;
            font-size: 0.9rem;
        }

        .time,
        .spots {
            font-size: 0.8rem;
            color: #6c757d;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .price {
            font-size: 0.95rem;
            color: #198754;
            font-weight: 600;
            margin-top: auto;
            padding-top: 8px;
        }

        /* Booking Summary */
        .booking-summary {
            position: sticky;
            top: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border: none;
        }

        .summary-item {
            margin-bottom: 15px;
            padding-bottom: 12px;
        }

        .summary-item:not(:last-child) {
            border-bottom: 1px solid #f1f3f4;
        }

        .summary-total {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
            border: 1px solid #dee2e6;
        }

        /* Participant Cards */
        .participant-card {
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .participant-header {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 12px;
            margin-bottom: 18px;
        }

        .participant-header h6 {
            margin: 0;
            color: #495057;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .participant-accessibility {
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .participant-name {
            color: #007bff;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        /* Final Summary */
        .booking-final-summary {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid #dee2e6;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .booking-final-summary h6 {
            color: #495057;
            border-bottom: 2px solid #007bff;
            padding-bottom: 8px;
            margin-bottom: 20px;
        }

        /* Terms Section */
        .terms-section {
            background: linear-gradient(135deg, #fff3cd 0%, #fef7e0 100%);
            border: 1px solid #ffeaa7;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1);
        }

        .terms-section .form-check {
            margin-bottom: 12px;
        }

        .terms-section .form-check-label {
            font-size: 0.95rem;
            color: #856404;
            cursor: pointer;
        }

        .terms-section .form-check-label a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .terms-section .form-check-label a:hover {
            text-decoration: underline;
        }

        /* Total Price Display */
        .total-price {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        /* Navigation */
        .booking-navigation {
            border-top: 1px solid #e9ecef;
            padding-top: 20px;
            margin-top: 30px;
        }

        .booking-navigation .btn {
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 8px;
        }

        /* Toast Notifications */
        .toast-container .toast {
            border: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .toast-header {
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px 12px 0 0;
        }

        .toast-body {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 0 0 12px 12px;
        }

        /* Form Controls */
        .form-control,
        .form-select {
            border-radius: 8px;
            border: 1px solid #ced4da;
            transition: all 0.2s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
        }

        .input-group .btn {
            border-radius: 0;
        }

        .input-group .btn:first-child {
            border-radius: 8px 0 0 8px;
        }

        .input-group .btn:last-child {
            border-radius: 0 8px 8px 0;
        }

        /* Cards */
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .card-header {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-bottom: 1px solid #dee2e6;
            padding: 15px 20px;
        }

        .card-header h5,
        .card-header h6 {
            margin: 0;
            color: #495057;
            font-weight: 600;
        }

        .card-body {
            padding: 20px;
        }

        /* Badges */
        .badge {
            font-size: 0.75rem;
            padding: 0.35em 0.65em;
            border-radius: 6px;
        }

        .badge-sm {
            font-size: 0.65rem;
            padding: 0.25em 0.5em;
        }

        /* Alerts */
        .alert {
            border: none;
            border-radius: 12px;
            padding: 15px 20px;
        }

        .alert-success {
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            color: #155724;
            border-left: 4px solid #28a745;
        }

        .alert-warning {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            color: #856404;
            border-left: 4px solid #ffc107;
        }

        .alert-info {
            background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
            color: #0c5460;
            border-left: 4px solid #17a2b8;
        }

        /* Tour Info Summary */
        .tour-info-summary {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 1px solid #dee2e6;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 25px;
        }

        .tour-info-summary img {
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        /* Loading States */
        .spinner-border-sm {
            width: 1rem;
            height: 1rem;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Button States */
        .btn[wire\:loading\.attr="disabled"] {
            position: relative;
        }

        .btn .spinner-border {
            margin-right: 8px;
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            .booking-summary {
                position: static;
                margin-top: 30px;
            }
        }

        @media (max-width: 768px) {
            .booking-container {
                padding: 15px;
            }

            .date-card {
                margin-bottom: 15px;
            }

            .participant-card,
            .participant-accessibility {
                padding: 15px;
            }

            .progress-steps {
                font-size: 0.75rem;
            }

            .progress-steps .step {
                font-size: 0.7rem;
            }

            .date-card-header .date {
                font-size: 1.3rem;
            }

            .date-card-header .month {
                font-size: 0.75rem;
            }

            .total-price {
                font-size: 1.75rem;
            }

            .booking-final-summary {
                padding: 20px;
            }

            .card-body {
                padding: 15px;
            }

            .tour-info-summary {
                padding: 15px;
            }

            .tour-info-summary .d-flex {
                flex-direction: column;
                text-align: center;
            }

            .tour-info-summary img {
                margin-bottom: 15px;
                align-self: center;
            }
        }

        @media (max-width: 576px) {
            .booking-container {
                padding: 10px;
            }

            .date-card {
                padding: 12px;
            }

            .participant-card,
            .participant-accessibility {
                padding: 12px;
            }

            .summary-total {
                padding: 12px;
            }

            .booking-final-summary {
                padding: 15px;
            }

            .terms-section {
                padding: 15px;
            }

            .progress-steps {
                gap: 5px;
            }

            .progress-steps .step {
                font-size: 0.65rem;
                white-space: nowrap;
            }
        }

        /* Print Styles */
        @media print {

            .booking-navigation,
            .toast-container,
            .btn,
            .progress-bar-container {
                display: none !important;
            }

            .booking-container {
                max-width: none;
                padding: 0;
            }

            .card {
                box-shadow: none;
                border: 1px solid #ccc;
            }
        }



        /* Accessibility Improvements */
        .date-card:focus,
        .btn:focus {
            outline: 2px solid #007bff;
            outline-offset: 2px;
        }

        .form-control:focus,
        .form-select:focus {
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

        /* High Contrast Mode */
        @media (prefers-contrast: high) {
            .date-card {
                border-width: 3px;
            }

            .date-card.selected {
                border-width: 4px;
            }

            .btn {
                border-width: 2px;
            }
        }

        /* Stili per gli itinerari dettagliati */
        .tour-itineraries {
            margin-top: 1rem;
        }

        .itinerary-day-card {
            background: #fff;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
            transition: box-shadow 0.3s ease;
        }

        .itinerary-day-card:hover {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .itinerary-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 6px;
            height: 200px;
        }

        .itinerary-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .itinerary-content {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .itinerary-day-badge {
            margin-bottom: 0.75rem;
        }

        .itinerary-day-badge .badge {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .itinerary-day-title {
            color: #2c3e50;
            font-weight: 600;
            font-size: 1.25rem;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        .itinerary-description {
            color: #6c757d;
            line-height: 1.6;
            flex-grow: 1;
        }

        .itinerary-description p {
            margin-bottom: 0.75rem;
        }

        .itinerary-description p:last-child {
            margin-bottom: 0;
        }

        .itinerary-separator {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, transparent, #dee2e6 50%, transparent);
            margin: 2rem 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .itinerary-day-card {
                padding: 1rem;
            }

            .itinerary-image-container {
                height: 150px;
                margin-bottom: 1rem;
            }

            .itinerary-day-title {
                font-size: 1.1rem;
            }
        }

        .duration-badge {
            display: inline-flex;
            align-items: center;
            background: #f0f9ff;
            border: 1px solid #0ea5e9;
            color: #0369a1;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 12px;
            margin-left: 12px;
        }

        .duration-badge i {
            font-size: 0.9rem;
            color: #0ea5e9;
        }

        /* Variante più compatta per mobile */
        @media (max-width: 768px) {
            .duration-badge {
                padding: 4px 8px;
                font-size: 0.75rem;
                margin-top: 8px;
            }

            .duration-badge i {
                font-size: 0.8rem;
            }
        }

        /* ============================================
   HERO SECTION - STILI BASE E RESPONSIVI
   ============================================ */

        /* Hero Section - Layout Base */
        .hero-section {
            position: relative;
            height: 85vh;
            min-height: 600px;
            overflow: hidden;
            width: 100%;
        }

        .hero-slide {
            position: relative;
            height: 85vh;
            min-height: 600px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 90%;
            width: 100%;
            padding: 0 20px;
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 5rem);
            font-weight: bold;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            margin-bottom: 2rem;
            margin-left: auto;
            margin-right: auto;
            max-width: 800px;
            line-height: 1.5;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .btn-hero {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 24px auto 0 auto;
            min-width: 160px;
            height: 60px;
            padding: 0 24px;
            background: #FFFFFF;
            border: 2px solid #EEEEEE;
            border-radius: 24px;
            font-style: normal;
            font-weight: 500;
            font-size: clamp(0.875rem, 1.5vw, 1rem);
            color: #25182C;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background: #f8f9fa;
        }

        /* ============================================
   HERO SLIDER CONTROLS - FRECCE DESKTOP
   ============================================ */

        .hero-slider .slick-arrow {
            position: absolute !important;
            bottom: 30px !important;
            top: auto !important;
            width: 50px !important;
            height: 50px !important;
            border: 2px solid #fff;
            border-radius: 16px;
            z-index: 10 !important;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: none !important;
            background: rgba(255, 255, 255, 0.1) !important;
            backdrop-filter: blur(5px);
        }

        .hero-slider .slick-arrow:hover {
            background: rgba(255, 255, 255, 0.2) !important;
            transform: scale(1.05) !important;
            border-color: #fff;
        }

        .hero-slider .slick-prev {
            bottom: 30px !important;
            right: 100px !important;
            left: auto !important;
        }

        .hero-slider .slick-next {
            bottom: 30px !important;
            right: 40px !important;
            left: auto !important;
        }

        .hero-slider .slick-arrow:before {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 16px;
            color: white;
            opacity: 1;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .hero-slider .slick-prev:before {
            border-right: 8px solid #fff;
            border-bottom: 8px solid transparent;
            border-top: 8px solid transparent;
            content: "";
            display: inline-block;
            margin: 0;
            left: 45%;
        }

        .hero-slider .slick-next:before {
            border-left: 8px solid #fff;
            border-bottom: 8px solid transparent;
            border-top: 8px solid transparent;
            content: "";
            display: inline-block;
            margin: 0;
            left: 55%;
        }

        /* ============================================
   HERO SLIDER DOTS - INDICATORI
   ============================================ */

        .hero-slider .slick-dots {
            position: absolute;
            bottom: 30px;
            left: 40px;
            width: auto;
            display: flex !important;
            list-style: none;
            margin: 0;
            padding: 0;
            z-index: 10;
        }

        .hero-slider .slick-dots li {
            width: 12px;
            height: 12px;
            margin-right: 8px;
        }

        .hero-slider .slick-dots li button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            padding: 0;
            font-size: 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-slider .slick-dots li button:before {
            display: none;
        }

        .hero-slider .slick-dots li.slick-active button {
            background: white;
            width: 14px;
            height: 14px;
        }

        .hero-slider .slick-dots li:hover button {
            background: rgba(255, 255, 255, 0.8);
        }

        /* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

        @media (max-width: 1024px) {

            .hero-section,
            .hero-slide {
                height: 70vh;
                min-height: 500px;
            }

            .hero-content {
                max-width: 95%;
            }

            .hero-title {
                font-size: clamp(1.75rem, 4.5vw, 3.5rem);
                margin-bottom: 0.875rem;
            }

            .hero-subtitle {
                font-size: clamp(0.9rem, 1.8vw, 1.25rem);
                margin-bottom: 1.5rem;
            }

            .btn-hero {
                height: 56px;
                min-width: 150px;
                font-size: 0.9rem;
            }

            /* Frecce più piccole su tablet */
            .hero-slider .slick-arrow {
                width: 45px !important;
                height: 45px !important;
                bottom: 25px !important;
            }

            .hero-slider .slick-prev {
                right: 85px !important;
            }

            .hero-slider .slick-next {
                right: 35px !important;
            }

            .hero-slider .slick-dots {
                bottom: 25px;
                left: 35px;
            }
        }

        /* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

        @media (max-width: 768px) {

            .hero-section,
            .hero-slide {
                height: 60vh;
                min-height: 450px;
            }

            .hero-content {
                max-width: 95%;
                padding: 0 15px;
            }

            .hero-title {
                font-size: clamp(1.5rem, 6vw, 2.5rem);
                margin-bottom: 0.75rem;
            }

            .hero-subtitle {
                font-size: clamp(0.875rem, 3vw, 1.125rem);
                margin-bottom: 1.25rem;
                max-width: 90%;
            }

            .btn-hero {
                height: 52px;
                min-width: 140px;
                font-size: 0.875rem;
                padding: 0 20px;
                margin-top: 16px;
            }

            /* NASCONDE LE FRECCE SU MOBILE */
            .hero-slider .slick-prev,
            .hero-slider .slick-next {
                display: none !important;
            }

            /* Dots centrati in basso su mobile */
            .hero-slider .slick-dots {
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                justify-content: center;
            }

            .hero-slider .slick-dots li {
                width: 10px;
                height: 10px;
                margin: 0 4px;
            }

            .hero-slider .slick-dots li button {
                width: 10px;
                height: 10px;
            }

            .hero-slider .slick-dots li.slick-active button {
                width: 12px;
                height: 12px;
            }
        }

        /* ============================================
   RESPONSIVE DESIGN - MOBILE SMALL
   ============================================ */

        @media (max-width: 480px) {

            .hero-section,
            .hero-slide {
                height: 55vh;
                min-height: 400px;
            }

            .hero-content {
                padding: 0 10px;
            }

            .hero-title {
                font-size: clamp(1.25rem, 7vw, 2rem);
                margin-bottom: 0.5rem;
            }

            .hero-subtitle {
                font-size: clamp(0.8rem, 3.5vw, 1rem);
                margin-bottom: 1rem;
            }

            .btn-hero {
                height: 48px;
                min-width: 130px;
                font-size: 0.8rem;
                padding: 0 16px;
                border-radius: 20px;
            }

            .hero-slider .slick-dots {
                bottom: 15px;
            }

            .hero-slider .slick-dots li {
                width: 8px;
                height: 8px;
                margin: 0 3px;
            }

            .hero-slider .slick-dots li button {
                width: 8px;
                height: 8px;
            }

            .hero-slider .slick-dots li.slick-active button {
                width: 10px;
                height: 10px;
            }
        }

        /* ============================================
   RESPONSIVE DESIGN - LANDSCAPE MOBILE
   ============================================ */

        @media (max-width: 768px) and (orientation: landscape) {

            .hero-section,
            .hero-slide {
                height: 90vh;
                min-height: 350px;
            }

            .hero-title {
                font-size: clamp(1.5rem, 5vw, 2.25rem);
            }

            .hero-subtitle {
                font-size: clamp(0.8rem, 2.5vw, 1rem);
                margin-bottom: 1rem;
            }

            .btn-hero {
                height: 46px;
                margin-top: 12px;
            }
        }

        /* ============================================
   ANIMAZIONI E TRANSIZIONI
   ============================================ */

        .hero-slide {
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Migliora le performance su mobile */
        @media (max-width: 768px) {
            .hero-slide {
                will-change: transform;
                transform: translateZ(0);
                backface-visibility: hidden;
            }
        }

        /* ============================================
   ACCESSIBILITÀ
   ============================================ */

        .hero-slider .slick-arrow:focus,
        .hero-slider .slick-dots li button:focus {
            outline: 2px solid #fff;
            outline-offset: 2px;
        }

        .btn-hero:focus {
            outline: 2px solid #fff;
            outline-offset: 4px;
        }

        /* Riduzione movimento per utenti con preferenze */
        @media (prefers-reduced-motion: reduce) {

            .hero-slide,
            .btn-hero,
            .hero-slider .slick-arrow {
                animation: none;
                transition: none;
            }
        }

        /* ============================================
   TESTIMONIALS SLIDER SECTION
   ============================================ */

        .testimonials-section {
            padding: 80px 0;
            background: white;
        }

        /* Header con titolo e frecce - STESSO STILE DI TOURS */
        .testimonials-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .testimonials-header .section-title {
            margin: 0;
        }

        /* Nascondi le frecce native di Slick per testimonials */
        .testimonials-slider .slick-prev,
        .testimonials-slider .slick-next {
            display: none !important;
        }

        /* Slide container */
        .testimonial-slide {
            padding: 0 15px;
        }

        /* Testimonial Card */
        .testimonial-card {
            padding: 30px;
            display: flex;
            flex-direction: column;
            height: 350px;
            border: 1px solid #ddd;
            border-radius: 15px;
            background: white;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .card-img-top-dicono {
            width: 34px;
            height: 25px;
            margin-bottom: 20px;
        }

        .testimonial-title {
            font-style: italic;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
            line-height: 1.4;
        }

        .testimonial-text {
            font-style: italic;
            font-size: 0.95rem;
            margin-bottom: 20px;
            color: #666;
            line-height: 1.6;
            flex-grow: 1;
        }

        .testimonial-author {
            color: #000;
            font-weight: bold;
            font-size: 0.9rem;
            margin-top: auto;
        }

    /* ============================================
            RESPONSIVE - TESTIMONIALS
   ============================================ */

        @media (max-width: 1199.98px) {
            .testimonials-section {
                padding: 60px 0;
            }

            .testimonial-card {
                height: 380px;
            }
        }

        @media (max-width: 1024px) {
            .testimonial-card {
                height: 360px;
                padding: 25px;
            }

            .testimonial-title {
                font-size: 1.05rem;
            }

            .testimonial-text {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 50px 0;
            }

            .testimonials-header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                margin-bottom: 30px;
            }

            .testimonial-slide {
                padding: 0 10px;
            }

            .testimonial-card {
                height: auto;
                min-height: 320px;
                padding: 20px;
            }

            .testimonial-title {
                font-size: 1rem;
            }

            .testimonial-text {
                font-size: 0.9rem;
            }

            .testimonial-author {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 575.98px) {
            .testimonials-section {
                padding: 40px 0;
            }

            .testimonial-slide {
                padding: 0 5px;
            }

            .testimonial-card {
                padding: 20px 15px;
                min-height: 300px;
            }

            .card-img-top-dicono {
                width: 28px;
                height: 21px;
                margin-bottom: 15px;
            }

            .testimonial-title {
                font-size: 0.95rem;
                margin-bottom: 12px;
            }

            .testimonial-text {
                font-size: 0.85rem;
                margin-bottom: 15px;
            }

            .testimonial-author {
                font-size: 0.8rem;
            }
        }

    /* ============================================
    ANIMAZIONI
    ============================================ */

        .testimonial-card {
            animation: fadeInUp 0.5s ease-out;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Disabilita animazione per utenti con preferenze */
        @media (prefers-reduced-motion: reduce) {

            .testimonial-card,
            .testimonial-card:hover {
                animation: none;
                transition: none;
                transform: none;
            }
        }

        /* ============================================
   PARTNER SECTION STYLES
   ============================================ */

        /* Container principale */
        .partnerHome {
            padding: 80px 0;
            text-align: center;
        }

        /* Titolo principale */
        .titleOfferta {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 0;
            line-height: 1.4;
        }

        .fontSize24 {
            font-size: 24px;
        }

        /* Sottotitolo/descrizione */
        .subtitle-card-home {
            color: #555;
            line-height: 1.6;
            font-weight: 400;
            margin: 16px auto 0;
            max-width: 786px;
        }

        /* Container loghi partner */
        .d-flex {
            display: flex;
        }

        .align-items-center {
            align-items: center;
        }

        .justify-content-between {
            justify-content: space-between;
        }

        .marginTop40 {
            margin-top: 40px;
        }

        /* Responsive: mobile layout */
        .mobile {
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        /* Immagini partner - prima sezione (loghi grandi) */
        .imgPartner {
            max-width: 180px;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        /* Immagini partner - seconda sezione (loghi più piccoli) */
        .imgPartner_2 {
            max-width: 140px;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        /* Effetti hover per loghi */
        .imgPartner:hover,
        .imgPartner_2:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
            cursor: pointer;
        }

    /* ============================================
    RESPONSIVE DESIGN
    ============================================ */

        /* Tablet */
        @media (max-width: 768px) {
            .partnerHome {
                padding: 40px 15px;
            }

            .fontSize24 {
                font-size: 20px;
            }

            .subtitle-card-home {
                font-size: 14px;
                max-width: 100%;
            }

            .imgPartner {
                max-width: 140px;
            }

            .imgPartner_2 {
                max-width: 110px;
            }

            .mobile {
                gap: 20px;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .partnerHome {
                padding: 30px 10px;
            }

            .fontSize24 {
                font-size: 18px;
            }

            .subtitle-card-home {
                font-size: 13px;
                margin-top: 12px;
            }

            .marginTop40 {
                margin-top: 25px;
            }

            .mobile {
                flex-direction: column;
                gap: 15px;
            }

            .imgPartner,
            .imgPartner_2 {
                max-width: 120px;
            }
        }

        /* Extra small devices */
        @media (max-width: 400px) {
            .fontSize24 {
                font-size: 16px;
            }

            .subtitle-card-home {
                font-size: 12px;
            }

            .imgPartner,
            .imgPartner_2 {
                max-width: 100px;
            }
        }

    /* ============================================
    ACCESSIBILITÀ & PERFORMANCE
    ============================================ */

        /* Focus per accessibilità */
        .imgPartner:focus,
        .imgPartner_2:focus {
            outline: 2px solid #007bff;
            outline-offset: 4px;
        }

        /* Prevenzione layout shift */
        .imgPartner,
        .imgPartner_2 {
            will-change: transform;
        }

        /* Tablet */
        @media (max-width: 768px) {
            .section-text {
                    width: 100%;
                    margin: 0 auto;
                    text-align: center;
                    font-size: 1.2rem;
                    margin-bottom: 1rem;
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .section-text {
                    width: 100%;
                    margin: 0 auto;
                    text-align: center;
                    font-size: 1.2rem;
                    margin-bottom: 1rem;
            }
        }

        /* Extra small devices */
        @media (max-width: 400px) {
           .section-text {
                    width: 100%;
                    margin: 0 auto;
                    text-align: left;
                    font-size: 1.2rem;
                    margin-bottom: 1rem;
            }
        }

   /* Nascondi completamente lo slider prima dell'inizializzazione */
.hero-slider {
    opacity: 0;
    visibility: hidden;
    min-height: 500px; /* Previene il layout shift */
}

.hero-slider.slick-initialized {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease-in-out;
}

/* Forza la visibilità solo della prima slide */
.hero-slider:not(.slick-initialized) .hero-slide {
    display: none !important;
}

.hero-slider:not(.slick-initialized) .hero-slide:first-child {
    display: block !important;
}
