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

:root {
    --white: #ffffff;
    --gray: #707b7c;
    --pink: #F492CD;
    --pink-dark: #d5578c;
    --pink-light: #ffb6d9;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    background: var(--gray);
    color: var(--white);
}

table {
  background: var(--white);
}

table a {
  color: #000;
}


/* 2) Singoli Elementi della Galleria */
.gallery-item {
    /* Il posizionamento assoluto (top/left) è gestito da JavaScript/libreria */
    padding: 10px; /* Spazio tra le card (gutter) */
    transition: all 0.5s ease-in-out; /* Animazione fluida per riposizionamento */
    cursor: pointer;
}

/* 3) Link e Immagine (l'elemento visivo) */
.gallery-lightbox {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* Angoli arrotondati moderni */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

.gallery-lightbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth zoom */
}

/* 4) Effetto Hover (Coerente con lo stile futuristico/brillante) */
.gallery-item:hover .gallery-lightbox {
    box-shadow: 0 0 0 4px var(--pink), /* Aggiunge un bordo luminoso esterno */
                0 15px 40px rgba(244, 146, 205, 0.3); /* Ombra rosa sollevata */
    transform: translateY(-4px); /* Leggero sollevamento */
}

.gallery-item:hover .gallery-lightbox img {
    transform: scale(1.08) rotate(1deg); /* Leggero zoom con rotazione */
    filter: brightness(1.1);
}

/* 5) Overlay per l'effetto Lightbox (simulazione) */
.gallery-lightbox::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 146, 205, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover .gallery-lightbox::after {
    opacity: 1;
}

/* 6) Icona Lightbox (opzionale) */
.gallery-lightbox.gallery-img::before {
    content: "\f4ff"; /* Icona di zoom/lente di ingrandimento (Bootstrap Icons) */
    font-family: "bootstrap-icons";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-lightbox.gallery-img::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* 7) Media Queries per la coerenza (opzionale) */
@media (max-width: 991px) {
    .gallery-item {
        /* Rimuove l'animazione di sollevamento su schermi piccoli */
        transform: none !important;
    }
}
.privacy-policy ul li::before {
  content: "\F309"!important;
  font-family: "bootstrap-icons";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 1.1em;
  color: var(--pink-light);
  line-height: 1;
}

.privacy-policy a {
  color: #fff;
  text-decoration: underline;
}

.privacy-policy a:hover {
  color: #fff;
  text-decoration: underline;
  opacity: 0.8;
}

.modal {
  z-index: 1600;
}

.modal-body {
  color: #000;
}

/* === DROPDOWN MENU FUTURISTICO LEGIBILE E PULITO === */
.dropdown-menu {
  background: var(--gray);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(244, 146, 205, 0.4);
  border-radius: 18px;
  padding: 12px 0;
  box-shadow: 0 0 25px rgba(244, 146, 205, 0.25),
              0 8px 25px rgba(0, 0, 0, 0.6);
  animation: dropdownIn 0.4s ease forwards;
  transform-origin: top center;
  min-width: 230px;
}

