@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #FFB001;
    --secondary-color: #F36D26;

    --background-light: #EFEFE3;
    --background-dark: #000000;

    --glass-bg: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.12);

    --radius-lg: 18px;

    --elev-1: 0 6px 18px rgba(0,0,0,.35);
    --elev-2: 0 10px 30px rgba(0,0,0,.5);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    font-size:62.5%;
    scroll-behavior:smooth;
}

body{
    font-family:'Oswald',sans-serif;

    background:
        url('../IMG/storia_sfondo.png'),
        radial-gradient(1200px 600px at 10% 0%, rgba(255,176,1,.08), transparent 60%),
        radial-gradient(1200px 600px at 90% 100%, rgba(243,109,38,.08), transparent 60%),
        #000;

    color:white;
}

/* HERO */

.hero{
    padding:40px 7% 40px;

    display:flex;
    justify-content:center;
}

.hero-box{
    width:100%;
    max-width:1600px;

    padding:4rem 2rem;

    text-align:center;

    background:var(--glass-bg);

    border:1px solid var(--glass-border);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-radius:var(--radius-lg);

    box-shadow:var(--elev-2);
}

.people-title{
    font-family: 'Oswald', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.white-text{
    color:#EFEFE3;
}

.gradient-text{

    background: linear-gradient(
        180deg,
        #ffcb58 0%,
        #FFB001 35%,
        #F39A00 65%,
        #F36D26 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    text-shadow:
        0 0 20px rgba(255,176,1,.25),
        0 0 40px rgba(243,109,38,.15);
}

.people-title{
    text-shadow:
        3px 3px 8px rgba(0,0,0,.8);
}

@media (max-width:768px){

    .people-title{
        font-size:4.8rem;
    }

}




.hero p{
    margin-top:2rem;
    font-size:1.8rem;
    color:#cfcfcf;
}


/* TEAM */

.team{
    max-width:1400px;
    margin:auto;

    padding:0 7% 120px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:3rem;
}


/* CARD */

.member{
    background:var(--glass-bg);

    border:1px solid var(--glass-border);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-radius:var(--radius-lg);

    overflow:hidden;

    box-shadow:var(--elev-1);

    transition:.3s;
}

.member:hover{
    transform:translateY(-8px);

    border-color:rgba(255,176,1,.4);

    box-shadow:
        0 15px 40px rgba(255,176,1,.15);
}


/* IMAGE */

.member-image{
    overflow:hidden;
}

.member-image img{
    width:100%;
    height:500px;

    object-fit:cover;

    transition:.5s;
}

.member:hover img{
    transform:scale(1.03);
}


/* TEXT */

.member-content{
    padding:3rem;
}

.member-content h2{
    font-size:3rem;
    color:white;
}

.member-content span{
    display:block;

    margin-top:.8rem;

    color:var(--primary-color);

    font-size:1.5rem;

    text-transform:uppercase;

    letter-spacing:1px;
}

.member-content p{
    margin-top:2rem;

    color:#d0d0d0;

    font-size:1.6rem;

    line-height:1.9;
}


/* MOBILE */

@media(max-width:768px){

    .hero{
        padding-top:130px;
    }

    .hero h1{
        font-size:4rem;
    }

    .hero p{
        font-size:1.6rem;
    }

    .member-image img{
        height:350px;
    }

}

.timeline-section{
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    min-height: 80vh;

    padding: 80px 60px;

    position: relative;

    margin: 6rem auto 0;

    max-width: 1600px;      /* ← importante */
    width: calc(100% - 14%);

    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--elev-2);
}

.timeline-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(800px 400px at 20% 20%, rgba(255, 176, 1, 0.05), transparent 60%),
		radial-gradient(800px 400px at 80% 80%, rgba(243, 109, 38, 0.05), transparent 60%);
	pointer-events: none;
}
.timeline-items{
	max-width: 1000px;
	margin:auto;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
.timeline-items::before{
	content: '';
	position: absolute;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
	left: calc(50% - 1.5px);
	border-radius: 2px;
	box-shadow: 0 0 20px rgba(255, 176, 1, 0.3);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}


.timeline-item{
	margin-bottom: 50px;
	width: 100%;
	position: relative;
}
.timeline-item:last-child{
	margin-bottom: 0;
}
.timeline-item:nth-child(odd){
    padding-right: calc(50% + 40px);
	text-align: left;
}
.timeline-item:nth-child(even){
    padding-left: calc(50% + 40px);
	text-align: left;
}
.timeline-dot{
	height: 20px;
	width: 20px;
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	border-radius: 50%;
	position: absolute;
	left: calc(50% - 10px);
	top: 0;
	box-shadow: 0 0 20px rgba(255, 176, 1, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}


.timeline-date{
	font-size: 1.8rem;
	color: var(--primary-color);
	margin: 8px 0 20px;
	font-weight: 600;
	text-transform: uppercase;
}
.timeline-content{
    background-color: var(--glass-bg);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 3rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--glass-border);
	box-shadow: var(--elev-1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.timeline-content:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 176, 1, 0.2);
	border-color: rgba(255, 176, 1, 0.4);
}
.timeline-content h3{
    font-size: 2.2rem;
	color: var(--primary-color);
	margin: 0 0 15px 0;
	text-transform: uppercase;
	font-weight: 600;
}
.timeline-content p{
    color: white;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2.2;
}

:root {
    --primary-color: #FFB001;
    --secondary-color: #F36D26;
    --background-light: #EFEFE3;
    --background-dark: #000000;
    --text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.12);
    --radius-md: 12px;
    --radius-lg: 18px;
    --elev-1: 0 6px 18px rgba(0,0,0,0.35);
    --elev-2: 0 10px 30px rgba(0,0,0,0.5);
}

