        :root {
            --color-cream: #FEFCF8;
            --color-blue: #0033CC;
            --color-blue-glow: rgba(0, 51, 204, 0.4);
            --color-gold: #F5B800;
            --color-gold-glow: rgba(245, 184, 0, 0.3);
            --color-midnight: #0D1520;
            --color-orange: #FF6B35;
            --color-soft-gray: #E8E4DD;
            --color-purple: #6366F1;
            --brand-font: 'Archivo Black', sans-serif;
            --serif: 'DM Serif Display', serif;
            --sans: 'Manrope', sans-serif;
            --shadow-elevation-low: 0 1px 2px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.04);
            --shadow-elevation-medium: 0 4px 8px rgba(0,0,0,0.04), 0 8px 16px rgba(0,0,0,0.06), 0 16px 32px rgba(0,0,0,0.04);
            --shadow-elevation-high: 0 8px 16px rgba(0,0,0,0.06), 0 16px 32px rgba(0,0,0,0.08), 0 32px 64px rgba(0,0,0,0.1);
            --shadow-glow-blue: 0 0 60px -12px var(--color-blue-glow);
            --shadow-glow-gold: 0 0 60px -12px var(--color-gold-glow);
            --border-subtle: 1px solid rgba(0, 51, 204, 0.08);
            --noise-opacity: 0.015;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            background: var(--color-cream);
        }
        
        body {
            font-family: var(--sans);
            background: var(--color-cream);
            color: var(--color-midnight);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }
        
        /* Noise Texture Overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10000;
            opacity: var(--noise-opacity);
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }
        
        /* Selection style */
        ::selection {
            background: var(--color-blue);
            color: white;
        }
        
        /* Navigation - Premium Glassmorphism */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(254, 252, 248, 0.72);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            z-index: 1000;
            padding: 0.8rem 2rem;
            border-bottom: 1px solid rgba(0, 51, 204, 0.06);
            box-shadow: 
                0 1px 3px rgba(0, 0, 0, 0.02),
                0 4px 12px rgba(0, 0, 0, 0.03),
                inset 0 -1px 0 rgba(255, 255, 255, 0.5);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        nav.scrolled {
            padding: 0.6rem 2rem;
            background: rgba(254, 252, 248, 0.88);
        }

        .scroll-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-purple) 100%);
            width: 0%;
            transition: width 0.1s ease-out;
            z-index: 1001;
        }
        
        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 50px;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }
        
        .logo-img {
            height: 45px;
            width: auto;
        }
        
        .logo-text {
            font-family: var(--brand-font);
            font-size: 1.1rem;
            color: var(--color-midnight);
            letter-spacing: 0.5px;
            white-space: nowrap;
            line-height: 1;
        }
        
        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
        }
        
        .nav-links li {
            display: flex;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--color-midnight);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            position: relative;
            transition: color 0.3s;
            line-height: 1;
        }
        
        .nav-links a:hover {
            color: var(--color-blue);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-blue);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hero Section - Premium */
        .hero {
            margin-top: 65px;
            min-height: calc(100vh - 65px);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: 
                radial-gradient(ellipse 80% 60% at 50% 120%, rgba(0, 51, 204, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 100% 0%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
                linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream) 100%);
        }
        
        /* Animated Gradient Orbs */
        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 51, 204, 0.12) 0%, rgba(0, 51, 204, 0.04) 40%, transparent 70%);
            filter: blur(60px);
            animation: float 25s ease-in-out infinite;
            pointer-events: none;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(245, 184, 0, 0.1) 0%, rgba(245, 184, 0, 0.03) 40%, transparent 70%);
            filter: blur(50px);
            animation: float 20s ease-in-out infinite reverse;
            pointer-events: none;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-30px, 30px) scale(1.05); }
            66% { transform: translate(20px, -20px) scale(0.95); }
        }
        
        .hero .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 3rem 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }
        
        .hero-content h1 {
            font-family: var(--serif);
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 1.2rem;
            color: var(--color-midnight);
            animation: slideInLeft 0.8s ease-out;
        }
        
        .hero-content h1 span {
            color: var(--color-blue);
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--color-midnight);
            opacity: 0.8;
            margin-bottom: 2rem;
            animation: slideInLeft 0.8s ease-out 0.2s backwards;
        }
        
        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-bottom: 2rem;
            animation: slideInLeft 0.8s ease-out 0.4s backwards;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-family: var(--serif);
            font-size: 2.5rem;
            color: var(--color-blue);
            display: block;
        }
        
        .stat-label {
            font-size: 0.8rem;
            color: var(--color-midnight);
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            animation: slideInLeft 0.8s ease-out 0.6s backwards;
        }
        
        .travel-note {
            font-size: 0.8rem;
            color: var(--color-light);
            opacity: 0.7;
            margin-top: 1rem;
            text-align: left;
            font-style: italic;
        }
        
        .btn {
            padding: 0.9rem 2rem;
            font-size: 0.85rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
            font-family: var(--sans);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--color-blue) 0%, #0028a3 100%);
            color: white;
            box-shadow: 
                0 4px 15px rgba(0, 51, 204, 0.25),
                0 8px 30px rgba(0, 51, 204, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #0028a3 0%, #001d7a 100%);
            transform: translateY(-3px);
            box-shadow: 
                0 8px 25px rgba(0, 51, 204, 0.35),
                0 16px 50px rgba(0, 51, 204, 0.2),
                0 0 0 1px rgba(0, 51, 204, 0.1);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--color-midnight);
            border: 2px solid var(--color-midnight);
            box-shadow: 0 2px 8px rgba(13, 21, 32, 0.05);
        }
        
        .btn-secondary:hover {
            background: var(--color-midnight);
            color: var(--color-cream);
            box-shadow: 
                0 8px 25px rgba(13, 21, 32, 0.2),
                0 0 0 1px rgba(13, 21, 32, 0.1);
            transform: translateY(-3px);
        }
        
        .hero-visual {
            position: relative;
            animation: slideInRight 0.8s ease-out 0.3s backwards;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .city-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }
        
        .city-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.04),
                0 8px 40px rgba(0, 51, 204, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 51, 204, 0.06);
            overflow: hidden;
            position: relative;
        }
        
        .city-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-blue), var(--color-purple));
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .city-card:hover::before {
            opacity: 1;
        }
        
        .city-card:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.08),
                0 24px 60px rgba(0, 51, 204, 0.12),
                0 0 0 1px rgba(0, 51, 204, 0.08);
        }
        
        .city-card-image {
            width: 100%;
            height: 110px;
            object-fit: cover;
        }
        
        .city-card-content {
            padding: 0.8rem 1rem;
        }
        
        .city-flag {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .city-name {
            font-family: var(--serif);
            font-size: 1.4rem;
            margin-bottom: 0.25rem;
            color: var(--color-midnight);
        }
        
        .city-country {
            font-size: 0.8rem;
            color: var(--color-midnight);
            opacity: 0.6;
        }
        
        /* Section Styling */
        section {
            padding: 6rem 2rem;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-label {
            font-size: 0.9rem;
            color: var(--color-blue);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .section-title {
            font-family: var(--serif);
            font-size: 3.5rem;
            color: var(--color-midnight);
            margin-bottom: 1.5rem;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--color-midnight);
            opacity: 0.7;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Cities Section - Premium */
        #citta {
            background: 
                radial-gradient(ellipse 100% 50% at 50% 100%, rgba(0, 51, 204, 0.03) 0%, transparent 50%),
                white;
            position: relative;
        }
        
        .cities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }
        
        .city-item {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.04),
                0 12px 40px rgba(0, 51, 204, 0.06);
            border: 1px solid rgba(0, 51, 204, 0.04);
        }
        
        .city-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-blue), var(--color-purple), var(--color-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }
        
        .city-item:hover::before {
            transform: scaleX(1);
        }
        
        .city-item:hover {
            transform: translateY(-12px);
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.08),
                0 30px 80px rgba(0, 51, 204, 0.12),
                0 0 0 1px rgba(0, 51, 204, 0.06);
        }
        
        .city-item-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .city-item-content {
            padding: 2rem;
        }
        
        .city-item .city-flag {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }
        
        .city-item .city-name {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        /* ========== FLIP CARDS ========== */
        .city-card-flip {
            perspective: 1000px;
            cursor: pointer;
        }

        .city-card-inner {
            position: relative;
            width: 100%;
            height: 300px;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .city-card-flip.flipped .city-card-inner {
            transform: rotateY(180deg);
        }

        .city-card-front,
        .city-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .city-card-front {
            background: white;
        }

        .city-card-front .city-item-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .city-card-front .city-item-content {
            padding: 1rem;
            text-align: center;
        }

        .city-card-front .city-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-midnight);
        }

        .city-card-front .city-country {
            font-size: 0.85rem;
            color: var(--color-light);
        }

        .flip-hint {
            position: absolute;
            bottom: 8px;
            right: 8px;
            font-size: 0.7rem;
            color: var(--color-blue);
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .city-card-flip:hover .flip-hint {
            opacity: 1;
        }

        .city-card-back {
            transform: rotateY(180deg);
            background: var(--color-midnight);
        }

        .city-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .city-card-back-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            text-align: center;
        }

        .city-card-back-overlay .city-name {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .flip-back-hint {
            display: block;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.7);
        }

        .city-link-btn {
            display: inline-block;
            background: var(--color-blue);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .city-link-btn:hover {
            background: white;
            color: var(--color-blue);
        }

        @media (max-width: 768px) {
            .city-card-inner {
                height: 280px;
            }
            .city-card-front .city-item-image {
                height: 160px;
            }
        }
        
        /* Activities Section - Premium Dark */
        #attivita {
            background: 
                radial-gradient(ellipse 80% 50% at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 51, 204, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, var(--color-midnight) 0%, #0a1118 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        #attivita::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
        }
        
        .activities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .activity-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 3rem 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .activity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 184, 0, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.5s;
        }
        
        .activity-card:hover::before {
            opacity: 1;
        }
        
        .activity-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--color-gold);
            transform: translateY(-8px);
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.3),
                0 0 40px -10px var(--color-gold-glow);
        }
        
        .activity-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
        }
        
        .activity-title {
            font-family: var(--serif);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--color-gold);
        }
        
        .activity-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }
        
        /* Experience Section - Premium */
        #esperienze {
            background: 
                radial-gradient(ellipse 60% 40% at 0% 50%, rgba(245, 184, 0, 0.04) 0%, transparent 50%),
                linear-gradient(180deg, var(--color-cream) 0%, #F5F2EB 100%);
            position: relative;
        }
        
        .experience-grid {
            display: grid;
            gap: 5rem;
        }
        
        .experience-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.06),
                0 20px 60px rgba(0, 51, 204, 0.08);
            border: 1px solid rgba(0, 51, 204, 0.04);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .experience-item:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.08),
                0 40px 80px rgba(0, 51, 204, 0.1);
        }
        
        .experience-item:nth-child(even) {
            direction: rtl;
        }
        
        .experience-item:nth-child(even) > * {
            direction: ltr;
        }
        
        .experience-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 400px;
        }
        
        .experience-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .experience-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--color-blue);
            color: white;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            width: fit-content;
            border-radius: 20px;
        }
        
        .experience-title {
            font-family: var(--serif);
            font-size: 2rem;
            color: var(--color-midnight);
            margin-bottom: 1.5rem;
        }
        
        .experience-text {
            color: var(--color-midnight);
            opacity: 0.8;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        /* Staff Section */
        #staff {
            background: white;
        }
        
        .staff-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .staff-member {
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .staff-member:hover {
            transform: translateY(-10px);
        }
        
        .staff-icon {
            width: 200px;
            height: 200px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-midnight) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: white;
            border: 6px solid var(--color-gold);
            box-shadow: 0 10px 30px rgba(0, 51, 204, 0.2);
            transition: all 0.3s;
            overflow: hidden;
        }
        
        .staff-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .staff-member:hover .staff-icon {
            box-shadow: 0 15px 40px rgba(0, 51, 204, 0.3);
            border-color: var(--color-orange);
        }
        
        .staff-name {
            font-family: var(--brand-font);
            font-size: 1.3rem;
            color: var(--color-midnight);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }
        
        .staff-role {
            font-size: 0.95rem;
            color: var(--color-blue);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        
        .staff-description {
            font-size: 0.85rem;
            color: var(--color-midnight);
            opacity: 0.6;
            font-style: italic;
        }
        
        /* Press Section */
        #stampa {
            background: linear-gradient(135deg, #f5f0e8 0%, var(--color-cream) 100%);
        }
        
        .press-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .press-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }
        
        .press-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 51, 204, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 0;
        }
        
        .press-item:hover::before {
            opacity: 1;
        }
        
        .press-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 51, 204, 0.2);
            border-left: 5px solid var(--color-blue);
        }
        
        .press-content {
            padding: 2.5rem;
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .press-source {
            font-size: 0.85rem;
            color: var(--color-blue);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
            display: inline-block;
            background: rgba(0, 51, 204, 0.1);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            width: fit-content;
        }
        
        .press-title {
            font-family: var(--serif);
            font-size: 1.6rem;
            color: var(--color-midnight);
            margin-bottom: 1.2rem;
            line-height: 1.3;
            font-weight: 600;
        }
        
        .press-excerpt {
            color: var(--color-midnight);
            opacity: 0.75;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 0.95rem;
            flex: 1;
        }
        
        .press-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-blue);
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.95rem;
            padding: 0.8rem 1.5rem;
            background: rgba(0, 51, 204, 0.05);
            border-radius: 8px;
            width: fit-content;
        }
        
        .press-link::after {
            content: '→';
            transition: transform 0.3s;
        }
        
        .press-link:hover {
            background: var(--color-blue);
            color: white;
            transform: translateX(3px);
        }
        
        .press-link:hover::after {
            transform: translateX(5px);
        }
        
        .press-date {
            font-size: 0.8rem;
            color: var(--color-midnight);
            opacity: 0.5;
            margin-top: 1rem;
            font-style: italic;
        }
        
        /* Gallery Section */
        #gallery {
            background: var(--color-midnight);
            color: white;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.4s;
        }
        
        .gallery-item:hover {
            transform: scale(1.02);
        }
        
        .gallery-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 2rem 1.5rem 1.5rem;
            color: white;
        }
        
        .gallery-caption h4 {
            font-family: var(--serif);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        
        .gallery-caption p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Calendar Section */
        #calendario {
            background: linear-gradient(135deg, var(--color-blue) 0%, #001f8c 100%);
            color: white;
        }
        
        .calendar-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }
        
        .calendar-header {
            background: var(--color-orange);
            color: white;
            padding: 2rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .calendar-nav {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .calendar-nav:hover {
            background: rgba(255,255,255,0.4);
            transform: scale(1.1);
        }
        
        .calendar-title {
            text-align: center;
        }
        
        .calendar-day.empty {
            background: var(--color-soft-gray);
            cursor: default;
        }
        
        .calendar-day.empty:hover {
            transform: none;
            background: var(--color-soft-gray);
        }
        
        .calendar-month {
            font-family: var(--serif);
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        .calendar-year {
            opacity: 0.9;
            font-size: 1.1rem;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0;
        }
        
        .calendar-day-name {
            padding: 1.5rem 0;
            text-align: center;
            font-weight: 700;
            color: var(--color-midnight);
            background: var(--color-soft-gray);
            font-size: 0.9rem;
        }
        
        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--color-soft-gray);
            color: var(--color-midnight);
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            background: white;
            font-weight: 600;
        }
        
        .calendar-day:hover {
            background: var(--color-cream);
            color: var(--color-blue);
            transform: scale(1.05);
            z-index: 1;
        }
        
        .calendar-day.event {
            background: var(--color-blue);
            color: white;
        }
        
        .calendar-day.event::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--color-gold);
            border-radius: 50%;
        }

        .calendar-day.has-thumbnail::after {
            display: none;
        }

        .calendar-day.has-thumbnail {
            padding: 0;
            overflow: hidden;
        }

        .calendar-day .day-number {
            position: absolute;
            top: 3px;
            left: 3px;
            z-index: 2;
            font-size: 0.65rem;
            font-weight: 700;
            background: var(--color-blue);
            color: white;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .event-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .event-tooltip {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,51,204,0.9);
            color: white;
            font-size: 0.5rem;
            padding: 3px 2px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s;
            line-height: 1.2;
        }

        .calendar-day.has-thumbnail:hover .event-tooltip {
            opacity: 1;
        }
        
        .calendar-events {
            padding: 2rem;
            background: var(--color-cream);
        }
        
        .event-item {
            padding: 1.5rem;
            margin-bottom: 1rem;
            background: white;
            border-radius: 12px;
            border-left: 4px solid var(--color-blue);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: transform 0.3s;
        }
        
        .event-item:hover {
            transform: translateX(5px);
            background: var(--color-soft-gray);
        }
        
        .event-info h4 {
            font-family: var(--serif);
            font-size: 1.3rem;
            color: var(--color-midnight);
            margin-bottom: 0.5rem;
        }
        
        .event-info p {
            color: var(--color-midnight);
            opacity: 0.7;
            font-size: 0.95rem;
        }
        
        .event-cta {
            padding: 0.8rem 1.5rem;
            background: var(--color-blue);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .event-cta:hover {
            background: var(--color-orange);
        }
        
        /* Membership Section */
        #adesione {
            background: var(--color-cream);
        }
        
        .membership-form {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(26, 43, 60, 0.08);
        }
        
        .form-group {
            margin-bottom: 2rem;
        }
        
        .form-group label {
            display: block;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--color-midnight);
            font-size: 1.05rem;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid var(--color-soft-gray);
            border-radius: 10px;
            font-family: var(--sans);
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--color-blue);
            box-shadow: 0 0 0 3px rgba(0, 51, 204, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .checkbox-group input[type="checkbox"] {
            width: auto;
        }
        
        /* FAQ Section */
        #faq {
            background: white;
        }
        
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            background: var(--color-cream);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .faq-question {
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--color-midnight);
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background: var(--color-blue);
            color: white;
        }
        
        .faq-item.active .faq-question {
            background: var(--color-blue);
            color: white;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 2rem;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease-in-out;
            padding: 0 2rem;
            color: var(--color-midnight);
            opacity: 0;
            line-height: 1.8;
        }
        
        .faq-item.active .faq-answer {
            max-height: 2000px;
            padding: 1.5rem 2rem 2rem;
            opacity: 0.8;
        }
        
        /* Contact Section */
        #contatti {
            background: var(--color-midnight);
            color: white;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }
        
        .contact-icon {
            font-size: 2rem;
            color: var(--color-gold);
        }
        
        .contact-details h4 {
            font-family: var(--serif);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--color-gold);
        }
        
        .contact-details p,
        .contact-details a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }
        
        .contact-details a:hover {
            color: var(--color-gold);
        }
        
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background: var(--color-blue);
            transform: translateY(-5px);
        }
        
        /* Footer */
        footer {
            background: var(--color-midnight);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem 2rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 3rem;
            align-items: center;
        }
        
        .footer-text {
            text-align: left;
        }
        
        .footer-text p {
            margin: 0;
            line-height: 1.8;
        }
        
        .footer-subtitle {
            margin-top: 0.5rem !important;
            opacity: 0.8;
            font-size: 0.95rem;
        }
        
        .footer-logo {
            text-align: right;
        }
        
        .comune-logo {
            height: 100px;
            width: auto;
            opacity: 0.95;
            transition: opacity 0.3s;
        }
        
        .comune-logo:hover {
            opacity: 1;
        }
        
        .footer-caption {
            margin-top: 0.75rem;
            font-size: 0.85rem;
            opacity: 0.7;
        }
        
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            
            .footer-text {
                text-align: center;
            }
            
            .footer-logo {
                text-align: center;
            }
            
            .comune-logo {
                height: 80px;
            }
        }
        
        /* Responsive */
        @media (max-width: 1400px) {
            .logo-text {
                font-size: 0.95rem;
            }
            
            .nav-links {
                gap: 1rem;
            }
        }
        
        @media (max-width: 1200px) {
            .logo-text {
                display: none;
            }
        }
        
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .cta-buttons {
                justify-content: center;
            }
            
            .cities-grid,
            .activities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-grid,
            .experience-item {
                grid-template-columns: 1fr;
            }
            
            .staff-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .press-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
        /* ========== MOBILE OPTIMIZATION ========== */
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }
        
        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--color-midnight);
            transition: 0.3s;
        }
        
        @media (max-width: 768px) {
            /* Navigation */
            nav {
                padding: 0.75rem 1rem;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: rgba(255, 249, 240, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem 1rem;
                gap: 1.5rem;
                transition: left 0.3s ease;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links a {
                font-size: 1.1rem;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(26, 43, 60, 0.1);
            }
            
            /* Logo */
            .logo-img {
                height: 40px;
            }
            
            .logo-text {
                display: none;
            }
            
            /* Hero Section */
            .hero {
                padding: 120px 1rem 60px;
                min-height: auto;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }
            
            .hero-content .subtitle {
                font-size: 1rem;
                margin: 1rem 0;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
                margin: 2rem 0;
            }
            
            .stat-item {
                flex-direction: row;
                align-items: center;
                gap: 1rem;
                text-align: left;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stat-label {
                font-size: 0.9rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }
            
            /* Sections */
            section {
                padding: 3rem 1rem;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .section-title {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 1rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            /* Cards and Grids */
            .cities-grid,
            .activities-grid,
            .staff-grid,
            .press-grid,
            .gallery-grid,
            .city-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .city-card,
            .activity-card,
            .staff-card {
                padding: 1.5rem;
            }
            
            .city-card h3,
            .activity-card h3 {
                font-size: 1.3rem;
            }
            
            /* Experiences */
            .experience-item {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1.5rem;
            }
            
            .experience-image {
                height: 250px;
            }
            
            .experience-quote {
                font-size: 1.1rem;
                padding: 1rem;
            }
            
            /* Gallery */
            .gallery-image {
                height: 250px;
            }
            
            /* Timeline */
            .timeline-item {
                padding-left: 2rem;
            }
            
            .timeline-content {
                padding: 1rem;
            }
            
            .timeline-year {
                font-size: 1.5rem;
            }
            
            /* FAQ */
            .faq-item {
                padding: 1rem;
            }
            
            .faq-question {
                font-size: 1rem;
                padding-right: 2rem;
            }
            
            .faq-answer {
                font-size: 0.95rem;
                padding: 1rem 0;
            }
            
            /* Form */
            .membership-form {
                padding: 2rem 1.5rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .form-group label {
                font-size: 0.95rem;
            }
            
            .form-group input,
            .form-group textarea,
            .form-group select {
                font-size: 1rem;
                padding: 0.75rem;
            }
            
            /* Contact */
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .contact-item {
                padding: 1.5rem;
                text-align: center;
            }
            
            .contact-icon {
                font-size: 2.5rem;
            }
            
            .contact-details h4 {
                font-size: 1.2rem;
            }
            
            /* Calendar */
            .calendar-grid {
                font-size: 0.75rem;
                padding: 0.5rem;
            }
            
            .calendar-header {
                padding: 0.75rem;
                font-size: 1rem;
            }
            
            .calendar-day {
                padding: 0.5rem 0.25rem;
                min-height: 60px;
            }
            
            .event-dot {
                width: 4px;
                height: 4px;
            }
            
            /* Footer */
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
                padding: 2rem 1rem;
            }
            
            .footer-text p {
                font-size: 0.9rem;
            }
            
            .comune-logo {
                height: 70px;
            }
            
            /* Utility */
            .hidden-mobile {
                display: none !important;
            }
            
            /* Fix overflow issues */
            body {
                overflow-x: hidden;
            }
            
            * {
                max-width: 100%;
            }
            
            img {
                max-width: 100%;
                height: auto;
            }
        }
        
        /* Extra small devices */
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.7rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .btn-primary, .btn-secondary {
                font-size: 0.95rem;
                padding: 0.85rem 1.25rem;
            }
            
            .city-card h3,
            .activity-card h3 {
                font-size: 1.2rem;
            }
            
            .experience-quote {
                font-size: 1rem;
            }
            
            .logo-text {
                display: none;
            }
        }

        /* ========== NEW FEATURES ========== */

        /* Language Switch */
        .lang-switch button {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--color-blue);
            color: white;
            border: none;
            padding: 0.5rem 0.8rem;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .lang-switch button:hover {
            background: var(--color-midnight);
            transform: scale(1.05);
        }

        .lang-flag {
            font-size: 1.1rem;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
        }

        @keyframes pulse-whatsapp {
            0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 50px;
            height: 50px;
            background: var(--color-midnight);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
            box-shadow: var(--shadow-elevation-medium);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--color-blue);
            transform: translateY(-3px);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--color-midnight);
            color: white;
            padding: 1rem 2rem;
            z-index: 10001;
            transform: translateY(100%);
            transition: transform 0.4s ease;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .cookie-content p {
            flex: 1;
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-accept {
            background: var(--color-gold);
            color: var(--color-midnight);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-accept:hover {
            background: white;
            transform: scale(1.05);
        }

        .cookie-decline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-decline:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }

        /* NEW Badge */
        .badge-new {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, #FF6B35, #FF8C5A);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: badge-pulse 2s infinite;
            z-index: 10;
        }

        @keyframes badge-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .press-item {
            position: relative;
        }

        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered animation delays for grid items */
        .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
        .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
        .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
        .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
        .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
        .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

        /* Event Countdown */
        .event-countdown {
            position: fixed;
            top: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            z-index: 999;
            box-shadow: var(--shadow-elevation-high);
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from { transform: translateX(-50%) translateY(-100%); opacity: 0; }
            to { transform: translateX(-50%) translateY(0); opacity: 1; }
        }

        .countdown-content {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.9rem;
        }

        .countdown-label {
            font-weight: 500;
            opacity: 0.9;
        }

        .countdown-timer {
            font-weight: 800;
            font-family: var(--brand-font);
            letter-spacing: 1px;
        }

        /* Counter Animation */
        .stat-number {
            display: inline-block;
        }

        /* Mobile adjustments for new features */
        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 80px;
                right: 15px;
                width: 55px;
                height: 55px;
            }

            .back-to-top {
                bottom: 15px;
                right: 15px;
                width: 45px;
                height: 45px;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }

            .event-countdown {
                top: 75px;
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
                width: 90%;
                max-width: 350px;
            }

            .countdown-content {
                flex-direction: column;
                gap: 0.3rem;
            }

            .lang-switch button {
                padding: 0.4rem 0.6rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .badge-new {
                top: 0.5rem;
                right: 0.5rem;
                padding: 0.2rem 0.5rem;
                font-size: 0.6rem;
            }
        }

        /* ========== STATS SECTION ========== */
        .stats-section {
            background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
            padding: 4rem 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stats-item {
            text-align: center;
            color: white;
        }

        .stats-number {
            font-family: var(--brand-font);
            font-size: 3.5rem;
            font-weight: 800;
            display: inline;
        }

        .stats-plus {
            font-family: var(--brand-font);
            font-size: 2rem;
            opacity: 0.8;
        }

        .stats-label {
            display: block;
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }

        /* ========== 3D GLOBE ========== */
        .map-container {
            margin-top: 4rem;
            text-align: center;
        }

        .map-title {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--color-midnight);
        }

        .globe-wrapper {
            width: 100%;
            height: 450px;
            margin: 0 auto;
            border-radius: 16px;
            overflow: hidden;
            background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
            box-shadow: var(--shadow-elevation-medium);
        }

        .globe-legend {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .legend-item {
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .map-hint {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--color-light);
            font-style: italic;
        }

        @media (max-width: 768px) {
            .globe-wrapper {
                height: 350px;
            }
            .globe-legend {
                gap: 0.5rem;
            }
            .legend-item {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
        }

        /* ========== TESTIMONIAL CAROUSEL ========== */
        .testimonial-carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .carousel-container {
            overflow: hidden;
            border-radius: 16px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 100%;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            box-shadow: var(--shadow-elevation-medium);
        }

        .testimonial-image {
            width: 100%;
            height: 100%;
            min-height: 300px;
            object-fit: cover;
        }

        .testimonial-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .testimonial-badge {
            background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            width: fit-content;
            margin-bottom: 1rem;
        }

        .testimonial-content h3 {
            font-family: var(--serif);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--color-midnight);
        }

        .testimonial-quote {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--color-midnight);
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--color-blue);
            font-size: 0.9rem;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: var(--shadow-elevation-medium);
            transition: all 0.3s;
            z-index: 10;
        }

        .carousel-btn:hover {
            background: var(--color-blue);
            color: white;
        }

        .carousel-prev { left: 0; }
        .carousel-next { right: 0; }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-dot.active {
            background: var(--color-blue);
            width: 30px;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .testimonial-card {
                grid-template-columns: 1fr;
            }
            .testimonial-image {
                min-height: 200px;
            }
            .testimonial-carousel {
                padding: 0 2rem;
            }
        }

        /* ========== EXPANDABLE STORIES ========== */
        .stories-accordion {
            max-width: 800px;
            margin: 3rem auto 0;
        }

        .stories-title {
            text-align: center;
            font-size: 1.1rem;
            color: var(--color-light);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .story-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 0.8rem;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            cursor: pointer;
            transition: all 0.3s;
        }

        .story-item:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .story-header {
            display: flex;
            align-items: center;
            padding: 1rem 1.2rem;
            gap: 0.8rem;
        }

        .story-badge {
            font-size: 1.2rem;
        }

        .story-name {
            flex: 1;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--color-midnight);
        }

        .story-toggle {
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--color-blue);
            transition: transform 0.3s;
        }

        .story-item.active .story-toggle {
            transform: rotate(45deg);
        }

        .story-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 1.2rem;
        }

        .story-item.active .story-content {
            max-height: 500px;
            padding: 0 1.2rem 1.2rem;
        }

        .story-content p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--color-midnight);
            opacity: 0.8;
            margin-bottom: 0.8rem;
        }

        .story-content p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .story-name {
                font-size: 0.85rem;
            }
        }

        /* ========== LIGHTBOX ========== */
        .gallery-grid-lightbox {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .gallery-item-lb {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1;
        }

        .gallery-image-lb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item-lb:hover .gallery-image-lb {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 51, 204, 0.7);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            color: white;
        }

        .gallery-item-lb:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .gallery-overlay h4 {
            font-size: 1rem;
            text-align: center;
            padding: 0 1rem;
        }

        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            text-align: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
        }

        #lightboxCaption {
            color: white;
            margin-top: 1rem;
            font-size: 1.1rem;
        }

        .lightbox-close,
        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 1rem;
            transition: opacity 0.3s;
        }

        .lightbox-close:hover,
        .lightbox-prev:hover,
        .lightbox-next:hover {
            opacity: 0.7;
        }

        .lightbox-close { top: 1rem; right: 1rem; font-size: 2.5rem; }
        .lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
        .lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

        @media (max-width: 768px) {
            .gallery-grid-lightbox {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ========== INSTAGRAM FEED ========== */
        .instagram-section {
            background: var(--color-cream);
            padding: 5rem 2rem;
        }

        .instagram-widget-container {
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
        }

        .lightwidget-widget {
            min-height: 400px;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 0.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .instagram-item {
            position: relative;
            aspect-ratio: 1;
            border-radius: 8px;
            overflow: hidden;
        }

        .instagram-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .instagram-item:hover .instagram-image {
            transform: scale(1.1);
        }

        .instagram-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 1.5rem;
        }

        .instagram-item:hover .instagram-overlay {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .instagram-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ========== EVENT BOOKING ========== */
        .event-item {
            cursor: pointer;
        }

        .event-spots {
            display: block;
            font-size: 0.8rem;
            color: var(--color-gold);
            margin-top: 0.3rem;
        }

        .event-actions {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .event-link {
            background: transparent;
            border: 1px solid var(--color-gold);
            color: var(--color-gold);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .event-link:hover {
            background: var(--color-gold);
            color: var(--color-midnight);
        }

        .event-book-btn {
            background: var(--color-gold);
            color: var(--color-midnight);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .event-book-btn:hover {
            background: white;
            transform: scale(1.05);
        }

        .event-badge {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .event-badge.coming-soon {
            background: #666;
            color: white;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-content h2 {
            font-family: var(--serif);
            margin-bottom: 0.5rem;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #999;
        }

        .modal-close:hover {
            color: var(--color-midnight);
        }

        .booking-event-name {
            color: var(--color-blue);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .booking-note {
            font-size: 0.8rem;
            color: #999;
            margin-top: 1rem;
            text-align: center;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .checkbox-group input {
            margin-top: 0.3rem;
        }

        .checkbox-group label {
            font-size: 0.9rem;
        }

        /* ========== MEMBERS AREA ========== */
        .members-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 5rem 2rem;
        }

        .members-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .members-login-box {
            background: white;
            padding: 3rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-elevation-medium);
        }

        .members-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .members-login-box h3 {
            font-family: var(--serif);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .members-login-box .form-group {
            margin-bottom: 1rem;
        }

        .members-login-box input {
            width: 100%;
            max-width: 300px;
            padding: 0.8rem 1rem;
            border: 2px solid #eee;
            border-radius: 8px;
            font-size: 1rem;
        }

        .members-login-box input:focus {
            border-color: var(--color-blue);
            outline: none;
        }

        .members-help {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #666;
        }

        .members-help a {
            color: var(--color-blue);
        }

        .members-forgot {
            margin-top: 1rem;
            font-size: 0.85rem;
        }

        .members-forgot a {
            color: var(--color-blue);
            text-decoration: none;
        }

        .members-forgot a:hover {
            text-decoration: underline;
        }

        .auth-error {
            background: #fee2e2;
            color: #dc2626;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            text-align: center;
        }

        .auth-success {
            background: #dcfce7;
            color: #16a34a;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            text-align: center;
        }

        .member-email {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.3rem;
        }

        .members-dashboard {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: var(--shadow-elevation-medium);
        }

        .members-welcome {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }

        .members-welcome h3 {
            font-family: var(--serif);
            font-size: 1.5rem;
        }

        .members-logout {
            background: none;
            border: 1px solid #ddd;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .members-resources {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .resource-card {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s;
        }

        .resource-card:hover {
            background: #e9ecef;
            transform: translateY(-3px);
        }

        .resource-icon {
            font-size: 2rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .resource-card h4 {
            font-size: 1rem;
            margin-bottom: 0.3rem;
        }

        .resource-card p {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .resource-status {
            font-size: 0.8rem;
            color: var(--color-blue);
            font-weight: 600;
        }

        .resource-link {
            display: inline-block;
            font-size: 0.8rem;
            color: var(--color-blue);
            font-weight: 600;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .members-resources {
                grid-template-columns: 1fr;
            }
        }