.dropdown-item i {
  font-size: 30px;              /* Dimensione uniforme */
  vertical-align: middle;       /* Allinea l’icona al testo */
  margin-right: 10px;           /* Spazio tra icona e testo */
  display: inline-flex;         /* Migliora l’allineamento in linea */
  align-items: center;          /* Centra verticalmente */
  line-height: 1;               /* Evita disallineamenti su icone grandi */
  background: linear-gradient(135deg, var(--pink), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes dropdownIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Elementi del menu */
.dropdown-item {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  padding: 14px 26px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  position: relative;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

/* Hover & Active identici */
.dropdown-item:hover,
.dropdown-item.active {
  background: rgba(244, 146, 205, 0.25);
  color: var(--white);
  border-left-color: var(--pink);
  font-weight: 700;
  transform: translateX(0); /* più stabile e lineare */
}

/* Rimuovo l’animazione extra per coerenza */
.dropdown-item::before {
  display: none;
}

/* Ultimo link ("Vedi tutte") */
.dropdown-item:last-child {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: left;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 5px;
}
.dropdown-item:last-child:hover {
  background: rgba(244,146,205,0.25);
  opacity: 1;
  border-left-color: transparent;
}

/* Link principale */
.nav-link.dropdown-toggle {
  color: var(--white) !important;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.nav-link.dropdown-toggle:hover {
  color: var(--pink-light) !important;
}

/* Icona caret */
.nav-link.dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
  color: var(--pink-light);
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-item.show .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
  color: var(--pink);
}


.sticky-top.col{
  top:100px;
}
.content {
  margin-top: 70px;
}

.container-xxxl {
  width: 100%;
  max-width: 1600px; /* puoi mettere 1600px, 1800px o quello che preferisci */
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.mod-breadcrumbs__wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.mod-breadcrumbs.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.mod-breadcrumbs__here {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 0;
    float: none;
}

.mod-breadcrumbs__item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.mod-breadcrumbs__item a:hover {
    background: rgba(244, 146, 205, 0.2);
    color: var(--pink-light);
    transform: translateY(-2px);
}

.mod-breadcrumbs__item + .mod-breadcrumbs__item::before {
  content: "\F285"; /* codice Unicode dell’icona */
  font-family: "bootstrap-icons"; /* usa il font corretto */
  font-weight: normal; /* i Bootstrap Icons non usano pesi */
  color: var(--pink);
  margin: 0 4px;
  font-size: 1rem;
  margin-top: 5px;
  display: inline-block;
  vertical-align: middle;
}


.mod-breadcrumbs__item.active span {
    color: var(--pink-light);
    font-weight: 700;
    padding: 6px 12px;
    background: rgba(244, 146, 205, 0.15);
    border-radius: 8px;
    display: inline-block;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 30px 0px;
    position: relative;
    overflow: hidden;
    text-align: left;
    width: 100%;
}





/* Title section a sinistra */
.title-section {
    flex: 0 0 auto;
    max-width: 800px;
}

.title h2 {
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, var(--pink), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--pink);
    border-radius: 2px;
}

.title-section span {
  display: block;                /* Forza il posizionamento sotto all'h2 */
  color: var(--white);           /* Colore bianco coerente col tema */
  font-size: 1.1rem;             /* Leggermente più piccolo del titolo */
  font-weight: 500;              /* Peso medio */
  margin-top: 10px;              /* Distanza sotto al titolo */
  letter-spacing: 1px;           /* Spaziatura elegante */
  text-transform: uppercase;     /* Uniforma con il resto dello stile */
  opacity: 0.9;                  /* Leggera trasparenza per armonia */
}

.btn-pink {
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--white);
    padding: 15px 40px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
     clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    -webkit-clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-decoration: none;
      display: inline-block;
}

.btn-pink.btn-mini {
    padding: 10px 30px;
}

.btn-pink:hover {
  color: #fff;
}

.btn-pink::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pink);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-pink:hover::before {
    left: 0;
}

.btn-pink i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-pink:hover i {
    transform: translateX(5px);
}


/* 1) Rimuovo i bullet standard */
.description ul {
    list-style: none;
    padding-left: 0;  /* gestiamo noi l'indentazione */
    margin-left: 0;
}

/* 2) Stile base di ogni item */
.description ul li {
    position: relative;
    padding-left: 28px;   /* spazio per l'icona */
    margin: 10px 0;
}

/* 3) Icona check al posto del punto (FA5/FA6) */
.description ul li::before {
    content: "\F417";               /* fa-check-circle */
    font-family: "bootstrap-icons"; /* usa il font corretto */
    font-weight: 900;               /* solid */
    position: absolute;
    left: 0;
    top: 0.2em;                     /* allineamento verticale con il testo */
    font-size: 1.1em;
    color: var(--pink-light);             /* rosa dal tuo :root */
    line-height: 1;
}

/* 4) Livello annidato (ul li li): leggermente più piccolo / leggero */
.description ul ul li {
    padding-left: 26px;
}
.description ul ul li::before {
    font-size: 1em;
    color: var(--pink-light);
    opacity: 0.95;
}

/* 5) Livello 3 (opzionale) */
.description ul ul ul li::before {
    font-size: 0.95em;
    opacity: 0.9;
}


/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    mix-blend-mode: difference;
}

/* Navbar Futuristica */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1300;
    padding: 0;
    backdrop-filter: blur(20px);
    background: rgba(127, 140, 141, 0.8);
    border-bottom: 1px solid var(--pink-light);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    transition: all 0.5s ease;
}

