/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-Italic-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from Quattroruote Professional design */
    --primary-red: #E30613;
    --red-gradient-start: #E30613;
    --red-gradient-end: #8B0000;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --text-dark: #2c2c2c;
    --text-gray: #666666;
}

body {
    font-family: "Raleway", sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
a:hover {
    color: var(--primary-red);
}
.bk_page{
    background-color: #f5f5f5;
}
/* ===================================
   TYPOGRAPHY RULES
   =================================== */
/* Titoli e sottotitoli con font ANTON */
h1, h2, h3, h4, h5, h6 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Paragrafi con font RALEWAY */
p {
    font-family: "Raleway", sans-serif;
}
.section-title {   
    text-align: left;
    letter-spacing: 1px;
    color: var(--text-dark);
    position: relative;
    padding-left: 24px;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 35px;
    background-color: var(--primary-red);
}
/* ===================================
   TRANSPARENT HEADER (STICKY ON SCROLL)
   =================================== */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

.header-transparent.scrolled {
  background: linear-gradient(
    rgba(0, 0, 0, 0.95) 0%,   /* noir presque opaque en haut */
    rgba(0, 0, 0, 0.75) 50%,  /* milieu bien foncÃ© */
    rgba(0, 0, 0, 0) 100%     /* transparent en bas */
  );
  backdrop-filter: blur(6px);
  box-shadow: none;
  border: none;
  padding: 15px 0;
  transition: background 0.3s ease, padding 0.3s ease;
  z-index: 9999;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.logo img {
    height: 50px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 100px;
    /*align-items: center;*/
    margin-bottom: 0;
    padding-left: 0;
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    padding: 8px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;    
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-red);
    opacity: 0.8;
}

.nav-list a .nav-text {
    display: block;
}

.nav-list a i {
    font-size: 10px;
    display: block;
}
.nav-list .menu-item-has-children > a::after {
    content: '\f078'; /* Codice Unicode per fa-chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.5em;
    transition: transform 0.3s ease;
    line-height: 100%;
}

/* Rotazione della freccia al hover (opzionale) */
.nav-list .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--white);
    min-width: 330px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    padding: 0;
}

.sub-menu a {
    color: var(--text-dark);
    padding: 12px 20px;
    display: block;
    transition: all 0.3s ease;
}

.sub-menu a:hover {
    background-color: var(--primary-red);
    color: var(--white);
    opacity: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.language-selector i {
    font-size: 20px;
}

.language-selector select {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
}

.language-selector select option {
    background-color: var(--dark-gray);
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
}
.custom-logo-link img {
    height: 50px;
}
/* ===================================
   FOOTER (NEW DESIGN)
   =================================== */
.footer {
    background-color: #252525;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--white);
}

.footer-col p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--medium-gray);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-red);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: var(--medium-gray);
    font-size: 14px;
}
/* ===================================
   HOME SECTION 
   =================================== */
.home-section {   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(227, 6, 19, 0.6) 50%, rgba(139, 0, 0, 0.7) 100%);
    z-index: 1;
    /* Animation de brillance */
    animation: brightnessGlow 4s ease-in-out infinite;
}

/* Animation de brillance - Ã‰clat lumineux */
@keyframes brightnessGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

/* Effet de brillance diagonale (haut-gauche vers bas-droite) */
.hero-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 2;
    pointer-events: none;
    animation: shineDiagonal 6s ease-in-out infinite;
}

/* Animation de brillance diagonale */
@keyframes shineDiagonal {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    40% {
        transform: translate(50%, 50%);
        opacity: 0;
    }
    100% {
        transform: translate(50%, 50%);
        opacity: 0;
    }
}

.home-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(245, 245, 245, 0.3) 30%,
        rgba(245, 245, 245, 0.7) 70%,
        #f5f5f5 100%);
    z-index: 2;
    pointer-events: none;
}
/* ===================================
   HOME CONTENT (LEFT ALIGNED)
   =================================== */
.home-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 40px 0 60px 0;
}

.home-content-left {
    max-width: 60%;
    color: var(--white);
    text-align: left;
}