.heading-2{
    font-size: 4.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center !important;
    letter-spacing: 2px;
    font-weight: 600;
}

.timeline-title{
    margin-bottom: 6rem;
}

.services-showcase{
    max-width:1600px;
    width:calc(100% - 14%);
    margin:0 auto 6rem;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:2rem;
}
.service-card {
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--elev-1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 176, 1, 0.2);
    border-color: rgba(255, 176, 1, 0.4);
}

.service-icon {
    height: 6rem;
    width: 6rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 176, 1, 0.2), rgba(243, 109, 38, 0.2));
    border: 2px solid rgba(255, 176, 1, 0.3);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-card h4 {
    font-size: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.6rem;
    color: white;
    line-height: 1.8;
    text-align: center;
}

.values-section {
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    padding: 3rem 2rem;

    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--elev-1);

    position: relative;
    overflow: hidden;
    text-align: center;

    max-width: 1600px;
    width: calc(100% - 14%);
    margin: 6rem auto 0;
}

.values-section h4{
    font-size: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 176, 1, 0.1), rgba(243, 109, 38, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(255, 176, 1, 0.2);
    transition: all 0.3s ease;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.value-item span {
    font-size: 1.8rem;      /* uguale a .service-card h4 */
    color: white;
    font-weight: 400;
    text-transform: uppercase;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
    padding: 0 2rem;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), var(--primary-color), transparent);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(255, 176, 1, 0.3);
}

.divider-text {
    padding: 0 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2rem;
    white-space: nowrap;
}

nav{
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 100px;
  position: relative;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 176, 1, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid transparent;
  background-clip: padding-box;
}

nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 176, 1, 0.1) 25%, 
    rgba(243, 109, 38, 0.1) 75%, 
    transparent 100%);
  pointer-events: none;
  z-index: -1;
}

nav::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-color) 25%, 
    var(--secondary-color) 75%, 
    transparent 100%);
  z-index: 1;
}
nav .logo {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
}

nav .logo:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-2px);
}