.navbar.shrink .navbar-brand img {
    height: 50px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    transition: all 0.5s ease;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.logo-text span {
    display: block;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 20px;
}

.navbar.shrink .logo-text {
    font-size: 14px;
}

.navbar.shrink .logo-text span {
    font-size: 16px;
}

.navbar-nav {
    gap: 0;
}

.nav-link {
    color: var(--white) !important;
    padding: 15px 30px !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--pink);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}



 /* Toggler moderno */
        .navbar-toggler {
            border: none;
            padding: 8px;
            height: 45px;
            position: relative;
            background: rgba(244, 146, 205, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-left: 10px;
        }

        .navbar-toggler:hover {
            background: rgba(244, 146, 205, 0.2);
            transform: scale(1.05);
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(244, 146, 205, 0.3);
            outline: none;
        }

        /* Hamburger animato */
        .navbar-toggler-icon {
            background-image: none;
            position: relative;
            width: 24px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after,
        .navbar-toggler-icon span {
            content: '';
            display: block;
            height: 3px;
            width: 100%;
            background: var(--pink);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
            transform: translateY(8.5px) rotate(45deg);
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
            opacity: 0;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
            transform: translateY(-8.5px) rotate(-45deg);
        }

.navbar-collapse {
    background: rgba(127, 140, 141, 0.95);
    backdrop-filter: blur(20px);
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 20px;
        margin-top: 15px;
        border-top: 1px solid var(--pink-light);
    }

    .nav-link {
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-prenota {
        width: 100%;
        margin-top: 15px;
    }
}

/* Hero Section Innovativa */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 800px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) grayscale(10%);
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(255, 105, 180, 0.3);
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    bottom: -200px;
    left: 30%;
    animation-delay: 4s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 40px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 120px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.2s; }
.hero-title .word:nth-child(2) { 
    animation-delay: 0.4s;
    background: linear-gradient(135deg, var(--pink), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-title .word:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 28px);
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.8s forwards;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-block;
    padding: 20px 60px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s 1s forwards;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--pink);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.hero-cta:hover::before {
    width: 400px;
    height: 400px;
}

.hero-cta:hover {
  color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--pink);
    border-radius: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s 1.2s forwards;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--pink);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* === HOME WHO IS SECTION === */
.home-whois {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
}

/* Background Image con overlay */
.whois-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.whois-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
  135deg,
  rgba(0, 0, 0, 0.35) 0%,
  rgba(0, 0, 0, 0.15) 50%,
  rgba(0, 0, 0, 0.35) 100%
);
    z-index: 1;
}

.whois-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
  transition: transform 0.8s ease-out;
}

.whois-bg.revealed img {
  transform: scale(1);
}

/* Forme geometriche di sfondo */
.whois-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.whois-shape {
    position: absolute;
    border: 2px solid rgba(244, 146, 205, 0.3);
    animation: floatShape 20s infinite ease-in-out;
}

.whois-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    top: 10%;
    left: -200px;
    animation-delay: 0s;
}

.whois-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -150px;
    transform: rotate(45deg);
    animation-delay: 3s;
}

.whois-shape:nth-child(3) {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    bottom: 10%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-80px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Contenuto centrale */
.whois-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 0 30px;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Titolo principale */
.whois-title {
    font-size: clamp(42px, 7vw, 85px);
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--pink), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.8s 0.2s backwards;
}

.whois-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 4px;
    background: var(--pink);
    border-radius: 2px;
}

/* Intro text */
.whois-intro {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s 0.4s backwards;
    padding: 0 20px;
}

/* Bottone CTA */
.btn-whois {
    display: inline-block;
    padding: 20px 60px;
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    animation: fadeInUp 0.8s 0.6s backwards;
    font-size: 1rem;
}

.btn-whois::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--pink), var(--pink-light));
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-whois:hover::before {
    left: 0;
}

.btn-whois:hover {
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 146, 205, 0.4);
}

.btn-whois i {
    margin-left: 12px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-whois:hover i {
    transform: translateX(8px);
}

/* Decorazione icona */
.whois-icon {
    position: absolute;
    font-size: 180px;
    color: rgba(244, 146, 205, 0.08);
    z-index: 1;
}

.whois-icon.icon-left {
    top: 15%;
    left: 5%;
    animation: float 8s infinite ease-in-out;
}

.whois-icon.icon-right {
    bottom: 15%;
    right: 5%;
    animation: float 8s 4s infinite ease-in-out;
}

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

/* Responsive */
@media (max-width: 768px) {
    .home-whois {
        padding: 60px 15px;
        min-height: 80vh;
    }

    .whois-title {
        font-size: clamp(32px, 10vw, 48px);
        margin-bottom: 25px;
    }

    .whois-intro {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .btn-whois {
        padding: 16px 40px;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .whois-shape {
        opacity: 0.2;
    }

    .whois-icon {
        font-size: 100px;
    }
}

@media (max-width: 576px) {
    .whois-title::after {
        width: 50%;
    }

    .btn-whois {
        padding: 14px 35px;
    }
}

/* Services Section - Layout Bento Box */
.services {
    color: var(--gray);
    position: relative;
    background: var(--gray);
    padding: 20px 0;
}

.services-title {
    text-align: center;
    margin-bottom: 80px;
}

.services-title h2 {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.services-grid {
  margin-bottom: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  backdrop-filter: blur(10px);
  color: var(--color-white);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);

}

.slider-container > * {
  padding-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(244, 146, 205, 0.25);
}


.service-card:hover::before {
    opacity: 1;
}


.service-icon {
    font-size: clamp(40px, 5vw, 60px);  /* icona responsive */
    background: linear-gradient(135deg, var(--pink), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;  /* impedisce che l’icona si riduca troppo su schermi piccoli */
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
   transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    display: flex;
    align-items: center;
    gap: 12px; 
    color: var(--white);
    font-size: clamp(18px, 3vw, 28px);  /* titolo responsive */
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-wrap: wrap;   /* gestisce correttamente eventuali ritorni a capo */
}

.service-card .intro {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 16px;
    min-height: 100px;
}

.service-card h3 a {
    flex: 1; /* permette al titolo di andare a capo mantenendo l'icona allineata */
}

.service-card a {
  color: #fff;
  text-decoration: none;
}

.service-image {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    object-position: 82% center;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}


/* === QUOTE CTA SECTION === */
.quote {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px;
}

/* Background Image con effetto parallax */
.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.quote-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 135deg, rgba(127, 140, 141, 0.60) 0%, rgba(200, 120, 150, 0.45) 50%, rgba(127, 140, 141, 0.60) 100% )
    z-index: 1;
}

.quote-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) grayscale(30%);
}