.logo-large {
    margin-bottom: 60px;
    margin-top: 40px;
	border-bottom: 1px solid #FFF;
    padding: 20px 30px 30px 30px;
	width: auto;
    display: inline-block;
}

.logo-large img {
    width: auto;
    max-height: 98px;
    max-width: 100%;
    object-fit: contain;
}

.home-content-left h1 {
    font-size: 38px;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.home-content-left h2 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.home-content-left p {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 35px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--white);
    color: #000000;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 25px;
    border-top-right-radius: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    width: 310px;
}
.btn-around {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--white);
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 25px;
    border-top-right-radius: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    width: 310px;
}

.btn-discover:hover, .btn-around:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.btn-discover span, .btn-around span {
    flex-grow: 1;
    text-align: left;
}

.btn-discover i, .btn-around i {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-discover:hover i, .btn-around:hover i {
    transform: translateX(4px);
}
/* ===================================
   SECTION 3: ABOUT US WITH BACKGROUND
   =================================== */
.about-section-bg {    
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 4%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-content-right {
    max-width: 500px;
    color: #000;
    position: relative;
    z-index: 2;
}

.about-content-right h2 {
    font-size: 35px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.about-content-right p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
	text-align: justify;
	font-weight: 500;
}

/* Old about section styles - keep for compatibility */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-more {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: var(--red-gradient-end);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(227, 6, 19, 0.3);
}

/* NEW FOOTER STYLES */
.footer-top {
    background-color: #252525;
    padding: 30px 0;
}

.footer-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer-brands a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-brands a:hover {
    color: var(--primary-red);
}

.footer-middle {
    padding: 30px 0;
    background-color: #252525;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
}

/* swiper */
.swiper-wrapper {
    height: auto;
}
.swiper-container {
  position: relative;
  width: 100%;
  padding: 0 40px;
}

.swiper-slide {
  height: auto;
}
.productsSwiper{
    padding-bottom: 15px;
    padding-top: 15px;
}
.product-card {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
    min-height: 400px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.product-card.white-bg {
  background-color: white;
  color: black;
    background-size: cover;
  background-position: center;
}

.product-card.image-bg {
  background-color: #333;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-card.image-bg.white-bg {
  color: black;
}


.product-card.image-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  /*background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,     
    rgba(0, 0, 0, 0.8) 80%,  
    rgba(0, 0, 0, 0) 100%    
  );*/
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);  
  z-index: 1;
}
.product-card.image-bg.white-bg::before {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,     
    rgba(255, 255, 255, 0.8) 80%,  
    rgba(255, 255, 255, 0) 100%    
  );
}        

.product-card-content {
  padding: 25px 25px 40px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}

.product-card-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.product-card-button {
  background-color: white;
  color: black;
  border: none;
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.product-card.image-bg .product-card-button {
  background-color: rgba(255, 255, 255, 0.9);
}

.product-card-button:hover {
  background-color: #f0f0f0;
}

.product-card-logo {
  margin-bottom: 20px;
     margin-top: 20px;
    text-align: center;
}
.product-card-logo img{   
    max-width: 100%;
    background-color: rgba(255,255,255,0.80);
    border-radius: 16px;
    padding: 10px;
}
.product-bottom{
  margin-top: auto;   
}    
.product-img{
    
} 
.product-img img{
   width: 100%;
    border-radius: 16px 16px 16px 0;  
}
.product-card-title {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 100%;  
}

.product-card-text {
  font-size: 0.9rem;
}
 .product-card-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
width: 30px;
height: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
    margin-top:-10px;
     z-index: 9999;
}       
.card-image-prod .product-card-content{
    padding: 0;
}
.card-image-prod .product-bottom{
    padding: 16px;
}
.experiences-swiper {
  width: 100%;
  /*overflow: hidden;*/
  padding: 30px 50px 30px 50px;
}

