   /* ===== BASE & VARIABLES ===== */
        * {
         
            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: 2000px;
        }
        
        .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);
            max-width: 360px;
            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;
            }
        }




/* === LISTA AZIENDE - CARD GRID (lstContainer override) === */
.lstContainer.row {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 360px));
  gap: 32px;
  padding: 20px 0;
  float: none;
  margin: 0;
  justify-content: start;
}
.lstContainer.row .alloggio-card {
  width: 100%;
  max-width: 360px;
  margin: 0;
}

/* Nascondi badge vuoto */
.alloggio-badge:empty {
  display: none;
}

/* Bottone scopri nella card lista */
.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lake-blue, #0A7EBF);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  font-family: Poppins, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.5px;
}

.book-btn:hover {
  background: var(--lake-dark, #024873);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Alloggio location icon */
.alloggio-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* Alloggio name */
h3 .alloggio-name {
  color: var(--lake-dark, #024873);
  text-decoration: none;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
  margin-bottom: 8px;
}

h3 .alloggio-name:hover {
  color: var(--lake-blue, #0A7EBF);
}

.alloggio-card h3 {
  margin: 0 0 6px 0;
  padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .lstContainer.row {
    grid-template-columns: 1fr;
  }
}

/* ===================== SCHEDA ATTIVITÀ 2027 (sa27) ===================== */
.sa27-wrapper {
  font-family: Poppins, sans-serif;
  color: var(--dark-gray, #2C3E50);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}
.sa27-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 10px;
}
.sa27-gallery {
  flex: 0 0 380px;
  max-width: 380px;
}
.sa27-img-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  margin-bottom: 12px;
}
.sa27-img-main img,
.sa27-img-main a img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.sa27-info {
  flex: 1 1 0;
  min-width: 0;
}
.sa27-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--lake-dark, #024873);
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.sa27-subtitle {
  font-size: 1rem;
  color: #555;
  margin: 0 0 16px 0;
  font-style: italic;
}
.sa27-divider {
  border: none;
  border-top: 2px solid var(--lake-light, #4DA8DA);
  margin: 14px 0;
  opacity: 0.4;
}
.sa27-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.sa27-contact-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 0.9rem;
  line-height: 1.5;
}
.sa27-contact-label {
  font-weight: 600;
  color: var(--lake-blue, #0A7EBF);
  min-width: 80px;
  flex-shrink: 0;
}
.sa27-contact-value {
  color: var(--dark-gray, #2C3E50);
}
.sa27-contact-value a {
  color: var(--lake-blue, #0A7EBF);
  text-decoration: none;
}
.sa27-contact-value a:hover {
  text-decoration: underline;
  color: var(--lake-dark, #024873);
}
.sa27-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-gray, #2C3E50);
  margin-bottom: 20px;
}
.sa27-extra {
  margin-bottom: 20px;
}
.sa27-extra ul.dettfiltri {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sa27-extra ul.dettfiltri li {
  background: var(--light-gray, #F8F9FA);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--dark-gray, #2C3E50);
}
.sa27-extra ul.dettfiltri li b {
  color: var(--lake-blue, #0A7EBF);
  margin-right: 4px;
}
.sa27-extra ul.dettfiltri li p {
  display: inline;
  margin: 0;
}
.sa27-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.sa27-share-label {
  font-weight: 600;
  color: var(--dark-gray, #2C3E50);
  font-size: 0.9rem;
}
.sa27-share-list {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sa27-share-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lake-blue, #0A7EBF);
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}
.sa27-share-list li a:hover {
  background: var(--lake-dark, #024873);
}
@media (max-width: 768px) {
  .sa27-layout {
    flex-direction: column;
  }
  .sa27-gallery {
    flex: 1 1 100%;
    max-width: 100%;
  }
}





/* ====== NEWS LISTA - ESPERIENZA CARD STYLE ====== */
.home_blog_post_area {
  background: transparent;
  padding: 20px 0;
}

.home_blog_post_inner .row.pos_content {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 35px;
  padding: 0;
  float: none;
  margin: 0;
}

.home_blog_post_inner .item {
  padding: 0 !important;
  width: auto !important;
  float: none !important;
}

.home_blog_post_inner article.blog_post {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow, 0 8px 30px rgba(0,0,0,0.12));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #2C3E50;
}

.home_blog_post_inner article.blog_post::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: all 0.4s ease;
}

.home_blog_post_inner article.blog_post:hover::before {
  background: linear-gradient(180deg, rgba(10,126,191,0.5) 0%, rgba(2,72,115,0.9) 100%);
}

.home_blog_post_inner article.blog_post:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.home_blog_post_inner .blog_post_content_top {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.home_blog_post_inner .post_thumbnail {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

.home_blog_post_inner .post_thumbnail a.img_content {
  display: block;
  width: 100%; height: 100%;
}

.home_blog_post_inner .post_thumbnail img.xipblog_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  max-width: none;
}

.home_blog_post_inner article.blog_post:hover .xipblog_img {
  transform: scale(1.15) rotate(2deg);
}

.home_blog_post_inner .blog-top,
.home_blog_post_inner .blog_mask {
  display: none;
}

.home_blog_post_inner .post_content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 35px;
  z-index: 2;
  color: #fff;
}

.home_blog_post_inner h4.post_title,
.home_blog_post_inner .post_content h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #fff;
}

.home_blog_post_inner .post_title a {
  color: #fff;
  text-decoration: none;
}

.home_blog_post_inner p.post_description {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.home_blog_post_inner article.blog_post::after {
  content: "\2192";
  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;
  color: #fff;
  line-height: 50px;
  text-align: center;
  transition: all 0.4s ease;
}

.home_blog_post_inner article.blog_post:hover::after {
  background: var(--gold, #D4AF37);
  transform: rotate(45deg) scale(1.1);
}

.page_title_area.pos_title {
  display: none;
}

@media (max-width: 768px) {
  .home_blog_post_inner .row.pos_content {
    grid-template-columns: 1fr;
  }
  .home_blog_post_inner article.blog_post {
    height: 300px;
  }
}


/* Fix: lstContainer.row quando contiene news deve essere block (non grid) */
.lstContainer.row:has(.home_blog_post_area) {
  display: block !important;
  grid-template-columns: none !important;
}

.lstContainer.row .home_blog_post_area {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}



/* ====================================================
   LLP27 - PAGINE CONTENUTO (articoli, guide, trekking)
   Classi: .lp27-layout, .lp27-main, .lp27-content
   ==================================================== */

.lp27-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.lp27-sidebar {
  flex: 0 0 220px;
  position: sticky;
  top: 110px;
}

.lp27-categories-block {
  background: var(--light-gray, #F8F9FA);
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid var(--lake-blue, #0A7EBF);
}

.lp27-categories-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lake-blue, #0A7EBF);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(10,126,191,0.2);
}

.lp27-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp27-categories-list li a {
  display: block;
  padding: 8px 12px;
  color: var(--dark-gray, #2C3E50);
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.lp27-categories-list li a:hover,
.lp27-categories-list li.active a {
  background: var(--lake-blue, #0A7EBF);
  color: white;
  padding-left: 16px;
}

.lp27-main {
  flex: 1 1 0;
  min-width: 0;
}

.lp27-services-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.lp27-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--lake-blue, #0A7EBF);
  color: white !important;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(10,126,191,0.3);
}

.lp27-service-btn:hover {
  background: var(--lake-dark, #024873);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10,126,191,0.4);
  color: white !important;
  text-decoration: none;
}

.lp27-service-btn i,
.lp27-service-btn .material-icons {
  font-size: 1rem;
}

.lp27-content {
  line-height: 1.8;
}

.lp27-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  color: var(--lake-dark, #024873);
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.lp27-content hr {
  border: none;
  border-top: 2px solid var(--lake-light, #4DA8DA);
  opacity: 0.4;
  margin: 24px 0;
}

.lp27-content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  color: var(--lake-dark, #024873);
  margin: 32px 0 12px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lake-light, #4DA8DA);
  font-weight: 700;
}

.lp27-content h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  color: var(--lake-blue, #0A7EBF);
  margin: 20px 0 10px 0;
}

.lp27-content p {
  font-size: 1rem;
  color: var(--dark-gray, #2C3E50);
  margin-bottom: 16px;
  line-height: 1.8;
}

.lp27-content p:has(> strong:first-child),
.lp27-content p:first-of-type {
  background: linear-gradient(135deg, rgba(10,126,191,0.06) 0%, rgba(77,168,218,0.04) 100%);
  border-left: 3px solid var(--lake-blue, #0A7EBF);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 0.95rem;
  line-height: 2;
}

.lp27-content p strong,
.lp27-content p b {
  color: var(--lake-blue, #0A7EBF);
  font-weight: 700;
}

.lp27-content a {
  color: var(--lake-blue, #0A7EBF);
  text-decoration: none;
  border-bottom: 1px solid rgba(10,126,191,0.3);
  transition: all 0.2s ease;
}

.lp27-content a:hover {
  color: var(--lake-dark, #024873);
  border-bottom-color: var(--lake-dark, #024873);
}

.lp27-content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: block;
  margin-bottom: 16px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lp27-content img:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.18);
}

.lp27-content .row {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  float: none;
  margin: 20px 0 24px 0;
}

.lp27-content .row > [class*="col"] {
  padding: 0;
  float: none;
  width: auto;
}

.lp27-content ul,
.lp27-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.lp27-content ul li,
.lp27-content ol li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--dark-gray, #2C3E50);
}

.lp27-content ul li::marker {
  color: var(--lake-blue, #0A7EBF);
}

.lp27-content blockquote {
  border-left: 4px solid var(--gold, #D4AF37);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(212,175,55,0.06);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--dark-gray, #2C3E50);
}

.lp27-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.lp27-content table th {
  background: var(--lake-blue, #0A7EBF);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp27-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
}

.lp27-content table tr:last-child td {
  border-bottom: none;
}

.lp27-content table tr:nth-child(even) {
  background: rgba(10,126,191,0.03);
}

@media (max-width: 768px) {
  .lp27-layout {
    flex-direction: column;
    margin: 20px auto;
    gap: 24px;
  }
  .lp27-sidebar {
    flex: none;
    width: 100%;
    position: static;
  }
  .lp27-content h1 {
    font-size: 1.7rem;
  }
  .lp27-content h2 {
    font-size: 1.3rem;
  }
  .lp27-services-bar {
    gap: 8px;
  }
  .lp27-service-btn {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}



/* ===== BREADCRUMB ===== */
.breadcrumb-name {
  background: linear-gradient(90deg, #e8f4fc 0%, #f5faff 100%);
  border-bottom: 1px solid #cce3f5;
  padding: 8px 0;
  margin-bottom: 0;
}
.breadcrumb_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
}
.breadcrumb a {
  color: #1a6a96;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #0d4d70;
  text-decoration: underline;
}
/* Separatore > */
.breadcrumb > span {
  color: #aac8df;
  font-weight: 400;
  margin: 0 5px;
}
/* Voce corrente */
.breadcrumb > span:last-child,
.breadcrumb > a:last-child {
  color: #555;
  font-weight: 500;
  pointer-events: none;
}


.boxblu {

    background: linear-gradient(135deg, rgba(10, 126, 191, 0.06) 0%, rgba(77, 168, 218, 0.04) 100%);
    border-left: 3px solid var(--lake-blue, #0A7EBF);
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    font-size: 0.95rem;
    line-height: 2;
}



/* ===== MINI-PORTALE PAESE ===== */
/* Classi con prefisso falconet-mp- per le pagine paese */

.falconet-mp-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    margin-bottom: 0;
}

.falconet-mp-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.falconet-mp-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px 40px;
    background: linear-gradient(transparent, rgba(2, 72, 115, 0.85));
    color: white;
}

.falconet-mp-hero-overlay h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.falconet-mp-tagline {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 16px;
}

.falconet-mp-hero-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    opacity: 0.9;
}

.falconet-mp-hero-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.falconet-mp-hero-info span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold, #D4AF37);
}

.falconet-mp-quickbar {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 32px 20px;
    margin: 0 auto;
    max-width: 1100px;
    background: var(--light-gray, #F3F9FA);
    border-radius: 0 0 20px 20px;
}

.falconet-mp-quickbar a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--lake-blue, #0A7EBF);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(10, 126, 191, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border-bottom: none;
}

.falconet-mp-quickbar a:hover {
    background: var(--lake-dark, #024873);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 72, 115, 0.4);
    border-bottom: none;
}

.falconet-mp-icon {
    font-size: 1.2rem;
}

.falconet-mp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 60px;
}

.falconet-mp-section {
    margin-bottom: 50px;
}

.falconet-mp-section-title {
    font-size: 1.8rem;
    color: var(--lake-dark, #024873);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray, #F3F9FA);
    position: relative;
    text-align: center !important;
}

.falconet-mp-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--lake-blue, #0A7EBF);
}

.falconet-mp-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray, #2C3E50);
    margin-bottom: 40px;
}

.falconet-mp-highlight {
    background: linear-gradient(135deg, rgba(10, 126, 191, 0.06) 0%, rgba(77, 168, 218, 0.04) 100%);
    border-left: 3px solid var(--lake-blue, #0A7EBF);
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    font-size: 1rem;
    line-height: 1.8;
    margin: 24px 0;
}

.falconet-mp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.falconet-mp-card {
    display: block;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.2s ease;
    text-decoration: none;
    border-bottom: none;
}

/* Only show pointer and hover effect on actual links */
a.falconet-mp-card {
    cursor: pointer;
}
a.falconet-mp-card:hover {
    transform: translateY(-5px);
}


.falconet-mp-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.falconet-mp-card-body {
    padding: 20px;
}

.falconet-mp-card-body h3 {
    font-size: 1.15rem;
    color: var(--lake-dark, #024873);
    margin-bottom: 10px;
}

.falconet-mp-card-body p {
    font-size: 0.9rem;
    color: var(--text-gray, #6C757D);
    line-height: 1.6;
}

.falconet-mp-card-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--lake-blue, #0A7EBF);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: none;
}

.falconet-mp-card-compact {
    display: block;
    background: var(--light-gray, #F3F9FA);
    border-radius: 14px;
    padding: 24px;
    border-left: 4px solid var(--lake-blue, #0A7EBF);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border-bottom: none;
}


.falconet-mp-card-compact h3 {
    font-size: 1.1rem;
    color: var(--lake-dark, #024873);
    margin-bottom: 8px;
}

.falconet-mp-card-compact p {
    font-size: 0.9rem;
    color: var(--text-gray, #6C757D);
    line-height: 1.6;
}

.falconet-mp-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow, 0 8px 30px rgba(0,0,0,0.12));
}

.falconet-mp-map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.falconet-mp-transport {
    background: var(--light-gray, #F3F9FA);
    padding: 20px 24px;
    border-radius: 0 0 16px 16px;
    margin-top: -8px;
    font-size: 0.92rem;
    line-height: 1.7;
}

.falconet-mp-transport strong {
    color: var(--lake-dark, #024873);
}

.falconet-mp-neighbors {
    background: linear-gradient(135deg, var(--lake-dark, #024873) 0%, var(--lake-blue, #0A7EBF) 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    color: white !important;
}

.falconet-mp-neighbors h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    text-align: center;
    color: white !important;
}

.falconet-mp-neighbors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.falconet-mp-neighbor-card {
    display: block;
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
}


.falconet-mp-neighbor-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.falconet-mp-neighbor-name {
    padding: 14px 16px;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    .falconet-mp-hero {
        height: 380px;
        border-radius: 0 0 20px 20px;
    }
    .falconet-mp-hero-overlay h1 {
        font-size: 2.2rem;
    }
    .falconet-mp-hero-overlay {
        padding: 40px 20px 28px;
    }
    .falconet-mp-quickbar {
        gap: 10px;
        padding: 20px 16px;
    }
    .falconet-mp-quickbar a {
        padding: 11px 20px;
        font-size: 0.85rem;
    }
    .falconet-mp-container {
        padding: 16px 16px 40px;
    }
    .falconet-mp-section-title {
        font-size: 1.5rem;
    }
    .falconet-mp-grid {
        grid-template-columns: 1fr;
    }
    .falconet-mp-neighbors {
        padding: 28px 20px;
    }
    .falconet-mp-neighbors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}



/* ===== MINI-PORTALE: Layout Overrides ===== */
/* Hide old master service buttons when mini-portal is present */
.lp27-main:has(.falconet-mp-hero) > .lp27-services-bar {
    display: none !important;
}

/* Hide sidebar and make content full-width on mini-portal pages */
.lp27-layout:has(.falconet-mp-hero) {
    display: block !important;
}

.lp27-layout:has(.falconet-mp-hero) > .lp27-sidebar {
    display: none !important;
}

.lp27-layout:has(.falconet-mp-hero) > .lp27-main {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Make mini-portal content area full width */
.lp27-main:has(.falconet-mp-hero) > .lp27-content {
    max-width: 100% !important;
    padding: 0 !important;
}


/* ===== MINI-PORTALE: Color & Hover Fixes ===== */
/* Force section titles to dark color (override master h2 styling) */
.falconet-mp-section-title {
    color: var(--dark-gray, #2C3E50) !important;
}

/* Force h3 card titles to dark color */
.falconet-mp-card h3,
.falconet-mp-card-compact h3 {
    color: var(--dark-gray, #2C3E50) !important;
}

/* Strong text in highlights: dark blue not bright blue */
.falconet-mp-highlight strong {
    color: var(--dark-gray, #2C3E50) !important;
    font-weight: 700;
}

/* Enhanced quickbar button hover */
.falconet-mp-quickbar a:hover {
    background: var(--lake-dark, #024873) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(2, 72, 115, 0.5) !important;
}

/* Quickbar button active state */
.falconet-mp-quickbar a:active {
    transform: translateY(0) scale(0.98) !important;
    box-shadow: 0 2px 8px rgba(2, 72, 115, 0.3) !important;
}

/* Fix quickbar button text color on hover */
.falconet-mp-quickbar a,
.falconet-mp-quickbar a:hover,
.falconet-mp-quickbar a:active,
.falconet-mp-quickbar a:visited,
.falconet-mp-quickbar a:focus {
    color: #ffffff !important;
}






/* === FIX: Hero title forza bianco (override master h1 blu) === */
.falconet-mp-hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5) !important;
}

.falconet-mp-hero-tagline {
    color: #ffffff !important;
    opacity: 0.95 !important;
}

/* === FIX: Transport h3 e strong forza colore scuro (override master h3 blu) === */
.falconet-mp-transport h3 {
    color: var(--dark-gray, #2C3E50) !important;
}

.falconet-mp-transport p,
.falconet-mp-transport strong {
    color: var(--dark-gray, #2C3E50) !important;
}

/* === FIX: Card h3 titoli forza scuro (override master h3 blu) === */
.falconet-mp-card h3,
.falconet-mp-card-compact h3 {
    color: var(--dark-gray, #2C3E50) !important;
}


/* === FIX: Paesi Vicini - regole per falconet-mp-neighbor === */
.falconet-mp-neighbor {
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 16px 20px;
    border-left: 3px solid rgba(255,255,255,0.4);
    transition: background 0.2s;
}
.falconet-mp-neighbor strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff !important;
}
.falconet-mp-neighbor p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85) !important;
    margin: 0;
    line-height: 1.4;
}


/* === FIX: Override .lp27-content h3 (lake-blue) per tutti gli elementi falconet-mp === */
.lp27-content .falconet-mp-card h3,
.lp27-content .falconet-mp-card-body h3,
.lp27-content .falconet-mp-card-compact h3,
.lp27-content .falconet-mp-card-compact h3,
.lp27-content .falconet-mp-transport h3,
.lp27-content .falconet-mp-hero-title,
.lp27-content .falconet-mp-section-title {
    color: var(--dark-gray, #2C3E50) !important;
}
.lp27-content .falconet-mp-hero-title {
    color: #ffffff !important;
}
.lp27-content .falconet-mp-neighbors h2,
.lp27-content .falconet-mp-neighbor strong {
    color: #ffffff !important;
}

/* === Hover e cursor: solo su elementi cliccabili (a.) === */
div.falconet-mp-card {
    cursor: default !important;
    transition: none !important;
}
div.falconet-mp-card-compact {
    cursor: default !important;
}
.falconet-mp-neighbor {
    cursor: default !important;
}