/* Pattern decorativo */
.quote-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--pink) 35px, var(--pink) 37px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--pink-light) 35px, var(--pink-light) 37px);
}

/* Forme geometriche animate */
.quote-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.quote-shape {
    position: absolute;
    border: 3px solid rgba(244, 146, 205, 0.4);
    animation: rotateFloat 25s infinite ease-in-out;
}

.quote-shape:nth-child(1) {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.quote-shape:nth-child(2) {
    width: 250px;
    height: 250px;
    top: 40%;
    right: -80px;
    transform: rotate(45deg);
    animation-delay: 4s;
}

.quote-shape:nth-child(3) {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    bottom: -60px;
    left: 30%;
    animation-delay: 8s;
}

@keyframes rotateFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translateY(-60px) rotate(120deg) scale(1.1);
        opacity: 0.6;
    }
    66% {
        transform: translateY(-30px) rotate(240deg) scale(0.9);
        opacity: 0.5;
    }
}

/* Contenuto centrale */
.quote-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 2px solid rgba(244, 146, 205, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
                inset 0 0 30px rgba(255, 255, 255, 0.05);
    animation: slideInScale 1s ease forwards;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Icona decorativa grande */
.quote-icon-main {
    font-size: 80px;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    display: inline-block;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

/* Titolo principale con effetto neon */
.quote-title {
    font-size: clamp(38px, 6vw, 75px);
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--pink-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.8s 0.2s backwards;

}

/* Sottotitolo */
.quote-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s 0.3s backwards;
}

/* Descrizione */
.quote-description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s 0.4s backwards;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container bottoni */
.quote-cta-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.5s backwards;
}

/* Bottone principale */
.btn-quote-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 65px;
    background: var(--pink);
    border: 3px solid var(--pink);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(244, 146, 205, 0.4);
}

.btn-quote-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-quote-primary:hover::before {
    width: 500px;
    height: 500px;
}

.btn-quote-primary:hover {
    color: var(--pink);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(244, 146, 205, 0.6);
}

.btn-quote-primary i {
    font-size: 1.3rem;
    transition: transform 0.4s ease;
}

.btn-quote-primary:hover i {
    transform: rotate(15deg) scale(1.2);
}

/* Bottone secondario */
.btn-quote-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 50px;
    background: transparent;
    border: 3px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    font-size: 1rem;
}

.btn-quote-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-quote-secondary:hover::before {
    left: 0;
}

.btn-quote-secondary:hover {
    color: var(--gray);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-quote-secondary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-quote-secondary:hover i {
    transform: translateX(8px);
}

/* Elementi decorativi fluttuanti */
.quote-float-icon {
    position: absolute;
    font-size: 120px;
    color: rgba(244, 146, 205, 0.1);
    z-index: 1;
    animation: floatSlow 10s infinite ease-in-out;
}

.quote-float-icon.icon-1 {
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.quote-float-icon.icon-2 {
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.quote-float-icon.icon-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-40px) rotate(10deg);
    }
}