.experiences-swiper .swiper-slide {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.experiences-card {
  display: flex;
  background-color: white;
  border-radius: 30px 0 30px 30px ;
  overflow: hidden;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.experiences-card:hover {
  transform: translateY(-5px);
}

.experiences-card-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experiences-card-title {
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 15px;
  color: #333;
}

.experiences-card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.experiences-card-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 300px;
}

.experiences-card-arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
width: 30px;
height: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
    margin-top:-10px;
}

.experiences-card-arrow:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}
.arrow svg {
    width: 20px;
    height: 20px;
    fill: #96030C;
}
.experiences-card-arrow svg, .product-card-arrow svg {
    width: 15px;
    height: 15px;
    fill: #96030C;
}
.experiences-card-arrow a, .product-card-arrow a {
    line-height: inherit;
    font-family: arial;
} 
.experiences-swiper .swiper-slide-prev,
  .experiences-swiper .swiper-slide-next {
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: blur(5px);
  }
img.custom_img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
ul.custom_list {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.custom_list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
}
ul.custom_list li:last-child {
    border-bottom: none;
}
ul.custom_list li i
 {
    color: var(--primary-red);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-card-main {
    background: linear-gradient(135deg, var(--primary-red), var(--red-gradient-end));
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
    box-shadow: 0 15px 50px rgba(227, 6, 19, 0.3);
}

.contact-icon-large {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
}

.contact-card-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-email-link {
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    padding: 15px 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.contact-email-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.contact-description {
    font-size: 18px;
    margin-top: 20px;
    opacity: 0.95;
}

.social-contact-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-contact-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.social-contact-link i {
    font-size: 36px;
    color: var(--primary-red);
}

.social-contact-link span {
    font-size: 16px;
    font-weight: 600;
}
@media (min-width: 992px) {
  

  .experiences-swiper .swiper-slide-active {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }

  .experiences-swiper .swiper-slide-prev {
    transform: translateX(-5%) scale(0.85);
  }

  .experiences-swiper .swiper-slide-next {
    transform: translateX(5%) scale(0.85);
  }
}
@media (max-width: 991.98px) {
    
}
/* Frecce personalizzate Experiences */
.experiences-swiper-button-next, .experiences-swiper-button-prev, .marchi-swiper-button-next, .marchi-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);*/
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.experiences-swiper-button-next:hover, .experiences-swiper-button-prev:hover {
  transform: translateY(-50%) scale(1.1);
 /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);*/
}
.slide-container {
            background: white;
            /* Angoli: sx alto, sx basso, dx basso arrotondati - dx alto no */
            border-radius: 30px 0 30px 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);            
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: transform 0.3s ease;
    padding: 20px;
    height: 100%;
        }
.slide-container img{
            width: 80px;
            height: auto;
        }        


        .slide-container:hover {
            transform: translateY(-2px);
        }
        
        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.swiper_marchi .swiper-slide {
  width: auto !important; /* permette a Swiper di calcolare la larghezza corretta */
}

/* Container dello slideshow: spazio per le frecce FUORI */
.swiper_marchi {
  position: relative;
  padding: 20px 60px !important; /* 60px di padding sinistro e destro per le frecce */
  /*overflow: visible;  importante per non tagliare le frecce */
}

/* Frecce posizionate ai bordi del container Swiper */
.marchi-swiper-button-prev,
.marchi-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 100%;
  background-color: rgba(255, 255, 255, 1.0) !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.marchi-swiper-button-prev {
  left: 0;
}
.marchi-swiper-button-next {
  right: 0;
}
.marchi-swiper-button-prev:hover,
.marchi-swiper-button-next:hover {
  background-color: white;
  transform: translateY(-50%) scale(1.1);
}

.experiences-swiper-button-next, .marchi-swiper-button-next  {
  right: 0;
}

.experiences-swiper-button-prev, .marchi-swiper-button-prev {
  left: 0;
}