nav .logo img{
    height: 7.5rem;
    filter: drop-shadow(0 8px 16px rgba(255, 176, 1, 0.3));
    transition: all 0.3s ease;
}

nav .logo:hover img {
    filter: drop-shadow(0 12px 24px rgba(255, 176, 1, 0.5));
    transform: scale(1.05);
}
 

nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}
nav .nav-items li{
  list-style: none;
  padding: 0 35px;
}
nav .nav-items li a{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  transform: perspective(1000px) rotateX(0deg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

nav .nav-items li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 176, 1, 0.1), 
    rgba(243, 109, 38, 0.1));
  border-radius: 8px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

nav .nav-items li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: all 0.3s ease;
  border-radius: 1px;
}
nav .nav-items li a:hover{
  color: var(--primary-color);
  transform: perspective(1000px) rotateX(-5deg) translateY(-2px);
  text-shadow: 0 4px 8px rgba(255, 176, 1, 0.3);
}

nav .nav-items li a:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

nav .nav-items li a:hover::after {
  width: 100%;
  box-shadow: 0 0 10px rgba(255, 176, 1, 0.5);
}



nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 2;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  transform: perspective(1000px) rotateX(0deg);
}

/* Nascondi completamente gli elementi mobile su desktop */
@media (min-width: 1141px) {
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Timeline Desktop - Regole specifiche per desktop */
@media (min-width: 1025px) {
  .timeline-section {
    padding: 80px 15px !important;
    margin-top: 6rem !important;
  }
  
  .timeline-items {
    max-width: 1000px !important;
    margin: auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  .timeline-items::before {
    content: '' !important;
    position: absolute !important;
    width: 3px !important;
    height: 100% !important;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color)) !important;
    left: calc(50% - 1.5px) !important;
    border-radius: 2px !important;
    box-shadow: 0 0 20px rgba(255, 176, 1, 0.3) !important;
    backdrop-filter: blur(2px) !important;
    -webkit-backdrop-filter: blur(2px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .timeline-item {
    margin-bottom: 50px !important;
    width: 100% !important;
    position: relative !important;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0 !important;
  }
  
  .timeline-item:nth-child(odd) {
    padding-right: calc(50% + 40px) !important;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: calc(50% + 40px) !important;
    text-align: left !important;
  }
  
  .timeline-dot {
    height: 20px !important;
    width: 20px !important;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    border-radius: 50% !important;
    position: absolute !important;
    left: calc(50% - 10px) !important;
    top: 0 !important;
    box-shadow: 0 0 20px rgba(255, 176, 1, 0.5) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  
  .timeline-date {
    font-size: 1.8rem !important;
    color: var(--primary-color) !important;
    margin: 8px 0 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
  }
  
  .timeline-content {
    background-color: var(--glass-bg) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    padding: 3rem !important;
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--elev-1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    margin-top: 1rem !important;
  }
  
  .timeline-content:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(255, 176, 1, 0.2) !important;
    border-color: rgba(255, 176, 1, 0.4) !important;
  }
  
  .timeline-content h3 {
    font-size: 2.2rem !important;
    color: var(--primary-color) !important;
    margin: 0 0 15px 0 !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
  }
  
  .timeline-content p {
    color: white !important;
    font-size: 1.6rem !important;
    font-weight: 400 !important;
    line-height: 2.2 !important;
  }
}


nav .menu-icon:hover,
nav .cancel-icon:hover,
nav .search-icon:hover {
  color: var(--primary-color);
  transform: perspective(1000px) rotateX(-5deg) translateY(-2px);
  background: rgba(255, 176, 1, 0.1);
  box-shadow: 0 4px 12px rgba(255, 176, 1, 0.3);
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
  display: none;
}


.about{
    padding: 2rem 7%;
    flex: 1;
}

/* Main content wrapper */
.main-content {
    margin-top: 8rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

/* WHY CHOOSE US - Full width section */
.why-choose-us-full {
    width: 100%;
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.why-choose-us-content {
    width: 100%;
}

.main-message {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
    position: relative;
}

/* Brand Highlight Section */
.brand-highlight {
    margin-bottom: 2rem;
    position: relative;
}

.brand-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 176, 1, 0.3);
    position: relative;
    overflow: hidden;
    animation: brandGlow 3s ease-in-out infinite alternate;
}

.brand-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes brandGlow {
    0% {
        box-shadow: 0 10px 30px rgba(255, 176, 1, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 15px 40px rgba(255, 176, 1, 0.5);
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.brand-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2rem;
}

.brand-subtext {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.5rem;
    letter-spacing: 0.1rem;
}

.brand-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.brand-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.brand-description {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.8rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.highlight-text {
    font-size: 1.6rem;
    color: var(--primary-color);
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

.highlight-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    left: -20px;
    top: -10px;
    opacity: 0.7;
}

.highlight-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    right: -20px;
    bottom: -10px;
    opacity: 0.7;
}

/* Brand Stats */
.brand-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 176, 1, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 176, 1, 0.2);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--elev-1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 176, 1, 0.2);
    border-color: rgba(255, 176, 1, 0.4);
}

.service-icon {
    height: 6rem;
    width: 6rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 176, 1, 0.2), rgba(243, 109, 38, 0.2));
    border: 2px solid rgba(255, 176, 1, 0.3);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-card h4 {
    font-size: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.6rem;
    color: white;
    line-height: 1.8;
    text-align: center;
}