/* Badge urgenza */
.quote-badge {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s 0.1s backwards;
    box-shadow: 0 5px 20px rgba(244, 146, 205, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .quote {
        min-height: 70vh;
        padding: 80px 20px;
    }

    .quote-content {
        padding: 50px 30px;
    }

    .quote-icon-main {
        font-size: 60px;
    }

    .quote-float-icon {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .btn-pink.btn-mini {
        padding: 15px 10px;
        font-size: 12px;
    }

    .quote {
        padding: 60px 15px;
    }

    .quote-content {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .quote-title {
        font-size: clamp(28px, 8vw, 48px);
        margin-bottom: 20px;
    }

    .quote-subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .quote-description {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .quote-cta-container {
        flex-direction: column;
        gap: 20px;
    }

    .btn-quote-primary,
    .btn-quote-secondary {
        padding: 18px 40px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .quote-float-icon {
        font-size: 60px;
        opacity: 0.05;
    }

    .quote-shape {
        opacity: 0.2;
    }
}

@media (max-width: 576px) {
    .quote-badge {
        font-size: 0.8rem;
        padding: 10px 22px;
    }

    .btn-quote-primary,
    .btn-quote-secondary {
        padding: 16px 35px;
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
}


/* Team Section - Layout Diagonale */





.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    height: 600px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#team-item .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
   
}

.team-member:hover .team-image img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pink), transparent);
    opacity: 0.5;
    mix-blend-mode: multiply;
    transition: opacity 0.8s ease;
}

.team-member:hover .team-image::before {
    opacity: 0;
}

.team-info {
    padding: 40px;
    position: relative;
}

#team-item .team-info {
    margin-top: 20px;
    padding: 40px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

}

.team-number {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink), transparent);
    -webkit-background-clip: text;

    position: absolute;
    top: -40px;
    left: 0;
    opacity: 0.1;
}

.team-info h3 {
  font-size: clamp(24px, 5vw, 40px); 
  font-weight: 900;
  margin-bottom: 10px;
  position: relative;
}

.team-member.after-two .team-info h3 {
  font-size: clamp(16px, 5vw, 30px); 
}

.team-member.after-two .team-role {
    font-size: 14px;
}
.team-role {
    font-size: 18px;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 700;
}

.team-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 30px;
}

.team-social {
    text-align: center;
}

.team-social a {
    text-decoration: none;
}

.team-social a:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-5px);
}

.team-description {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 18px;
    font-weight: 300;
    position: relative;
    overflow: hidden;

}

.row.article {
    margin-top: 20px;
}

.article {
    padding-bottom: 20px;
}

.article .hero-header {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 400px;
  overflow: hidden;
}

.article .hero-header img {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(0);
  transition: transform 0.8s ease-out;
  will-change: transform;
  object-position: 82% center;
}

/* Overlay più chiaro e con gradiente più morbido */
.article .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  color: var(--white);
  z-index: 2;
}

/* =====================================
   TITOLO + BREADCRUMB
   ===================================== */
.article .title {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}

.article .title-section {
  flex: 1 1 60%;
  max-width: 700px;
  min-width: 280px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.article .title-section h2 {

  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--pink-light), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  line-height: 1.1;
  word-wrap: break-word;
}

.article .title-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
}

.article .title-section h2 i{
  background: linear-gradient(135deg, var(--pink), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================================
   BREADCRUMB - CORREZIONE BORDO DOPPIO
   ===================================== */
.article .mod-breadcrumbs__wrapper {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 20px;

  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.article .mod-breadcrumbs.breadcrumb {
  background: transparent; /* evita sovrapposizione di stili */
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.article .mod-breadcrumbs__item a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.article .mod-breadcrumbs__item a:hover {
  color: var(--pink-light);
}

.article .mod-breadcrumbs__item.active span {
  color: var(--pink-light);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 12px;
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */
@media (max-width: 992px) {
  .article .hero-overlay {
    align-items: flex-end; /* Mantiene il contenuto in basso */
    text-align: center;
    padding-bottom: 40px;
  }

  .article .title {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Allinea in basso */
    gap: 20px;
    width: 100%;
    padding: 0;

  }

  .article .title-section {
    max-width: 90%;
    text-align: center;
  }

  .article .mod-breadcrumbs__wrapper {
    width: 100%;
    justify-content: flex-start; /* evita spazi vuoti */
    overflow-x: auto;            /* abilita lo scroll orizzontale */
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;             /* opzionale: più pulito su mobile */
    border-radius: 0;
    padding: 0px 0px;
  }

  .article .mod-breadcrumbs.breadcrumb {
    display: flex;
    flex-wrap: nowrap;           /* evita il ritorno a capo */
    gap: 10px;                   /* spaziatura tra le voci */
  }

  .article .mod-breadcrumbs__item {
    flex: 0 0 auto;              /* mantiene le voci in linea */
  }

  /* Rende il titolo e breadcrumb più proporzionati su mobile */
  .article .title-section h2 {
    font-size: clamp(18px, 6vw, 20px);
  }
}

@media (max-width: 576px) {
  .article .hero-header img {
      top: -10px;
    }
  .article .hero-header {
    height: 50vh;
  }

  .article .hero-overlay {
    padding-bottom: 25px;
  }

  
}


/* --- ARTICLE INTRO --- */
.artilce-intro {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 50px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.15), 
                0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.artilce-intro:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.artilce-intro p {
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* --- ARTICLE DESCRIPTION --- */
.article-description {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 60px 70px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1), 
                0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Titolo della sezione */
.article-description h2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--pink), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    position: relative;
}

.article-description h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--pink);
    border-radius: 2px;
}

/* Paragrafi */
.article-description p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

/* Liste già coerenti con .description ul ma più leggibili in questo contesto */
.article-description ul {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.article-description li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 32px;
    font-size: 1rem;
    line-height: 1.7;
}

.article-description li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 1.1em;
    color: var(--pink);
}



.article-description .btn-prenota:hover::before {
    left: 0;
}

.article-description .btn-prenota:hover {
    color: #fff;
}

/* --- Responsività --- */
@media (max-width: 992px) {
    .artilce-intro, .article-description {
        padding: 30px 25px;
    }

    .article-description h2 {
        font-size: 1.8rem;
    }
}


.modern-sidebar-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modern-sidebar-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}




