/* CSS completo per il tema Holis - VERSIONE SICURA E COMPLETA */
:root {
    /* Colori ispirati alla locandina */
    --primary-blue: #7BA7BC;
    --secondary-blue: #9BC4D4;
    --light-blue: #E8F4F8;
    --dark-blue: #4A6B7A;
    --accent-cream: #F5F1E8;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #ffffff;

    /* Font system moderno */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Ombre e effetti */
    --shadow-soft: 0 10px 30px rgba(123, 167, 188, 0.2);
    --shadow-strong: 0 20px 60px rgba(123, 167, 188, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--accent-cream) 100%);
    min-height: 100vh;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header moderno ispirato alla locandina */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling header */
.logo h1 {
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

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

/* Navigation */
.main-nav .menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav .menu li {
    margin: 0;
}

.main-nav .menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav .menu a:hover,
.main-nav .menu li.active a {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Hero section ispirata alla locandina */
.hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--light-blue) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Forme organiche di sfondo */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
}

/* Animazioni di scorrimento */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-scale {
    opacity: 0;
    animation: fadeInScale 0.6s ease forwards;
}

/* Ritardi per animazioni scaglionate */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    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.4), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* Sezioni moderne */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Sezioni con padding ridotto per uniformità */
.calendar-section,
.exhibitors-section,
.contact-section {
    padding: 2rem 0;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(123,167,188,0.05)"/></svg>');
    background-size: 100px 100px;
    pointer-events: none;
    opacity: 0.3;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -1px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-content h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.about-content h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.about-content li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Cards eventi e espositori */
.events-list,
.exhibitors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card,
.exhibitor-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(123, 167, 188, 0.1);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.event-card:hover::before {
    opacity: 0.05;
}

.event-card:hover,
.exhibitor-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.event-card-img {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 3rem;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-content {
    padding: 2rem;
}

.event-time {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    font-weight: 600;
}

.event-speaker {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.event-category {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Espositori */
.exhibitor-card {
    text-align: center;
    padding: 2rem;
}

.exhibitor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 2rem;
}

.exhibitor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exhibitor-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    font-weight: 600;
}

.exhibitor-type {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.exhibitor-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-blue);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.exhibitor-link:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Tabella Espositori */
.exhibitors-table-section {
    margin-top: 0;
}

.table-responsive {
    overflow-x: auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 2rem;
}

.exhibitors-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.exhibitors-table thead th {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

.exhibitors-table thead th:first-child {
    border-radius: 15px 0 0 0;
}

.exhibitors-table thead th:last-child {
    border-radius: 0 15px 0 0;
}

.exhibitors-table tbody tr {
    border-bottom: 1px solid var(--light-blue);
    transition: all 0.3s ease;
}

.exhibitors-table tbody tr:hover {
    background: var(--light-blue);
    transform: scale(1.01);
}

.exhibitors-table tbody tr:last-child {
    border-bottom: none;
}

.exhibitors-table td {
    padding: 1.5rem 1rem;
    vertical-align: top;
    border: none;
}

.photo-cell {
    width: 80px;
    text-align: center;
    vertical-align: middle;
}

.table-photo {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.table-photo:hover {
    transform: scale(1.1);
    border-color: var(--secondary-blue);
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin: 0 auto;
}

.name-cell {
    min-width: 180px;
}

.name-cell strong {
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

.name-cell small {
    color: var(--primary-blue);
    font-style: italic;
}

.specialization-cell {
    min-width: 120px;
}

.specialization-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.description-cell {
    max-width: none;
    width: 40%;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-cell {
    min-width: 180px;
}

.contact-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.website-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.website-link:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

/* Live Updates Section */
.live-updates {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
}

.live-updates h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.update-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.update-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.update-time {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.update-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Galleria fotografica */
.photo-gallery {
    padding: 6rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 300px));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--light-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 2rem;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Form contatti */
.contact-section {
    background: linear-gradient(135deg, var(--light-blue), var(--accent-cream));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-info h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info strong {
    color: var(--primary-blue);
}

.contact-form {
    max-width: none;
    margin: 0;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Stili moderni per i form */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1rem;
    position: relative;
}

.form-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 1px;
}

.form-control {
    width: 100%;
    padding: 1.8rem 2rem;
    border: 3px solid var(--light-blue);
    border-radius: 20px;
    font-family: var(--font-body), sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(248, 252, 255, 0.9), rgba(255, 255, 255, 0.95));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 8px 25px rgba(123, 167, 188, 0.08);
}

.form-control::placeholder {
    color: rgba(123, 167, 188, 0.6);
    font-style: italic;
    font-weight: 400;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--white), rgba(248, 252, 255, 0.95));
    box-shadow: 0 0 0 6px rgba(123, 167, 188, 0.15), 0 15px 35px rgba(123, 167, 188, 0.12);
    transform: translateY(-4px) scale(1.02);
}

.form-control:hover {
    border-color: var(--secondary-blue);
    background: linear-gradient(135deg, var(--white), rgba(248, 252, 255, 0.98));
    box-shadow: 0 12px 30px rgba(123, 167, 188, 0.1);
    transform: translateY(-2px);
}

textarea.form-control {
    min-height: 200px;
    resize: vertical;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Checkbox styling */
input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-blue);
    border-radius: 5px;
    background: var(--white);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    vertical-align: middle;
}

input[type="checkbox"]:checked {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-color: var(--primary-blue);
}

input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
    font-size: 12px;
}

input[type="checkbox"]:hover {
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

/* Label per checkbox */
label[for*="privacy"] {
    display: flex;
    align-items: center;
    cursor: pointer;
    line-height: 1.5;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Bottone di invio moderno */
.form-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-button::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 ease;
}

.form-button:hover::before {
    left: 100%;
}

.form-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-strong);
    filter: brightness(1.1);
}