.experiences-swiper-button-next svg, .experiences-swiper-button-prev svg, .marchi-swiper-button-next svg, .marchi-swiper-button-prev svg {
  width: 20px;
  height: 20px;
  fill: #333;
}
/* Frecce Swiper */
.swiper-button-next, .swiper-button-prev, .gallery-swiper-button-next, .gallery-swiper-button-prev, .product2-swiper-button-next, .product2-swiper-button-prev, .recensioni-swiper-button-next, .recensioni-swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);*/
  transition: background-color 0.3s, transform 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover, .gallery-swiper-button-next:hover, .gallery-swiper-button-prev:hover, .product2-swiper-button-next:hover, .product2-swiper-button-prev:hover, .recensioni-swiper-button-next:hover, .recensioni-swiper-button-prev:hover {
  /*background-color: #f0f0f0;*/
  transform: scale(1.1);
}

.swiper-button-next, .gallery-swiper-button-next, .product2-swiper-button-next, .recensioni-swiper-button-next {
  right: 0;
}

.swiper-button-prev, .gallery-swiper-button-prev, .product2-swiper-button-prev, .recensioni-swiper-button-prev {
  left: 0;
}

.swiper-button-next svg, .swiper-button-prev svg, .gallery-swiper-button-next svg, .gallery-swiper-button-prev svg, .product2-swiper-button-next svg, .product2-swiper-button-prev svg, .recensioni-swiper-button-next svg, .recensioni-swiper-button-prev svg {
  width: 20px;
  height: 20px;
  fill: black;
}

/* Nascondi l'icona predefinita di Swiper */
.swiper-button-next::after, .swiper-button-prev::after, .gallery-swiper-button-next::after, .gallery-swiper-button-prev::after, .product2-swiper-button-next::after, .product2-swiper-button-prev::after, .recensioni-swiper-button-next::after, .recensioni-swiper-button-prev::after {
  display: none;
}

/* STILI GENERICI */
.section-header{
    margin-bottom: 50px;
}
.generic-section{
    padding: 40px 0px 40px 0px;
    background-color: var(--light-gray);
    position: relative;
    overflow: visible;
}
.experiences-card-arrow svg, .product-card-arrow svg{
    width: 15px;
    height: 15px;
    fill: #96030C;
}
/* Bordure incurvÃ©e */
.curved-border {
  position: relative;
  width: 100%;
  height: 100px; /* ajuste la hauteur de la courbe */
  background: #fff; /* couleur du fond de la section suivante */
  margin-top: -60px; /* pour chevaucher lÃ©gÃ¨rement la section prÃ©cÃ©dente */
  clip-path: ellipse(55% 100% at 50% 100%);
}
.section-experiences{
    padding-bottom: 80px;
}
.section-partner{
    background-color:  var(--white); 
}
.section-white{
    background-color:  var(--white); 
}
.wpcf7 {
    max-width:none;
}
/* Stile per input, select e textarea */
.cf7-custom-form .form-control,
.cf7-custom-form .form-select {
  border: 1px solid #e0e0e0 !important;
  border-radius: 16px 0 16px 16px !important;
  padding: 0.75rem 1rem !important;
  transition: border-color 0.3s ease !important;
  font-size: 0.85rem !important;  
}

.cf7-custom-form .form-control:focus,
.cf7-custom-form .form-select:focus {
  border-color: #666;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
  outline: none;
}

/* Stile per le label */
.cf7-custom-form .form-label {  
  margin-bottom: 0.5rem;
  display: block;
  color: #333;
}

/* Uniformare i checkbox */
.cf7-custom-form .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cf7-custom-form .wpcf7-list-item-label {
  margin: 0;
  cursor: pointer;
  color: #333;
}