.modern-sidebar-box h4 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--pink), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.modern-sidebar-box h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
}

/* Menu prestazioni moderno */
.modern-prestazioni-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prestazione-menu-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 18px 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.prestazione-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(8px);
}

.prestazione-menu-item .prestazione-icon {
   font-size: 3rem;
color: var(--pink);
margin-bottom: 20px;
margin-right: 10px;
/* Rimozione del text-shadow con glow */
text-shadow: none; 
transition: transform 0.3s ease;
position: relative;
top: 10px;


}

/* ===============================
   STILE ACTIVE per voce prestazione
   =============================== */
.prestazione-menu-item.active {
  background: linear-gradient(135deg, rgba(244, 146, 205, 0.25), rgba(255, 255, 255, 0.05));
  border: 1px solid var(--pink);
  box-shadow: 0 0 25px rgba(244, 146, 205, 0.4),
              inset 0 0 10px rgba(255, 255, 255, 0.2);
  transform: translateX(6px);
  transition: all 0.4s ease;
}

/* Colore titolo e descrizione in active */
.prestazione-menu-item.active .menu-title {
  color: var(--pink-light);
  font-weight: 700;
}

.prestazione-menu-item.active .menu-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* Icona in evidenza (glow rosa) */
.prestazione-menu-item.active .prestazione-icon {
  color: var(--pink-light);
  text-shadow:
    0 0 0px var(--white),
    0 0 0px var(--white),
    0 0 0px var(--white);
  transform: scale(1.05);
  transition: all 0.4s ease;
}

/* Freccia destra animata e rosa */
.prestazione-menu-item.active .menu-arrow {
  color: var(--pink-light);
  transform: translateX(3px);
}


.menu-content {
    flex: 1;
}

.menu-title {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

.menu-desc {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.menu-arrow {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.prestazione-menu-item:hover .menu-arrow {
    color: var(--pink);
    transform: translateX(3px);
}


/* Sezione a tutta larghezza con sfondo grigio */
.highlight-box {
  width: 100%;
  background: var(--gray);
  color: var(--white);
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;

}

.highlight-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

/* -------------------------------------------------
   🔮 EFFETTO NEON PINK PULITO E DEFINITO
   ------------------------------------------------- */
.neon-perfect {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink-light);
  position: relative;
  display: inline-block;
  filter: brightness(1.2);
  
  /* Glow definito e nitido */
  text-shadow:
    0 0 1px var(--white),
    0 0 2px var(--white),
    0 0 6px var(--pink-light),
    0 0 12px var(--pink),
    0 0 25px var(--pink),
    0 0 45px var(--pink-dark);
  
  animation: pinkGlow 3s ease-in-out infinite;
}

@keyframes pinkGlow {
  0%, 100% {
    text-shadow:
      0 0 1px var(--white),
      0 0 3px var(--white),
      0 0 6px var(--pink-light),
      0 0 15px var(--pink),
      0 0 30px var(--pink),
      0 0 60px var(--pink-dark);
    filter: brightness(1.3);
  }
  50% {
    text-shadow:
      0 0 1px var(--white),
      0 0 2px var(--pink-light),
      0 0 5px var(--pink-light),
      0 0 10px var(--pink),
      0 0 20px var(--pink-light);
    filter: brightness(0.9);
  }
}

/* -------------------------------------------------
   Testo descrizione sotto
   ------------------------------------------------- */
.highlight-box p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  margin: 35px 0 50px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------
   Bottone coerente con il tuo tema
   ------------------------------------------------- */
.btn-highlight {
  display: inline-block;
  padding: 20px 60px;
  border: 2px solid var(--pink);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(244, 146, 205, 0.2);
}

.btn-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--pink-light), transparent);
  transition: left 0.5s ease;
}

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