.form-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Messaggio di successo */
.form-message {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

/* Filtri calendario */
.calendar-filters {
    text-align: center;
    margin: 3rem 0;
}

.filter-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-blue);
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Menu responsive - FIX MOBILE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .events-list,
    .exhibitors-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .updates-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    /* MENU MOBILE - FIX COMPLETO */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1000;
        position: relative;
    }

    .menu-toggle span {
        width: 30px;
        height: 3px;
        background: var(--primary-blue);
        border-radius: 3px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
        display: block;
    }

    .menu-toggle.active span:first-child {
        transform: rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .main-nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background-color: white !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        z-index: 999 !important;
        width: 100% !important;
    }

    .main-nav.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .main-nav .menu {
        flex-direction: column !important;
        padding: 1rem 0 !important;
        gap: 0 !important;
        margin: 0 !important;
    }

    .main-nav .menu li {
        margin: 0 !important;
        text-align: center !important;
        width: 100% !important;
    }

    .main-nav .menu a {
        display: block !important;
        padding: 1rem !important;
        border-bottom: 1px solid #eee !important;
        border-radius: 0 !important;
        width: 100% !important;
        text-align: center !important;
        color: var(--text-dark) !important;
        background: none !important;
    }

    .main-nav .menu a:hover {
        background: var(--light-blue) !important;
        color: var(--primary-blue) !important;
    }

    .table-responsive {
        overflow-x: scroll;
    }

    .exhibitors-table {
        min-width: 800px;
    }

    .exhibitors-table th,
    .exhibitors-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }

    .table-photo {
        width: 50px !important;
        height: 50px !important;
    }

    /* Ottimizzazione colonne mobile per tabella espositori */
    .photo-cell {
        width: 60px;
    }

    .name-cell {
        min-width: 140px;
    }

    .specialization-cell {
        min-width: 100px;
    }

    .description-cell {
        width: 35%;
    }

    .contact-cell {
        min-width: 140px;
    }

    /* Form mobile ottimizzato */
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-control {
        padding: 1.5rem 1.8rem;
        font-size: 16px; /* Previene zoom iOS */
        border-width: 2px;
    }

    .form-control:focus {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 0 0 4px rgba(123, 167, 188, 0.12), 0 8px 20px rgba(123, 167, 188, 0.08);
    }

    .form-control:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(123, 167, 188, 0.08);
    }

    .form-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .form-label::after {
        width: 20px;
    }
}

/* Hero Slideshow Styles */
.hero-slideshow {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    min-height: 500px;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 167, 188, 0.8) 0%, rgba(155, 196, 212, 0.6) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
    margin: 0 auto;
    width: 100%;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    text-shadow: none;
}

.slide-content .btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-size: 1.5rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
    left: 2rem;
}

.slideshow-nav.next {
    right: 2rem;
}

/* Slideshow Dots */
.slideshow-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.dot:hover,
.dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

/* Gallery improvements - già definito sopra */

/* Responsive adjustments for slideshow */
@media (max-width: 768px) {
    .hero-slideshow {
        padding: 6rem 0;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .slide-content h2 {
        font-size: clamp(1.2rem, 5vw, 2rem);
    }
    
    .slide-content p {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .slideshow-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        padding: 0.8rem;
    }
    
    .slideshow-nav.prev {
        left: 1rem;
    }
    
    .slideshow-nav.next {
        right: 1rem;
    }
    
    .slideshow-dots {
        bottom: 2rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.cookie-consent-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--white);
    color: var(--primary-blue);
}

.cookie-btn-accept:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 1rem;
    box-shadow: var(--shadow-strong);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-settings-modal.show .cookie-settings-content {
    transform: scale(1);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-blue);
}

.cookie-settings-header h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin: 0;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: var(--light-blue);
    transform: rotate(90deg);
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 2px solid var(--light-blue);
    border-radius: 15px;
}

.cookie-category h4 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-category p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background: var(--primary-blue);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.cookie-settings-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light-blue);
}

.cookie-save-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-consent-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-settings-content {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .cookie-settings-actions {
        flex-direction: column;
    }
    
    .cookie-save-btn {
        width: 100%;
    }
}