/* ========================================
   AREA VASTA SMART - EXOTIC DESIGN
   Inspired by vibrant mural colors
   ======================================== */

/* === ROOT VARIABLES === */
:root {
    /* Exotic Color Palette - From Mural */
    --ocean-blue: #1B9AAA;
    --sky-blue: #4FC3DC;
    --magenta: #DD2E44;
    --hot-pink: #F06292;
    --orange: #FF6B35;
    --coral: #FF8C61;
    --yellow: #FFC914;
    --lime: #A8DADC;
    --teal: #2A9D8F;
    --purple: #9B59B6;
    --dark-navy: #0A2463;
    --dark: #1A1A2E;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text: #2C3E50;
    --text-light: #6C757D;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--ocean-blue) 0%, var(--teal) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--magenta) 0%, var(--hot-pink) 100%);
    --gradient-accent: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
    --gradient-warm: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    --gradient-cool: linear-gradient(135deg, var(--sky-blue) 0%, var(--ocean-blue) 100%);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === CONTAINER === */
.container-exotic {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container-exotic {
        padding: 0 1.25rem;
    }
}

.sl-wrapper .sl-image .sl-caption{display:none!important;}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.gradient-text {
    background: #ff0843;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text_hero{color:#ffffff!important;}

.lead-text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text);
}