.btn-highlight:hover {
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(244, 146, 205, 0.5);
}

.btn-highlight i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-highlight:hover i {
  transform: translateX(6px);
}


/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 200px;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        grid-column: span 6;
        grid-row: span 1;
    }

    .service-card:nth-child(4),
    .service-card:nth-child(5),
    .service-card:nth-child(6) {
        grid-column: span 6;
        grid-row: span 1;
    }

    .team-member {
        grid-template-columns: 1fr;
    }

    .team-member:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 992px) {
    .title {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 25px 30px;
        margin-bottom:0;
    }

    .title h2 {
        font-size: clamp(32px, 8vw, 48px);
    }

    .mod-breadcrumbs__wrapper {
        width: 100%;
        justify-content: flex-start;
    }

    .mod-breadcrumbs.breadcrumb {
        width: 100%;
        padding: 15px 20px;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
     .whois-bg img {
    object-position: right;
  }

    .team-image {
        height: 400px;
    }

    .highlight-box {
    padding: 80px 20px;
  }
  .neon-perfect {
    font-size: clamp(28px, 8vw, 48px);
  }
  .highlight-box p {
    font-size: 1rem;
  }
  .btn-highlight {
    padding: 16px 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
            .title {
                padding: 20px;
            }

            .mod-breadcrumbs.breadcrumb {
                padding: 12px 16px;
                gap: 8px;
            }

            .mod-breadcrumbs__here {
                font-size: 0.75rem;
            }

            .mod-breadcrumbs__item a,
            .mod-breadcrumbs__item.active span {
                font-size: 0.8rem;
                padding: 4px 8px;
            }
        }


/* Parallax Elements */
.parallax-el {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.parallax-el.el-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 50%;
}

.parallax-el.el-2 {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 105, 180, 0.2);
    transform: rotate(45deg);
}

/* Sidebar */
.sidebar-box {
    background: var(--gray);
    border: 2px solid var(--pink-light);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    transition: all 0.4s ease;
}

.sidebar-box:hover {
    border-color: var(--pink);
    transform: translateY(-5px);
}

.sidebar-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-list,
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li,
.sidebar-menu li {
    margin-bottom: 15px;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list li i {
    color: var(--pink);
}

.sidebar-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.sidebar-menu li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s ease;
}

.sidebar-menu li a:hover {
    color: var(--pink-light);
}

.sidebar-menu li a:hover::after {
    width: 100%;
}


.prestazione-card {
background: rgba(255, 255, 255, 0.05); /* Colore di fondo molto leggero */
/* Sostituiamo il border con un box-shadow interno per dare profondità */
border: none; /* Rimuoviamo il vecchio bordo */
border-radius: 20px;
padding: 35px 25px;
text-align: center;
transition: all 0.4s ease;
height: 100%;
backdrop-filter: blur(10px); /* Aumento il blur per l'effetto vetro */
color: var(--color-white);

/* Effetto Light Neumorphism (Inner Shadow per un look più scavato) */
box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2), /* Bordo interno chiaro */
0 4px 6px rgba(0, 0, 0, 0.1); /* Ombra esterna leggera per alzare leggermente */
}

/* 2. Modifica Hover per accentuare l'effetto "rialzo" */
.prestazione-card:hover {
transform: translateY(-12px);
/* Ombre più pronunciate per dare l'idea che la card si stacchi dal fondo */
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35), 
inset 0 0 15px rgba(255, 255, 255, 0.3); /* Bordo interno più luminoso in hover */
background: rgba(255, 255, 255, 0.1); /* Sfondo un po' più opaco in hover */
}