.values-section {
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--elev-1);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 6rem;
}

.values-section h4 {
    font-size: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 176, 1, 0.1), rgba(243, 109, 38, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(255, 176, 1, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 176, 1, 0.2), rgba(243, 109, 38, 0.2));
    border-color: rgba(255, 176, 1, 0.4);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.value-item span {
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

/* Left column - WHY CHOOSE US */
.left-column {
    position: relative;
}

.left-column .details {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.left-column .details .box {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.8));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    text-align: left;
    border-radius: 18px;
    border: 1px solid rgba(255, 176, 1, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.left-column .details .box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 176, 1, 0.2);
    border-color: rgba(255, 176, 1, 0.4);
}

.left-column .details .box h3 {
    padding-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

.left-column .details .box p {
    padding: 1rem 0;
    font-size: 1.5rem;
    color: white;
    line-height: 2.2;
    text-align: left;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
    padding: 0 2rem;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), var(--primary-color), transparent);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(255, 176, 1, 0.3);
}

.divider-text {
    padding: 0 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2rem;
    white-space: nowrap;
}

/* Right column - I NOSTRI OBIETTIVI */
.right-column {
    position: relative;
}

.right-column .heading-2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
}

/* Main objective box */
.main-objective-box {
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--elev-1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-objective-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 176, 1, 0.2);
    border-color: rgba(255, 176, 1, 0.5);
}

.main-objective-box i {
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 176, 1, 0.2), rgba(243, 109, 38, 0.2));
    margin-bottom: 1.5rem;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.main-objective-box h3 {
    font-size: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.main-objective-box p {
    font-size: 1.4rem;
    color: white;
    line-height: 1.8;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-box {
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--elev-1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 176, 1, 0.2);
    border-color: rgba(255, 176, 1, 0.4);
}

.service-box i {
    height: 3.5rem;
    width: 3.5rem;
    line-height: 3.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 176, 1, 0.1), rgba(243, 109, 38, 0.1));
    border: 2px solid rgba(255, 176, 1, 0.3);
    margin-bottom: 1rem;
    display: inline-block;
}

.service-box h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.service-box p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.6;
    text-align: left;
}

/* Strengths section */
.strengths-section {
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--elev-1);
    position: relative;
    overflow: hidden;
}

.strengths-section h4 {
    font-size: 1.6rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.strengths-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 176, 1, 0.1);
}