/* === BUTTONS === */
.btn-exotic {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-exotic i {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

.btn-primary-exotic {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary-exotic:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-primary-exotic:hover i {
    transform: translateX(4px);
}

.btn-secondary-exotic {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary-exotic:hover {
    background: var(--ocean-blue);
    color: var(--white);
}

.btn-white-exotic {
    background: var(--white);
    color: var(--ocean-blue);
    box-shadow: var(--shadow-lg);
}

.btn-white-exotic:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* === SECTION HEADERS === */
.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: rgba(27, 154, 170, 0.1);
    border: 2px solid var(--ocean-blue);
    border-radius: var(--radius-full);
    color: var(--ocean-blue);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.section-tag i {
    width: 16px;
    height: 16px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar-exotic {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgb(255 255 255);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 154, 170, 0.1);
    transition: var(--transition-base);
}

.navbar-exotic.scrolled {
    padding: 0.875rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand-exotic {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-container img {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
}

.navbar-exotic.scrolled .brand-logo-container img {
    height: 40px;
}

.nav-menu-exotic {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin-right: 5rem;
}

.nav-link-exotic {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link-exotic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
}

.nav-link-exotic:hover::before,
.nav-link-exotic.active::before {
    opacity: 0.12;
}

.nav-link-exotic:hover,
.nav-link-exotic.active {
    color: var(--ocean-blue);
}

.cta-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.cta-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-nav-btn i {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.cta-nav-btn:hover i {
    transform: translateX(4px);
}

.hamburger-exotic {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger-exotic span {
    width: 24px;
    height: 3px;
    background: var(--ocean-blue);
    border-radius: 3px;
    transition: var(--transition-base);
}

.hamburger-exotic.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-exotic.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-exotic.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-exotic {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(180deg, #249b99 0%, rgb(95 236 243) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(27, 154, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(221, 46, 68, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: var(--ocean-blue);
    opacity: 0.15;
    animation-delay: 0s;
}

.shape-2 {
    bottom: 20%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: var(--magenta);
    opacity: 0.12;
    animation-delay: 5s;
}

.shape-3 {
    top: 40%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--orange);
    opacity: 0.1;
    animation-delay: 10s;
}

.shape-4 {
    bottom: 10%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: var(--yellow);
    opacity: 0.08;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.75rem;
    background: var(--white);
    border: 2px solid var(--ocean-blue);
    border-radius: var(--radius-full);
    color: var(--ocean-blue);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--ocean-blue);
}

.stat-card:nth-child(1) i {
    color: var(--ocean-blue);
}

.stat-card:nth-child(2) i {
    color: var(--teal);
}

.stat-card:nth-child(3) i {
    color: var(--magenta);
}

.stat-card i {
    width: 36px;
    height: 36px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.25rem;
}

.scroll-indicator {
    position: absolute;
    top: 738px;
    left: 51.5%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ========================================
   PROGETTO SECTION
   ======================================== */
.progetto-exotic {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--white);
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(27, 154, 170, 0.03) 40px, rgba(27, 154, 170, 0.03) 80px);
    z-index: 0;
}

.progetto-exotic .container-exotic {
    position: relative;
    z-index: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.main-card {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark) 100%);
    color: var(--white);
    border: none;
}

.main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(27, 154, 170, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.card-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.main-card h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.main-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.image-card {
    grid-column: span 2;
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-card:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 154, 170, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    width: 56px;
    height: 56px;
    color: var(--white);
}

.feature-card {
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--ocean-blue);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.icon-green {
    background: linear-gradient(135deg, var(--teal) 0%, #10B981 100%);
}

.icon-orange {
    background: #d5ff33a;
}

.icon-purple {
    background: linear-gradient(135deg, var(--purple) 0%, #8E44AD 100%);
}

.icon-pink {
    background: #f187de;
}

.feature-card h4 {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ========================================
   PATTO SECTION
   ======================================== */
.patto-exotic {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(168, 218, 220, 0.1) 100%);
}

.patto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.patto-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.patto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.large-card {
    grid-column: span 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    width: 36px;
    height: 36px;
    color: var(--ocean-blue);
}

.card-header h3 {
    font-size: 1.875rem;
}

.highlight-card {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    border: none;
}

.highlight-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.highlight-icon i {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.highlight-year {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.highlight-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.95);
}

.objective-card {
    border-left: 4px solid var(--ocean-blue);
    transition: var(--transition-base);
}

.objective-card:hover {
    border-left-color: var(--magenta);
}

.objective-card i {
    width: 36px;
    height: 36px;
    color: var(--ocean-blue);
    margin-bottom: 1.25rem;
}

.objective-card h4 {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
}

.objective-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.quote-card {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 3rem;
    border: none;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, 0.15);
}

.quote-text {
    font-size: 1.625rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.quote-author {
    font-weight: 600;
    font-style: normal;
    color: var(--sky-blue);
    font-size: 1.125rem;
}

/* ========================================
   NEWS SECTION
   ======================================== */
.news-exotic {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.news-carousel-wrapper {
    position: relative;
    margin: 3rem 0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--ocean-blue);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:hover i {
    color: var(--white);
}

.carousel-nav i {
    width: 24px;
    height: 24px;
    color: var(--ocean-blue);
    transition: var(--transition-fast);
}

.prev-btn {
    left: -28px;
}

.next-btn {
    right: -28px;
}

.news-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 1.25rem 0;
}

.news-card-exotic {
    flex: 0 0 calc(33.333% - 1.333rem);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    border: 2px solid transparent;
}

.news-card-exotic:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--ocean-blue);
}

.news-card-image-exotic {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-card-image-exotic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card-exotic:hover .news-card-image-exotic img {
    transform: scale(1.12);
}

.news-card-content-exotic {
    padding: 1.75rem;
}

.news-card-date-exotic {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ocean-blue);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-card-date-exotic i {
    width: 16px;
    height: 16px;
}

.news-card-title-exotic {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    line-height: 1.4;
}

.news-card-description-exotic {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.news-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-exotic {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.cta-icon i {
    width: 48px;
    height: 48px;
    color: var(--white);
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-content p {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-exotic {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(27, 154, 170, 0.05) 50px, rgba(27, 154, 170, 0.05) 100px);
}

.footer-exotic .container-exotic {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-logo i {
    width: 36px;
    height: 36px;
    color: var(--ocean-blue);
}

.footer-logo span {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
}

.footer-tagline {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--ocean-blue);
    transform: translateY(-4px);
}

.social-link i {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer-col h4 i {
    width: 20px;
    height: 20px;
}

.footer-links,
.footer-contacts {
    list-style: none;
}

.footer-links li,
.footer-contacts li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--ocean-blue);
    padding-left: 0.5rem;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contacts i {
    width: 18px;
    height: 18px;
    color: var(--ocean-blue);
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contacts a:hover {
    color: var(--ocean-blue);
}

.footer-newsletter-text {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.625rem;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1rem;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-newsletter-form button:hover {
    transform: scale(1.08);
}

.footer-newsletter-form button i {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--ocean-blue);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-card,
    .image-card {
        grid-column: span 2;
    }
    
    .news-card-exotic {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 1024px) {
    .nav-menu-exotic {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: var(--transition-base);
        border-top: 1px solid rgba(27, 154, 170, 0.2);
    }
    
    .nav-menu-exotic.active {
        left: 0;
    }
    
    .nav-link-exotic {
        width: 100%;
        padding: 1.25rem;
        text-align: center;
        font-size: 1.125rem;
    }
    
    .cta-nav-btn {
        display: none;
    }
    
    .hamburger-exotic {
        display: flex;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 15px;
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .hero-exotic {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-exotic {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        width: 100%;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .main-card,
    .image-card,
    .feature-card {
        grid-column: span 1;
    }
    
    .patto-grid {
        grid-template-columns: 1fr;
    }
    
    .large-card,
    .quote-card {
        grid-column: span 1;
    }
    
    .news-card-exotic {
        flex: 0 0 100%;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-logo-container img {
        height: 65px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.625rem 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quote-card {
        padding: 2rem;
    }
    
    .quote-text {
        font-size: 1.25rem;
    }
    
    .scroll-indicator {top: 96%;}
}

/* ========================================
   INTRO ANIMATION
   ======================================== */
.intro-animation {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #dfeced;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: introFadeOut 0.8s ease 6s forwards;
}

.intro-content {
    position: relative;
    text-align: center;
}

.intro-pattern {
    position: absolute;
    inset: -200px;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: circleExpand 2s ease-out forwards;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.2s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.8s;
}

@keyframes circleExpand {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.pattern-wave {
    position: absolute;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    left: 0;
    animation: waveSlide 1.5s ease-out forwards;
}

.wave-1 {
    top: 30%;
    animation-delay: 0.3s;
}

.wave-2 {
    top: 50%;
    animation-delay: 0.6s;
}

.wave-3 {
    top: 70%;
    animation-delay: 0.9s;
}

@keyframes waveSlide {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.intro-text {
    position: relative;
    z-index: 1;
    animation: introTextReveal 1s ease 0.5s forwards;
    opacity: 0;
}

.intro-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.intro-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.95);
    top: 65px;
    position: relative;
}

@keyframes introTextReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-logo {
    margin-bottom: 2rem;
    animation: logoZoomIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s backwards;
}

.intro-logo img {
    max-width: 400px;
    width: 80vw;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
    top: 102px;
    position: relative;
}

@keyframes logoZoomIn {
    from {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Responsive Intro Logo */
@media (max-width: 768px) {
    .intro-logo img {
        max-width: 280px;
    }
    
    .intro-subtitle {
        font-size: 1.125rem;
    }
    
    .scroll-indicator {top: 96%;}
}

@media (max-width: 480px) {
    .intro-logo img {
        max-width: 220px;
        width: 80vw;
        height: auto;
        filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
        top: 66px;
        position: relative;
    }
    }
    
    .intro-subtitle {
        font-size: 1rem;
    }
    
    
}

@keyframes introFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ========================================
   DEBUG: BLOCCA INTRO ANIMATION
   Commenta questa sezione per riattivare
   ======================================== */
/*.intro-animation {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}*/

/* ======================================== */

/* ========================================
   MURAL-INSPIRED DECORATIONS
   ======================================== */
/* ========================================
   MURAL LOGO DECORATIONS (Sostituisce cerchi)
   ======================================== */

.mural-logo {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
    z-index: 1;
}

.mural-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Logo Large */
.logo-lg {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation: logoFloat 12s ease-in-out infinite;
}

/* Logo Medium */
.logo-md {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 8%;
    opacity: 0.1;
    animation: logoFloat 10s ease-in-out infinite 2s;
}

/* Logo Small */
.logo-sm {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 5%;
    opacity: 0.12;
    animation: logoFloat 15s ease-in-out infinite 4s;
}

/* ========================================
   ANIMAZIONE FLUTTUANTE
   ======================================== */

@keyframes logoFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(10px, -50px) rotate(-3deg);
    }
    75% {
        transform: translate(-15px, -25px) rotate(4deg);
    }
}

/* ========================================
   RESPONSIVE - Logo Mobile
   ======================================== */

@media (max-width: 768px) {
    .logo-lg {
        width: 180px;
        height: 180px;
        top: 15%;
        right: 5%;
        opacity: 0.1;
    }
    
    .logo-md {
        width: 120px;
        height: 120px;
        opacity: 0.12;
    }
    
    .logo-sm {
        width: 100px;
        height: 100px;
        opacity: 0.08;
    }
}

@media (max-width: 480px) {
    .logo-lg {
        width: 120px;
        height: 120px;
        opacity: 0.08;
    }
    
    .logo-md {
        display: none; /* Nascondi su mobile piccolo */
    }
    
    .logo-sm {
        width: 80px;
        height: 80px;
        opacity: 0.06;
    }
}

@keyframes muralFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.mural-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--sky-blue);
    opacity: 0.3;
    animation: triangleRotate 20s linear infinite;
}

.tri-1 {
    top: 15%;
    left: 20%;
}

.tri-2 {
    bottom: 25%;
    right: 30%;
    transform: rotate(180deg);
    border-bottom-color: var(--hot-pink);
}

@keyframes triangleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.mural-wave {
    position: absolute;
    width: 100%;
    height: 100px;
    opacity: 0.15;
}

.wave-pattern-1 {
    top: 30%;
    background: repeating-linear-gradient(
        90deg,
        var(--ocean-blue) 0px,
        var(--ocean-blue) 10px,
        transparent 10px,
        transparent 20px
    );
    transform: skewY(-5deg);
}

.wave-pattern-2 {
    bottom: 30%;
    background: repeating-linear-gradient(
        90deg,
        var(--teal) 0px,
        var(--teal) 15px,
        transparent 15px,
        transparent 30px
    );
    transform: skewY(5deg);
}

.mural-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, var(--magenta) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.dots-1 {
    top: 40%;
    left: 5%;
}

.dots-2 {
    bottom: 15%;
    right: 10%;
}

.mural-flower {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.4;
}

.flower-1 {
    top: 25%;
    right: 15%;
    background: radial-gradient(circle at 50% 50%, var(--hot-pink) 20%, transparent 20%),
                radial-gradient(circle at 50% 0%, var(--hot-pink) 30%, transparent 30%),
                radial-gradient(circle at 100% 50%, var(--hot-pink) 30%, transparent 30%),
                radial-gradient(circle at 50% 100%, var(--hot-pink) 30%, transparent 30%),
                radial-gradient(circle at 0% 50%, var(--hot-pink) 30%, transparent 30%);
    animation: flowerSpin 25s linear infinite;
}

.flower-2 {
    bottom: 30%;
    left: 20%;
    background: radial-gradient(circle at 50% 50%, var(--yellow) 20%, transparent 20%),
                radial-gradient(circle at 50% 0%, var(--yellow) 30%, transparent 30%),
                radial-gradient(circle at 100% 50%, var(--yellow) 30%, transparent 30%),
                radial-gradient(circle at 50% 100%, var(--yellow) 30%, transparent 30%),
                radial-gradient(circle at 0% 50%, var(--yellow) 30%, transparent 30%);
    animation: flowerSpin 30s linear infinite reverse;
}

@keyframes flowerSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   HERO EXTENDED
   ======================================== */
.hero-description-extended {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.hero-description-extended p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lead-paragraph {
    font-size: 1.375rem !important;
    font-weight: 600;
    color: #ffffff!important;
}

.desc_hero{color:#000000!important;}

.btn-accent-exotic {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-accent-exotic:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.stat-primary {
    border: 2px solid var(--ocean-blue);
}

.stat-secondary {
    border: 2px solid var(--teal);
}

.stat-accent {
    border: 2px solid var(--magenta);
}

.stat-warm {
    border: 2px solid var(--orange);
}

/* ========================================
   STORIA / TIMELINE SECTION
   ======================================== */
.storia-exotic {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(168, 218, 220, 0.1) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.storia-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(27, 154, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(221, 46, 68, 0.05) 0%, transparent 50%);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--ocean-blue) 0%, var(--teal) 50%, var(--magenta) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-marker {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-year {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    border: 3px solid var(--ocean-blue);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ocean-blue);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.marker-primary .timeline-year {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    font-size: 1.5rem;
    padding: 1.5rem 2.5rem;
}

.marker-secondary .timeline-year {
    background: var(--gradient-secondary);
    color: var(--white);
    border-color: transparent;
}

.marker-accent .timeline-year {
    background: var(--gradient-accent);
    color: var(--white);
    border-color: transparent;
}

.timeline-marker i {
    width: 24px;
    height: 24px;
    margin-top: 0.5rem;
}

.timeline-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--ocean-blue);
}

.content-highlight {
    background: linear-gradient(135deg, rgba(27, 154, 170, 0.05) 0%, var(--white) 100%);
    border-color: var(--ocean-blue);
}

.content-accent {
    background: linear-gradient(135deg, rgba(221, 46, 68, 0.05) 0%, var(--white) 100%);
    border-color: var(--magenta);
}

.content-current {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, var(--white) 100%);
    border-color: var(--orange);
}

.timeline-content h3 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.timeline-list {
    list-style: none;
    margin-top: 1.5rem;
}

.timeline-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--text);
}

.timeline-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: var(--ocean-blue);
    border-radius: 50%;
}

.timeline-highlight .timeline-list li::before {
    background: var(--ocean-blue);
    width: 10px;
    height: 10px;
}

.timeline-covid .timeline-list li::before {
    background: var(--magenta);
}

.timeline-current .timeline-list li::before {
    background: var(--orange);
}

.storia-cta {
    margin-top: 5rem;
    text-align: center;
}

.cta-content-storia {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--teal) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.cta-content-storia h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content-storia p {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Timeline Responsive */
@media (max-width: 1024px) {
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 29px 1fr;
        gap: 2rem;
    }
    
    .timeline-item:nth-child(even) .timeline-marker {
        order: 1;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        order: 2;
        text-align: left;
    }
    
    .timeline-marker {
        align-items: flex-start;
    }
    
    .timeline-year {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        padding: 1.5rem 0.75rem;
        font-size: 1rem;
    }
    
    .marker-primary .timeline-year {
        font-size: 1.125rem;
    }
}

/* ========================================
   PROGETTO SECTION UPDATES
   ======================================== */
.pink-gradient {
    background: linear-gradient(135deg, rgba(240, 98, 146, 0.1) 0%, var(--white) 100%);
}

.text-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.text-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

.text-card p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.text-card-accent {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, var(--white) 100%);
    border-left: 4px solid var(--teal);
}

.quote-card-progetto {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.quote-card-progetto::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(27, 154, 170, 0.15) 0%, transparent 70%);
}

.quote-card-progetto .quote-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.2);
}

.quote-card-progetto .quote-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.icon-teal {
    background: #00fdff;
}



/* ========================================
   NEWS CARDS - FIX PER ARTICOLI DINAMICI
   ======================================== */

/* Container carousel */
.news-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.news-carousel::-webkit-scrollbar {
    height: 8px;
}

.news-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.news-carousel::-webkit-scrollbar-thumb {
    background: #1B9AAA;
    border-radius: 10px;
}

/* Card base */
.news-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: 350px;
    max-width: 420px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #2c3e50;
    border: 2px solid transparent;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(27, 154, 170, 0.15);
    border-color: #1B9AAA;
}

/* Immagine */
.news-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

/* Badge categoria */
.news-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(27, 154, 170, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

/* Content */
.news-card-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Meta info */
.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.news-author {
    color: #1B9AAA;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-author::before {
    content: "✍️";
    font-size: 1rem;
}

.news-date {
    color: #7f8c8d;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date::before {
    content: "📅";
    font-size: 1rem;
}

/* Titolo */
.news-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    line-height: 1.4;
    color: #2c3e50;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.85rem; /* 2 righe fisse */
}

/* Excerpt */
.news-excerpt {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 5.1rem; /* 3 righe fisse */
}

/* Read more button */
.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1B9AAA;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    padding: 0.5rem 0;
    margin-top: auto;
}

.news-read-more i {
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.news-card:hover .news-read-more {
    gap: 1rem;
    color: #106570;
}

.news-card:hover .news-read-more i {
    transform: translateX(5px);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .news-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .news-card {
        flex: 0 0 100%;
        min-width: 280px;
        max-width: 100%;
    }
    
    .news-card-image {
        height: 200px;
    }
    
    .news-title {
        font-size: 1.25rem;
    }
    
    .news-excerpt {
        font-size: 0.9375rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .news-carousel {
        gap: 1rem;
    }
    
    .news-card-content {
        padding: 1.25rem;
    }
    
    .news-card-image {
        height: 180px;
    }
}

/* Fix altezza uguale per tutte le card */
.news-carousel {
    align-items: stretch;
}

.news-card {
    height: auto;
}

/* Fallback se no immagine */
.news-card-image:empty::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B9AAA 0%, #106570 100%);
}


/* ========================================
   GALLERY V2 - MODERN MASONRY GRID
   Aggiungi alla fine di style-exotic.css
   ======================================== */

.gallery-exotic-v2 {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Filter Tabs */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 3rem 0 4rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
    border-color: #1B9AAA;
    color: #1B9AAA;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #1B9AAA 0%, #106570 100%);
    border-color: #1B9AAA;
    color: white;
    box-shadow: 0 4px 12px rgba(27, 154, 170, 0.3);
}

/* Masonry Grid */
.gallery-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Gallery Card */
.gallery-card {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

.gallery-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    margin: 0;
    overflow: hidden;
}

.gallery-card-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(27, 154, 170, 0.2);
}

.gallery-card-inner img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-card-inner:hover img {
    transform: scale(1.1);
}

/* Overlay */
.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card-inner:hover .gallery-card-overlay {
    opacity: 1;
}

/* Badge */
.gallery-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(27, 154, 170, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

/* Content */
.gallery-card-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-card-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-card-inner:hover .gallery-card-overlay h3,
.gallery-card-inner:hover .gallery-card-overlay p {
    transform: translateY(0);
}

/* View Button */
.gallery-view-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
}

.gallery-card-inner:hover .gallery-view-btn {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.gallery-view-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.gallery-view-btn i {
    width: 20px;
    height: 20px;
}

/* Load More */
.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}

.gallery-load-more .btn-exotic {
    margin-bottom: 1.5rem;
}

.gallery-count {
    color: #7f8c8d;
    font-size: 0.9375rem;
}

.gallery-count span {
    font-weight: 700;
    color: #1B9AAA;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .gallery-grid-v2 {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.25rem;
    }
    
    .gallery-card-inner img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .gallery-exotic-v2 {
        padding: 4rem 0;
    }
    
    .gallery-filters {
        gap: 0.75rem;
        margin: 2rem 0 3rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .gallery-grid-v2 {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-card-inner img {
        height: 280px;
    }
    
    .gallery-card-overlay {
        padding: 1.5rem;
    }
    
    .gallery-card-overlay h3 {
        font-size: 1.25rem;
    }
    
    .gallery-card-overlay p {
        font-size: 0.875rem;
    }
    
    .gallery-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.688rem;
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .gallery-card-inner img {
        height: 300px;
    }
    
    /* Mobile: overlay sempre visibile */
    .gallery-card-overlay {
        opacity: 1;
        background: linear-gradient(
            180deg, 
            transparent 0%, 
            rgba(0, 0, 0, 0.6) 70%,
            rgba(0, 0, 0, 0.95) 100%
        );
    }
    
    .gallery-card-overlay h3,
    .gallery-card-overlay p,
    .gallery-view-btn {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   LIGHTBOX COMPATIBILITY
   ======================================== */

.gallery-card-inner {
    position: relative;
}

.gallery-card-inner a {
    display: block;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-card {
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-card:nth-child(1) { animation-delay: 0.05s; }
.gallery-card:nth-child(2) { animation-delay: 0.1s; }
.gallery-card:nth-child(3) { animation-delay: 0.15s; }
.gallery-card:nth-child(4) { animation-delay: 0.2s; }
.gallery-card:nth-child(5) { animation-delay: 0.25s; }
.gallery-card:nth-child(6) { animation-delay: 0.3s; }
.gallery-card:nth-child(7) { animation-delay: 0.35s; }
.gallery-card:nth-child(8) { animation-delay: 0.4s; }