/* 3. Icone con effetto "scavato" e rimozione del text-shadow */
.prestazione-icon {
font-size: 60px;
  background: linear-gradient(135deg, var(--pink), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.5s ease;

}

/* Manteniamo l'animazione di ingrandimento al passaggio del mouse */
.prestazione-card:hover .prestazione-icon {
transform: scale(1.1); /* Leggermente meno invasivo */
}

/* Titoli e testi (mantenuti come prima, solo per completezza) */
.prestazione-name {
font-weight: 700;
color: var(--color-white);
margin-bottom: 12px;
font-size: 1.3rem;
}

.prestazione-desc {
color: rgba(255,255,255,0.85);
font-size: 0.95rem;
line-height: 1.6;
}

/* --- CARD PRESTAZIONI: IMMAGINE SOPRA, TESTO SOTTO --- */
.prestazione-card.clean {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border: none; /* Elimina ogni bordo */
}

/* Immagine in alto */
.prestazione-card.clean .prestazione-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.prestazione-card.clean .prestazione-image img,
.prestazione-card.clean .prestazione-image picture,
.prestazione-card.clean .prestazione-image figure {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Effetto hover immagine */
.prestazione-card.clean:hover .prestazione-image img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* Contenuto sotto immagine */
.prestazione-card.clean .prestazione-content {
  padding: 25px 20px 35px;
  text-align: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.prestazione-card.clean .prestazione-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

/* Icona accanto al titolo */
.prestazione-card.clean .prestazione-icon {
  font-size: 2rem;
  color: var(--pink-light);
  margin: 0;
  transition: transform 0.4s ease;
}

.prestazione-card.clean:hover .prestazione-icon {
  transform: scale(1.15);
}

.prestazione-card.clean .prestazione-name a {
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.prestazione-card.clean .prestazione-name a:hover {
  color: var(--pink); /* o un tuo colore personalizzato, es. #ff66a3 */
  transform: translateY(-2px);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Descrizione */
.prestazione-card.clean .prestazione-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

/* Bottone coerente */
.prestazione-card.clean .btn-pink.btn-mini {
  border-color: var(--pink);
  color: var(--white);
  transition: all 0.3s ease;
}

.prestazione-card.clean .btn-pink.btn-mini:hover {
  background: var(--pink);
  color: var(--white);
}

/* Hover card */
.prestazione-card.clean:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(244, 146, 205, 0.25);
}





/* === INPUTS === */
#form-user .form-control {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #000;
  border-radius: 12px;
  padding: 14px 18px;
  transition: all 0.3s ease;
}



/* Label floating */
#form-user .form-floating label {
  color: #000;
  transition: all 0.3s ease;
}



/* === TEXTAREA === */
#form-user textarea.form-control {
  min-height: 130px;
  resize: vertical;
  border-radius: 16px;
}

/* === CHECKBOX PRIVACY === */
#form-user .form-check {
  margin-top: 20px;
}

#form-user .form-check-input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--pink-light);
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#form-user .form-check-input:checked {
  background-color: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 10px rgba(244, 146, 205, 0.6);
}

#form-user .form-check-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

#form-user .form-check-label a {
  color: var(--pink-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

#form-user .form-check-label a:hover {
  color: var(--white);
  text-decoration: underline;
}


.site-footer {
        
            color: var(--white);
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
           
            background-repeat: repeat-x;
            background-position: bottom;
            padding-bottom: 300px;
        }
        
        .footer-wave {
            position: absolute;
            top: -10px;
            left: 0;
            width: 100%;
            line-height: 0;
        }
        
        .footer-wave svg {
            display: block;
            width: 100%;
            height: 40px;
        }
        
        .footer-wave path {
            fill: var(--white);
        }
        
        .footer-content {
            position: relative;
            z-index: 2;
        }

          .footer-brand-container {
            display: flex;
            align-items: flex-end; /* Allinea gli elementi in basso */
            margin-bottom: 25px;
        }
        
        .footer-logo {
            max-height: 120px;
            margin-bottom: 20px;
        }
        
        .footer-title {
  
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--white);
        }
        
        .footer-title span {
            color: var(--pink-light);
        }
        
        .footer-description {
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .footer-section h5 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--pink-light);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: var(--pink-light);
            transform: translateX(5px);
        }

        .footer-links a.active {
            color: var(--pink-light);
            transform: translateX(5px);
        }
        
        .footer-links a i {
            margin-right: 8px;
            font-size: 0.9rem;
            color: var(--pink-light);
        }
        
        .footer-contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact-info i {
            color: var(--pink-light);
            margin-right: 10px;
            margin-top: 3px;
            font-size: 1.1rem;
        }
        
        .footer-contact-info span {
            color: rgba(255,255,255,0.8);
            line-height: 1.5;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            color: var(--white);
            border-radius: 50%;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-link:hover {
            background: var(--pink-light);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(244, 146, 205, 0.4);
            color: #fff;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 50px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.7);
            margin: 0;
            font-size: 0.9rem;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-bottom-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: var(--pink-light);
        }

.footer-flowers {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px; /* l’altezza del padding-bottom del footer */
  overflow: hidden;
  pointer-events: none;
}

.flower {
  position: absolute;
  bottom: -100px;
  opacity: 0;
  transform-origin: center center;
  animation: riseUp 8s linear forwards;
}

@keyframes riseUp {
  0% {
    transform: translateY(0) scale(0.5) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(-150px) scale(1) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-350px) scale(1.2) rotate(360deg);
    opacity: 0;
  }
}