.strength-item:last-child {
    border-bottom: none;
}

.strength-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.strength-item span {
    color: white;
    font-size: 1.3rem;
    line-height: 1.4;
}
 

.timeline-section{
	background-color: var(--glass-bg);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	min-height: 80vh;
	padding: 80px 15px;
	position: relative;
	margin-top: 6rem;
	width: 100%;
	clear: both;
	border-radius: var(--radius-lg);
	border: 1px solid var(--glass-border);
	box-shadow: var(--elev-2);
}
.timeline-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(800px 400px at 20% 20%, rgba(255, 176, 1, 0.05), transparent 60%),
		radial-gradient(800px 400px at 80% 80%, rgba(243, 109, 38, 0.05), transparent 60%);
	pointer-events: none;
}
.timeline-items{
	max-width: 1000px;
	margin:auto;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
.timeline-items::before{
	content: '';
	position: absolute;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
	left: calc(50% - 1.5px);
	border-radius: 2px;
	box-shadow: 0 0 20px rgba(255, 176, 1, 0.3);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}


.timeline-item{
	margin-bottom: 50px;
	width: 100%;
	position: relative;
}
.timeline-item:last-child{
	margin-bottom: 0;
}
.timeline-item:nth-child(odd){
    padding-right: calc(50% + 40px);
	text-align: left;
}
.timeline-item:nth-child(even){
    padding-left: calc(50% + 40px);
	text-align: left;
}
.timeline-dot{
	height: 20px;
	width: 20px;
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	border-radius: 50%;
	position: absolute;
	left: calc(50% - 10px);
	top: 0;
	box-shadow: 0 0 20px rgba(255, 176, 1, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}


.timeline-date{
	font-size: 1.8rem;
	color: var(--primary-color);
	margin: 8px 0 20px;
	font-weight: 600;
	text-transform: uppercase;
}
.timeline-content{
    background-color: var(--glass-bg);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 3rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--glass-border);
	box-shadow: var(--elev-1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.timeline-content:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 176, 1, 0.2);
	border-color: rgba(255, 176, 1, 0.4);
}
.timeline-content h3{
    font-size: 2.2rem;
	color: var(--primary-color);
	margin: 0 0 15px 0;
	text-transform: uppercase;
	font-weight: 600;
}
.timeline-content p{
    color: white;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2.2;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 2em 1em;
  text-align: center;
}
.column {
  width: 100%;
  padding: 0.5em 0;
}
h1 {
  width: 100%;
  text-align: center;
  font-size: 3.5em;
  color: #1f003b;
}
.staff .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(29rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
  gap: 1.5rem;
}

.staff .box-container .box {
  height: 40rem;
  overflow: hidden;
  position: relative;
}

.staff .box-container .box:hover .content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.staff .box-container .box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.staff .box-container .box .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  padding: 2rem;
  -webkit-transform: translateY(6.5rem);
          transform: translateY(6.5rem);
}

.staff .box-container .box .content span {
  font-size: 1.5rem;
  color: #e4b357;
}

.staff .box-container .box .content h3 {
  font-size: 2rem;
  color: #fff;
  padding-top: .5rem;
}

.staff .box-container .box .content .share {
  padding-top: 2rem;
  margin-top: 1.5rem;
  border-top: 0.1rem solid var(--primary-color);
}

.staff .box-container .box .content .share a {
  font-size: 2rem;
  color: #fff;
  margin-right: 1.5rem;
}

.staff .box-container .box .content .share a:hover {
  color: #e4b357;
}

.credit {
  font-size: 1.1rem;
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
  color: #fff;
  background: black;
  line-height: 1.5;
  border-top: 2px solid var(--primary-color);
  font-weight: normal;
}

.credit span {
  color: var(--primary-color);
}

.credit a{
  color: var(--primary-color);
}


/* media queries  */
@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 1140px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
  }
  }