/* Rimuovere il bordo attorno al checkbox wrapper */
.cf7-custom-form .wpcf7-acceptance,
.cf7-custom-form .wpcf7-checkbox {
  border: none !important;
  padding: 0 !important;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* Stile checkbox personalizzato */
.cf7-custom-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Label per acceptance checkbox */
.cf7-custom-form .checkbox-label {
  cursor: pointer;
  color: #333;
  margin: 0;
  display: inline;
}

/* Rimuovere margini extra */
.cf7-custom-form .wpcf7-form-control-wrap {
  display: block;
}
/* Stile per checkbox acceptance non valido */
.cf7-custom-form .wpcf7-acceptance input[type="checkbox"].wpcf7-not-valid {
  outline: 2px solid #dc3545;
  outline-offset: 2px;
}

/* Messaggio di errore per acceptance */
.cf7-custom-form .wpcf7-acceptance .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.5rem;
  margin-left: 28px; /* Allineato con la label */
}
.btn-outline-primary, .wpcf7 input[type=submit]{
    --bs-btn-color: #96030C;
    --bs-btn-border-color: #96030C;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #96030C;
    --bs-btn-hover-border-color: #96030C;
    --bs-btn-focus-shadow-rgb: 85, 51, 255;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #96030C;
    --bs-btn-active-border-color: #96030C;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #96030C;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #96030C;
    --bs-gradient: none;
    display: inline-flex;
    gap: 10px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 25px;
    border-top-right-radius: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    width: 310px;
    text-align: left;
    background-color: #96030C;
    color: #fff;
    padding-right: 45px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23ffffff' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 12px;
}
.btn-outline-primary, .wpcf7 input[type=submit]:disabled{    
    color: #96030C;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%2396030C' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
}
.bk-page {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 0;
}
.bk-page .bk-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
.page-logo {
    text-align: center;
    margin-bottom: 30px;
    margin-top: -95px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-logo img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    display: block;
    margin: 0 auto;
}
.equity-image img  {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
/* Per rendere i primi 5 campi sulla stessa riga in desktop */
@media (min-width: 992px) {
  .wpcf7 .row.g-3 .col-md {
    flex: 1 1 0;
    min-width: 150px;
  }
}

/* Pulsante centrato con margine superiore coerente */
.wpcf7 .wpcf7-submit {
  display: inline-block;
  font-size: 1rem;
  border-radius: 4px;
}

@media (max-width: 991.98px) {
  .contact-form .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  .contact-form .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
    .nav-list{
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav ul li {
        width: 100%;
    }

    .nav ul li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff !important;
    }

    .sub-menu {
        position: static;
        background-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        margin-top: 20px;
        padding: 10px 0;
        display: none;
        border-radius: 8px;
    }
    .navlist a {
        padding-right: 20px;
    }
    .sub-menu li a {
        color: #ffffff !important;
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .sub-menu li:last-child a {
        border-bottom: none;
    }

    .sub-menu li a:hover {
        background-color: rgba(227, 6, 19, 0.2);
        padding-left: 25px !important;
    }

    .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-item-has-children > a i.fa-chevron-down {
        transition: transform 0.3s ease;
        color: #ffffff;
    }

    .menu-item-has-children.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .sub-menu.active {
        display: block !important;
        visibility: visible;
        opacity: 1;
    }

    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
        color: #ffffff;
        font-size: 28px;
        padding: 5px;
    }

    .mobile-menu-toggle i {
        color: #ffffff;
    }

    .header-right {
        gap: 15px;
    }

    .social-icons {
        display: none;
    }

    .header-transparent.scrolled {
        padding: 10px 0;
    }
    .nav-list .menu-item-has-children > a::after {
       margin-left: 15px;
        display: inline-block;
    }
    .nav-list .menu-item-has-children.active > a::after {
        transform:rotate(180deg);
    }
    .nav-list .menu-item-has-children.active:hover > a::after {
        transform:none;
    }
    .home-section {
        min-height: auto;
    }

    .home-content-wrapper {
        padding: 100px 0;
    }
	.home-section::after {
    bottom: -9px !important;
	}
    .logo-large {
        margin-bottom: 40px;
        margin-top: 30px;
        padding: 10px 10px 10px 10px ;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-brands {
        gap: 15px;
    }

    .footer-brands a {
        font-size: 12px;
    }
    .experiences-swiper {
    padding: 0 40px;
  }
  .experiences-card {
    flex-direction: column;
    /*border-radius: 30px 30px 0 30px;*/
  }

  .experiences-card-content {
    padding: 30px;
  }

  .experiences-card-image {
    min-height: 200px;
  }

  .experiences-card-arrow {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
    
}