   /* ===== BASE & VARIABLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --lake-blue: #0A7EBF;
            --lake-light: #4DA8DA;
            --lake-dark: #024873;
            --gold: #D4AF37;
            --white: #FFFFFF;
            --light-gray: #F8F9FA;
            --dark-gray: #2C3E50;
            --text-gray: #6C757D;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            --shadow-hover: 0 15px 45px rgba(0, 0, 0, 0.2);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ===== HEADER ===== */
        .llc-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }
        
        .llc-header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        }
        
        .llc-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }
        
        .llc-logo {
            flex: 0 0 auto;
        }
        
        .llc-logo a {
            display: flex;
            align-items: center;
        }
        
        .llc-logo img {
            height: 60px;
            width: auto;
            transition: all 0.3s ease;
        }
        
        .llc-header.scrolled .llc-logo img {
            height: 50px;
        }
        
        /* Desktop Navigation */
        .llc-nav-desktop {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .llc-menu {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
        }
        
        .llc-menu-item {
            position: relative;
        }
        
        .llc-menu-item > a {
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
            font-size: 15px;
            color: var(--dark-gray);
            padding: 10px 0;
            position: relative;
        }
        
        .llc-menu-item > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--lake-blue);
            transition: width 0.3s ease;
        }
        
        .llc-menu-item > a:hover::after,
        .llc-menu-item.active > a::after {
            width: 100%;
        }
        
        .llc-menu-item > a:hover {
            color: var(--lake-blue);
        }
        
        .llc-menu-icon {
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        
        .llc-menu-item:hover .llc-menu-icon {
            transform: rotate(180deg);
        }
        
        /* Dropdown Standard */
        .llc-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 250px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            padding: 15px 0;
            margin-top: 15px;
        }
        
        .llc-menu-item:hover .llc-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .llc-dropdown a {
            display: block;
            padding: 10px 25px;
            color: var(--dark-gray);
            font-size: 14px;
            transition: all 0.2s ease;
        }
        
        .llc-dropdown a:hover {
            background: var(--light-gray);
            color: var(--lake-blue);
            padding-left: 30px;
        }
        
        /* Megamenu Paesi */
        .llc-megamenu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            width: 1000px;
            max-width: 95vw;
            background: white;
            border-radius: 12px;
            box-shadow: 0 15px 60px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            padding: 40px;
            margin-top: 15px;
        }
        
        .llc-menu-item:hover .llc-megamenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        
        .llc-megamenu-list-auto {
            column-count: 3;
            column-gap: 40px;
        }
        
        .llc-megamenu-list-auto a {
            display: block;
            padding: 8px 0 8px 15px;
            color: var(--text-gray);
            font-size: 14px;
            break-inside: avoid;
            transition: all 0.2s ease;
            position: relative;
        }
        
        .llc-megamenu-list-auto a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: var(--lake-blue);
            transition: width 0.2s ease;
        }
        
        .llc-megamenu-list-auto a:hover {
            color: var(--lake-blue);
            padding-left: 20px;
        }
        
        .llc-megamenu-list-auto a:hover::before {
            width: 10px;
        }
        
        /* Header Actions */
        .llc-header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .llc-search-toggle {
            cursor: pointer;
            font-size: 22px;
            color: var(--dark-gray);
            transition: all 0.3s ease;
        }
        
        .llc-search-toggle:hover {
            color: var(--lake-blue);
            transform: scale(1.1);
        }
        
        .llc-lang-switch a {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 8px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            color: var(--dark-gray);
        }
        
        .llc-lang-switch a:hover {
            border-color: var(--lake-blue);
            color: var(--lake-blue);
        }
        
        /* Mobile Menu Toggle */
        .llc-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }
        
        .llc-mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--dark-gray);
            transition: all 0.3s ease;
        }
        
        .llc-mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }
        
        .llc-mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .llc-mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* Mobile Navigation */
        .llc-nav-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
            transition: right 0.4s ease;
            z-index: 1001;
            overflow-y: auto;
            padding: 80px 30px 30px;
        }
        
        .llc-nav-mobile.active {
            right: 0;
        }
        
        .llc-mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .llc-mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .llc-mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: var(--dark-gray);
        }
        
        .llc-mobile-menu {
            list-style: none;
        }
        
        .llc-mobile-menu-item {
            border-bottom: 1px solid var(--light-gray);
        }
        
        .llc-mobile-menu-item > a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            font-weight: 500;
            color: var(--dark-gray);
        }
        
        .llc-mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .llc-mobile-menu-item.active .llc-mobile-submenu {
            max-height: 1000px;
        }
        
        .llc-mobile-submenu a {
            display: block;
            padding: 10px 0 10px 20px;
            font-size: 14px;
            color: var(--text-gray);
        }
        
        .llc-mobile-submenu a:hover {
            color: var(--lake-blue);
        }
        
        .llc-mobile-menu-item.active > a .llc-menu-icon {
            transform: rotate(180deg);
        }

        /* Main Content Spacing */
        main {
            padding-top: 90px;
        }

        /* ===== HOME PAGE STYLES ===== */
        
        /* BLOCCO 1 - SLIDER HERO */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: -90px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
            animation: kenburns 12s ease-out infinite alternate;
        }

        @keyframes kenburns {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 126, 191, 0.7) 0%, rgba(2, 72, 115, 0.4) 100%);
            z-index: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 8%;
            transform: translateY(-50%);
            z-index: 2;
            max-width: 600px;
            color: var(--white);
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-btn {
            display: inline-block;
            padding: 18px 45px;
            background: var(--gold);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: var(--transition);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
            animation: fadeInUp 1s ease-out 0.6s both;
            letter-spacing: 0.5px;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
            background: #c29d2f;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 8%;
            z-index: 3;
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .dot.active {
            background: var(--white);
            border-color: var(--gold);
            transform: scale(1.2);
        }

        .slider-arrows {
            position: absolute;
            bottom: 40px;
            right: 8%;
            z-index: 3;
            display: flex;
            gap: 15px;
        }

        .arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: scale(1.1);
        }

        /* BLOCCO 2 - PAESI */
        .section {
            padding: 100px 8%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--lake-blue);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold);
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            margin-top: 20px;
        }

        .paesi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .paese-card {
            position: relative;
            height: 200px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .paese-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
            transition: var(--transition);
        }

        .paese-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .paese-card:hover::before {
            background: linear-gradient(180deg, rgba(10, 126, 191, 0.4) 0%, rgba(2, 72, 115, 0.8) 100%);
        }

        .paese-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .paese-card:hover img {
            transform: scale(1.15);
        }

        .paese-name {
            position: absolute;
            bottom: 25px;
            left: 25px;
            z-index: 2;
            color: var(--white);
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
        }

        .paese-card:hover .paese-name {
            transform: translateX(10px);
            letter-spacing: 1px;
        }

        /* BLOCCO 3 - ALLOGGI */
        .alloggi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .alloggio-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
        }

        .alloggio-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .alloggio-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .alloggio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .alloggio-card:hover .alloggio-image img {
            transform: scale(1.1);
        }

        .alloggio-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        .alloggio-content {
            padding: 30px;
        }

        .alloggio-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
        }

        .stars {
            color: var(--gold);
            font-size: 1rem;
        }

        .rating-score {
            background: var(--lake-blue);
            color: white;
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .alloggio-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--dark-gray);
            margin-bottom: 12px;
        }

        .alloggio-location {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .alloggio-details {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .alloggio-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }

        .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--lake-blue);
        }

        .price span {
            font-size: 1rem;
            font-weight: 400;
            color: #666;
        }

        .book-btn {
            padding: 12px 30px;
            background: var(--lake-blue);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .book-btn:hover {
            background: var(--lake-light);
            transform: scale(1.05);
        }

        /* BLOCCO 4 - BANNER ADSENSE */
        .adsense-banner {
            background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
            padding: 80px 8%;
            text-align: center;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .adsense-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(10, 126, 191, 0.05) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .adsense-placeholder {
            position: relative;
            max-width: 970px;
            height: 250px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            border: 2px dashed #ddd;
        }

        .adsense-placeholder p {
            color: #999;
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* BLOCCO 5 - ISPIRAZIONE */
        .ispirazione-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
        }

        .esperienza-card {
            position: relative;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .esperienza-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
            z-index: 1;
            transition: var(--transition);
        }

        .esperienza-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        .esperienza-card:hover::before {
            background: linear-gradient(180deg, rgba(10, 126, 191, 0.5) 0%, rgba(2, 72, 115, 0.9) 100%);
        }

        .esperienza-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .esperienza-card:hover img {
            transform: scale(1.15) rotate(2deg);
        }

        .esperienza-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 35px;
            z-index: 2;
            color: var(--white);
        }

        .esperienza-category {
            display: inline-block;
            padding: 6px 15px;
            background: rgba(212, 175, 55, 0.9);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .esperienza-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .esperienza-content p {
            font-size: 1rem;
            opacity: 0.95;
            line-height: 1.6;
        }

        .esperienza-arrow {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            z-index: 2;
            transition: var(--transition);
        }

        .esperienza-card:hover .esperienza-arrow {
            background: var(--gold);
            transform: rotate(45deg) scale(1.1);
        }

        /* FOOTER CTA */
        .footer-cta {
            background: linear-gradient(135deg, var(--lake-blue) 0%, var(--lake-dark) 100%);
            padding: 100px 8%;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .footer-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,');
            background-size: cover;
            opacity: 0.3;
        }

        .footer-cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .footer-cta p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .footer-cta .hero-btn {
            position: relative;
            z-index: 1;
        }

        /* ===== FOOTER ===== */
        .llc-footer {
            background: linear-gradient(135deg, #0A7EBF 0%, #024873 100%);
            color: white;
            margin-top: 0;
        }
        
        .llc-footer-main {
            padding: 60px 0 40px;
        }
        
        .llc-footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 40px;
        }
        
        .llc-footer-col h3 {
            font-size: 18px;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .llc-newsletter-text {
            margin-bottom: 20px;
            opacity: 0.9;
            font-size: 14px;
        }
        
        .llc-social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .llc-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .llc-social-links a:hover {
            background: var(--gold);
            transform: translateY(-3px);
        }
        
        .llc-footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .llc-footer-links a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            transition: all 0.2s ease;
        }
        
        .llc-footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .llc-footer-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .llc-footer-info-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
        }
        
        .llc-footer-info-item i {
            margin-top: 3px;
            opacity: 0.8;
        }
        
        .llc-footer-logo {
            margin-bottom: 20px;
        }
        
        .llc-footer-logo img {
            height: 50px;
            filter: brightness(0) invert(1);
        }
        
        .llc-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
        }
        
        .llc-footer-bottom-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .llc-copyright {
            font-size: 14px;
            opacity: 0.8;
        }
        
        .llc-payment img {
            height: 30px;
            opacity: 0.7;
        }

        /* ANIMAZIONI SCROLL */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .llc-nav-desktop {
                display: none;
            }
            
            .llc-mobile-toggle {
                display: flex;
            }
            
            .llc-footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            main {
                padding-top: 70px;
            }

            .hero-slider {
                margin-top: -70px;
            }

            .llc-header-inner {
                padding: 10px 0;
            }
            
            .llc-logo img {
                height: 45px;
            }

            .hero-content {
                left: 5%;
                max-width: 90%;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .section {
                padding: 60px 5%;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .paesi-grid,
            .alloggi-grid,
            .ispirazione-grid {
                grid-template-columns: 1fr;
            }

            .slider-dots,
            .slider-arrows {
                left: 50%;
                transform: translateX(-50%);
            }

            .slider-arrows {
                bottom: 90px;
            }

            .footer-cta h2 {
                font-size: 2rem;
            }
            
            .llc-footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .llc-footer-bottom-inner {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .llc-megamenu-list-auto {
                column-count: 2;
            }
        }
        
        @media (max-width: 480px) {
            .llc-megamenu-list-auto {
                column-count: 1;
            }
        }

