/*
Theme Name: Connesi
Theme URI: https://connesi.it
Author: Connesi Team
Author URI: https://connesi.it
Description: Template WordPress professionale per Connesi - In ogni punto. In ogni linea.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: connesi
Tags: business, corporate, telecommunications, responsive
*/

:root {
    --primary-color: #2BB673;
    --secondary-color: #25387B;
    --dark-blue: #001F3F;
}

body {
    font-family: 'NexaBook', sans-serif;
    padding-top: 0;
    color: #414141;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

.assistenza-card.blue .assistenza-email a{
    color:#fff !important;
}

#wpadminbar a {
  color: #fff !important;
}

h1,h2,h3,h4,h5{
    font-family: 'NexaHeavy', sans-serif;
}

@font-face {
    font-family: 'NexaBold';
    src: url('assets/fonts/NexaTextBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'NexaHeavy';
    src: url('assets/fonts/NexaTextHeavy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NexaBook';
    src: url('assets/fonts/NexaTextBook.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.container.standard b,strong{
    font-family: 'NexaBold';
}

.menu-item.current-menu-item a{
    color: var(--primary-color);
}


/* Italy Animation */
.italy-animation-container {
    width: 80%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    overflow: hidden; 
}

.italy-animation-container svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Animazione zoom - PARTE DISATTIVATA di default */
.italy-animation-container.animate svg {
    animation: zoomIn 4s ease-in-out forwards;
}

/* Animazione pallini - PARTE DISATTIVATA di default */
.italy-animation-container.animate .cls-16,
.italy-animation-container.animate .cls-19,
.italy-animation-container.animate .cls-21,
.italy-animation-container.animate .cls-22,
.italy-animation-container.animate .cls-25,
.italy-animation-container.animate .cls-46,
.italy-animation-container.animate .cls-48,
.italy-animation-container.animate .cls-47 {
    animation: growCircles 4s ease-in-out forwards;
}

.italy-animation-container.animate .cls-10 {
    animation: growCirclesBig 4s ease-in-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(2.8) translate(0, 0);
    }
}

@keyframes growCircles {
    0% {
        r: 2;
    }
    100% {
        r: 4;
    }
}

@keyframes growCirclesBig {
    0% {
        r: 2;
    }
    100% {
        r: 8;
    }
}



/* Header */


.navbar {
    padding: 2.5rem 0;
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}


.navbar.scrolled .navbar-container {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-container {
    background: white;
    border-radius: 50px;
    padding: 0.3rem 0.5rem 0.3rem 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-weight: bold;
    color: var(--secondary-color) !important;
    margin: 0;
    padding: 0;
}

.navbar-nav {
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 2rem;
    font-family: 'NexaBold', sans-serif;
}

.nav-link {
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 550;
    padding: 0.5rem 0 !important;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-assistenza {
    background: var(--primary-color);
    color: white !important;
    border-radius: 30px;
    padding: 0.7rem 2.5rem;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-assistenza:hover {
    background: #00C080;
    color: #fff !important;
}

.login a {
    color: var(--primary-color) !important;
}
    
/* Hero Section - Slider */
/* Hero Section con Slider e Curva */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-section_p {
    position: relative;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 0;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
    display: flex;
    align-items: center;  /* Centra verticalmente */
    justify-content: center; /* Centra orizzontalmente */
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Mantieni il gradiente overlay */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.2) 60%);
    z-index: 1;
}

.hero-slide.no-gradient::before {
    display: none;
}

.hero-slide.active {
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

/* Hero Content - Fix z-index */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-family: 'NexaHeavy', sans-serif;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-simple{
    height: 60vh;
    position: relative;
    transition: all 0.3s ease;
}

.hero-simple.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.hero-simple .hero-slide{
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* Curva SVG alla fine dello slider */
.curve-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.curve-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Controlli Slider */
.slider-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    font-size: 1.5rem;
    border: none;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Choice Card - Aggiornata */
.choice-card {
    background: white;
    border-radius: 30px;
    padding: 1rem 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; 
}

.choice-card-gov{
    border-radius: 10px;
    background: var(--secondary-color);
    padding: 1rem 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; 
}

.choice-card.small{
    width: 600px;
}

.choice-title {
    text-align: center;
    margin-bottom: 3rem;
}

.choice-title-gov{
    text-align: center;
    color: #fff;
}

.choice-title p{
    font-size: 0.85rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin: 1rem;
}

.choice-title h2{
    color: var(--secondary-color);
}

.choice-item {
    text-align: center;
}

.choice-item img{
    width: 70px;
}

.choice-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.choice-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    margin: 0;
}



/* Icone personalizzate per ogni servizio */
.choice-icon.wifi::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary-color);
    border-right: none;
    border-bottom: none;
    border-radius: 50% 0 0 0;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.choice-icon.phone::before,
.choice-icon.phone::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.choice-icon.phone::before {
    left: 20px;
}

.choice-icon.phone::after {
    right: 20px;
}

.choice-icon.network::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.choice-icon.cloud::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 28px;
}

.choice-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
}

/* Slider controls posizionati meglio con la curva */
.slider-controls {
    bottom: 80px;
}

/* Model Section - Nuova versione con Tab */
.model-section {
    padding: 5rem 0;
    background: #fff;
}

.short {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.model-container{
    max-width:800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0 auto;
}

/* Contenitore Tab */
.model-tabs {
    position: relative;
    background: #F9F9F9;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* Singola Tab */
.model-tab {
    display: flex;
    margin: 10px 0 10px 0;
    background: #ffffff;
    align-items: flex-start;
    padding: 1.5rem 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    gap: 1rem;
}

.model-tab .tab-icon img{
    width: 50px;
}

.model-tab:hover {
    background: #ffffff;
}

.model-tab.active {
    border:1px solid #00d98e;
}

.model-tab.active::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #F9F9F9;
    z-index: 10;
}


/* Icona Tab */
.tab-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all 0.3s ease;
}

.model-tab.active .tab-icon {
    color: var(--primary-color);
}

/* Contenuto testo Tab */
.tab-content-text {
    flex: 1;
}

.tab-content-text h5 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.model-tab.active .tab-content-text h5 {
    color: var(--primary-color);
}

.tab-content-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Contenitore Immagini */
.model-image-container {
    position: relative;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.model-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.model-image.active {
    opacity: 1;
}

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

/* Target Section */
.target-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background-image: url('assets/img/target.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 140vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-card {
    position: relative;
    border-radius: 30px;
    padding: 2rem;
    color: white;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 350px; /* Altezza minima */
}


.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: url('assets/img/card-decoration.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.3;
    pointer-events: none;
}


.target-card h2 {
    margin-bottom: 1rem;
    position: relative;
    font-family: 'NexaBold';
    z-index: 1;
}

.target-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.btn-discover {
    background: white;
    color: var(--secondary-color);
    border-radius: 25px;
    width: 100%;
    padding: 0.5rem 2rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'NexaBold', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    margin-top: auto;
    z-index: 1;
}

.btn-discover:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.faq-section .container {
    position: relative;
    z-index: 100;
    max-width: 1200px;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -5.8rem;
    left: 0;
    width: 100%;
    height: 300px;
    background-image: url('assets/img/faq.svg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 0;
}

.faq-intro {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.faq-intro h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h5 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0;
    flex: 1;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h5 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-answer h2{
    color: #25387B;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-section h5{
    font-weight: 600;
    color: #414141;
}

/* Contact Section */

.contact-container.green{
    background: var(--primary-color);
}

.contact-section {
    padding: 2rem 0;
    background: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    z-index: 3;
    position: relative;
}

.contact-section.ombra{
    box-shadow: 0 -15px 20px rgba(0, 0, 0, 0.04);
}

.contact-section .container{
    background: #F4F4F4;
    padding: 40px;
    border-radius: 30px;
}

.contact-section h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.contact-section p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: transparent;
    border-radius: 0;
    padding: 0;
}
.wpcf7-spinner{
    display: flow;
}
.wpcf7 .text-end{
    height: 50px;
}

/* Fix CF7 checkbox dentro solutions-checkboxes */
.solutions-checkboxes .wpcf7-checkbox {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.solutions-checkboxes .wpcf7-checkbox .wpcf7-list-item {
    display: flex;
    align-items: center;
    margin: 0;
}

.solutions-checkboxes .wpcf7-checkbox .wpcf7-list-item-label {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

.solutions-checkboxes .wpcf7-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid white;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    margin-right: 0.75rem;
    appearance: none;
    -webkit-appearance: none;
}

.solutions-checkboxes .wpcf7-checkbox input[type="checkbox"]:checked {
    background-color: white;
    border-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2325387B' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.solutions-checkboxes .wpcf7-checkbox input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    outline: none;
}

.form-control {
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    padding: 0.9rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-send {
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    padding: 0.75rem 3rem;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-send:hover {
    background: #00C080;
}

.certificazioni img{
    width: 150px !important;
}

/* maps section */
.maps-section{
    padding: 5rem 0;
}

.maps-section img{
    width: 100%;
}

.maps-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Footer */
.footer {
    background: white;
    padding: 1rem 0 2rem;
}

.footer-brand {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 2rem;
    margin-bottom: 0;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: 'NexaHeavy', sans-serif;
}

.footer-tagline span {
    color: var(--primary-color);
}

.footer h5 {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-email {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-contacts {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.social-m .social-icons{
    display: none;
}


/* Role Section */

.role-container{
    background: #fff;
}

.role-section {
    padding: 5rem 0;
    background: #25387B;
    background: var(--secondary-color);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    color: white;
}

.role-content {
    padding-right: 2rem;
}

.role-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.role-title span {
    color: var(--primary-color);
}

.role-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.role-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.role-feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.role-feature-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-feature-icon img{
    width: 60px;
}

.role-feature-title {
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0;
    color: var(--primary-color);
}


/* Solutions Section */
.solutions-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.solutions-section .container{ 
    max-width: 1000px;
}

.solution-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.solution-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    position: relative;
}

.solution-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon img {
    width: 60px;
}

.solution-header h4 {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}

.solution-toggle {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.solution-card.active .solution-toggle {
    transform: rotate(180deg);
}

.solution-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
}

.solution-card.active .solution-content {
    max-height: 300px;
    padding: 0 2rem 2rem 2rem;
}

.solution-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}



/* Timeline Section */
.timeline-section-pa {
    padding: 5rem 0;
    background: white;
}


.timeline-pa-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.timeline-pa-title span {
    color: var(--primary-color);
}

.timeline-pa-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 3rem;
}

.timeline-pa {
    position: relative;
    padding: 2rem 0;
}

.timeline-pa::before {
    content: '';
    position: absolute;
    left: 120px; /* Sposta la linea a sinistra invece di 50% */
    top: 40px;
    bottom: 42px;
    width: 15px;
    background: var(--secondary-color);
    transform: none; /* Rimuovi il translateX */
}

.timeline-item-pa {
    position: relative;
    display: grid;
    grid-template-columns: 75px 40px 1fr; /* Prima colonna fissa per gli anni, poi dot, poi contenuto */
    align-items: center;
    margin-bottom: 8rem;
    gap: 2rem;
}

.timeline-item-pa:last-child {
    margin-bottom: 0;
}

.timeline-year-pa {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.timeline-year-pa.left {
    text-align: right;
}

.timeline-year-pa.right {
    text-align: left;
}

.timeline-dot-pa {
    width: 40px;
    height: 40px;
    background: #2BB673;
    border: none;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center; /* Centra nella sua colonna */
}

.timeline-dot-pa::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.timeline-content-pa {
    position: relative;
    min-width: 0; /* Previene l'overflow della griglia */
}

.timeline-content-pa.left {
    text-align: right;
}

.timeline-content-pa.right {
    text-align: left;
}

.timeline-content-pa h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.5;
}

.timeline-title-pa {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'NexaBold', sans-serif;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.2;
}

.timeline-plus-pa {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}


.timeline-plus-pa .plus-icon {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'NexaBold', sans-serif;
    color: var(--primary-color);
    line-height: 1;
}

/* Lux Section */
.lux-section {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.lux-content-wrapper {
    background: linear-gradient(135deg, #2a3d7e 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    min-height: 700px;
    padding: 4rem 0;
    position: relative;
}

.lux-content {
    padding: 3rem 4rem 3rem 6rem;
    color: white;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

/* Curva SVG sul lato destro - Posizionamento Dinamico */
.curve-right {
    position: absolute;
    right: -60px;
    top: 0;
    width: 60px;
    height: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.curve-right svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.lux-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.lux-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.lux-title span {
    color: var(--primary-color);
}

.lux-description {
    margin-bottom: 2.5rem;
}

.lux-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.lux-services {
    margin-top: 2rem;
}

.lux-services h5 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: white;
    margin-bottom: 1.5rem;
}

.lux-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lux-services ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.lux-services ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.lux-image-wrapper {
    position: relative;
    min-height: 700px;
}

.lux-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Events Section */
.events-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.events-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.events-section .subtitle {
    font-size: 1.05rem;
    color: #666;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.event-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.event-content {
    padding: 1rem 2rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.event-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, gap 0.3s ease;
}

.event-link:hover {
    color: var(--primary-color);
    gap: 0.75rem;
}

.event-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.event-link:hover i {
    transform: translateX(3px);
}

.values-section {
    padding: 5rem 0;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

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

.value-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.value-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.4;
}


.dhh-section {
    padding: 0;
    overflow: hidden;
    position: relative;
    background: var(--secondary-color);
}

.dhh-image-wrapper {
    position: relative;
    min-height: 700px;
}

.dhh-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dhh-content-wrapper {
    background: linear-gradient(135deg, #2a3d7e 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    min-height: 700px;
    padding: 4rem 0;
    position: relative;
}

.dhh-content {
    padding: 3rem 6rem 3rem 4rem;
    color: white;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.dhh-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.dhh-title span {
    color: var(--primary-color);
}

.dhh-description {
    margin-bottom: 0;
}

.dhh-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.8rem;
}

.dhh-description p:last-child {
    margin-bottom: 0;
}



/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: white;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 42px;
    width: 15px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.timeline-year.left {
    text-align: right;
}

.timeline-year.right {
    text-align: left;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: #2BB673;
    border: none;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-dot::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.timeline-content {
    position: relative;
}

.timeline-content.left {
    text-align: right;
}

.timeline-content.right {
    text-align: left;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.5;
}

.timeline-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}


/* Rete Section */
.rete-section {
    padding: 5rem 0;
    background: #F0F2F5;
}

.rete-content {
    padding-right: 2rem;
}

.rete-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.rete-title span {
    color: var(--primary-color);
}

.rete-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 3rem;
}

.rete-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rete-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    min-width: 180px;
}

.stat-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--secondary-color);
}

.stat-text strong {
    font-weight: 600;
}

.rete-map {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rete-map img {
    width: 100%;
    height: auto;
    max-width: 600px;
}

/* Services Chi Section */
.services-chi-section {
    padding: 0;
    position: relative;
}

.services-chi-background {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    min-height: 900px;
    display: flex;
    align-items: flex-end;
}

.services-chi-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.services-chi-section .container {
    position: relative;
    z-index: 2;
}

.service-chi-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-chi-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-chi-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-chi-description {
    font-size: 1rem;
    line-height: 1.7;
    color: white;
    margin: 0;
}

.submenu-container {
    position: sticky;
    top: 130px;
    left: 0;
    width: 100%;
    z-index: 100;
    margin-top: -30px;
    transition: all 0.3s ease;
}


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

.submenu-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.submenu-tab {
    flex: 1;
    padding: 1rem 2rem;
    margin: 0 7px 0 7px;
    background: transparent;
    border: none;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none; /* Importante per i link */
    display: inline-block; /* Importante per i link */
    text-align: center;
}


.submenu-tab:hover {
    color: var(--primary-color);
    border:0;
    border:1px solid #fff;
}

.submenu-tab.active {
    background: var(--primary-color);
    color: white !important;
    font-weight: 600;
    border:0;
}


/* Solutions Sol Section */
.solutions-sol-section {
    padding: 0;
    background: white;
    overflow: hidden;
}

.solutions-sol-content {
    padding: 5rem 4rem 5rem 6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solutions-sol-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.solutions-sol-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.solutions-sol-title span {
    color: var(--primary-color);
}

.solutions-sol-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.solutions-sol-text:last-child {
    margin-bottom: 0;
}

.solutions-sol-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 700px;
}

/* Curva SVG sul lato sinistro */
.curve-left {
    position: absolute;
    right: auto;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.curve-left svg {
    position: relative;
    display: block;
    width: 100%;
    height: 96%;
}

.solutions-sol-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Connectivity Details Section */
.connectivity-details-section {
    padding: 5rem 0 0 0;
    background: linear-gradient(180deg, var(--secondary-color) 0%, #2a4a8f 100%);
    color: white;
    position: relative;
    overflow: visible;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: -25px;
}

.connectivity-details-section h4{
    font-family: 'NexaBold';
}


.connectivity-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    line-height: 1;
}

.connectivity-icon {
    width: 150px;
    height: 150px;
    padding-top: 20px;
}

.connectivity-icon img {
    width: 150px;
}

.connectivity-services {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.connectivity-service-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.connectivity-service-item.plus {
    min-height: 70px;
}

.connectivity-service-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.connectivity-service-item ul {
    min-height: 5rem;
    margin: 0;
}

/* Decorazione a pallini */
.connectivity-decoration {
    background: #8FA8D9;
    margin-top: 200px;
}

.connectivity-decoration img{
    width: 100%;
}

/* FAQ Section sotto la decorazione */
.connectivity-faq-section {
    padding: 13rem 0;
    background: #8FA8D9;
}


/* Solutions Form Section */
.solutions-form-section {
    padding: 5rem 0;
}

.solutions-form-container {
    background: var(--primary-color);
    border-radius: 40px;
    padding: 4rem 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.solutions-form-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

.solutions-form-title .white {
    color: white;
}

.solutions-form-title .purple {
    color: var(--secondary-color);
}

.solutions-form-subtitle {
    font-size: 1.05rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-form .form-control {
    border-radius: 30px;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    background: white;
}

.solutions-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    outline: none;
}

.solutions-form textarea.form-control {
    border-radius: 20px;
    resize: none;
}

.solutions-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.solutions-checkboxes .form-check {
    display: flex;
    align-items: center;
}

.solutions-checkboxes .form-check-input {
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    margin-right: 0.75rem;
}

.solutions-checkboxes .form-check-input:checked {
    background-color: white;
    border-color: white;
}

.solutions-checkboxes .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.solutions-checkboxes .form-check-label {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

.btn-submit-form {
    background: var(--secondary-color);
    color: white;
    border-radius: 30px;
    padding: 1rem 4rem;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-submit-form:hover {
    background: #1a2a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* verifica copertura */
.copertura-checkboxes .form-check {
    display: flex;
    align-items: center;
}

.copertura-checkboxes .form-check-input {
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    margin-right: 0.75rem;
}

.copertura-checkboxes .form-check-input:checked {
    background-color: #333;
    border-color: white;
}

.copertura-checkboxes .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.copertura-checkboxes .form-check-label {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

/* Board Members Section */
.board-members-section {
    padding: 5rem 0;
    background: white;
}

.board-member-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    padding: 30px;
}

.board-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.board-member-image {
    width: 100%;
    overflow: hidden;
}

.board-member-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.board-member-info {
    padding: 2rem;
    text-align: center;
}

.board-member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.board-member-role {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Auditors Section */
.auditors-section {
    padding: 5rem 0;
}

.auditor-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.auditor-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.auditor-role {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.auditors-gray{
    background: #F4F4F4;
    padding: 30px;
}

.auditors-gray p,.auditors-gray ul li{
    font-size: 0.8rem;
}

/* Assistenza Header Section */
.assistenza-header-section {
    padding: 5rem 0 3rem 0;
}

.assistenza-card {
    border-radius: 30px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.assistenza-card.white {
    background: white;
}

.assistenza-card.blue {
    background: var(--secondary-color);
}

.assistenza-card-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.assistenza-card.white .assistenza-card-title {
    color: var(--secondary-color);
}

.assistenza-card.blue .assistenza-card-title {
    color: white;
}

.assistenza-info {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.assistenza-card.white .assistenza-info {
    color: var(--secondary-color);
}

.assistenza-card.blue .assistenza-info {
    color: white;
}

.assistenza-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.assistenza-card.blue .assistenza-description {
    color: white;
}

.assistenza-email {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0;
    font-weight: 500;
}

.assistenza-card.white .assistenza-email {
    color: var(--secondary-color);
}

/* Assistenza Type Section */
.assistenza-type-section {
    padding: 0;
    position: relative;
}

.assistenza-type-background {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0 8rem 0;
    min-height: 800px;
}

.assistenza-type-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.assistenza-type-background .container {
    position: relative;
    z-index: 2;
}

.assistenza-type-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 0;
}

.assistenza-packages-container {
    margin-top: -180px;
    padding-bottom: 5rem;
    position: relative;
    z-index: 3;
}

.assistenza-packages-container .col-md-6{
    z-index: 20;
}

.upgrade-modal .modal-content {
    padding: 1.5rem;
}

.upgrade-modal .modal-title {
    font-size: 1.5rem;
}

/* Modal Upgrade Styles */
.upgrade-modal .modal-dialog {
    max-width: 800px;
}

.upgrade-modal .modal-content {
    border-radius: 30px;
    border: none;
    padding: 2rem;
    background: #f8f9fa;
}

.btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.btn-close-custom:hover {
    transform: rotate(90deg);
    background: #1f9d5f;
}

.btn-close-custom i {
    color: white;
    font-size: 1.2rem;
}

.upgrade-modal .modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.modal-package-name {
    text-align: center;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 2rem;
}

.modal-contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-call-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.modal-call-text strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.modal-or-text {
    font-size: 0.95rem;
    color: #666;
    margin: 1rem 0;
}

.modal-form-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.upgrade-form .form-control {
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.upgrade-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(43, 182, 115, 0.25);
}

.upgrade-form .form-control::placeholder {
    color: #999;
}

.btn-submit-upgrade {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit-upgrade:hover {
    background: #1f9d5f;
    transform: translateY(-2px);
}


.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-card.gold {
    background: var(--secondary-color);
}

.package-header {
    padding: 2rem 2rem 1.5rem 2rem;
}

.package-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.package-card.bronze .package-label,
.package-card.silver .package-label {
    color: var(--secondary-color);
}

.package-card.gold .package-label {
    color: white;
}

.package-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-card.bronze .package-name,
.package-card.silver .package-name {
    color: var(--secondary-color);
}

.package-card.gold .package-name {
    color: white;
}

.package-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.package-card.bronze .package-description,
.package-card.silver .package-description {
    color: #666;
}

.package-card.gold .package-description {
    color: white;
}

.package-body {
    padding: 0 2rem 2rem 2rem;
    flex: 1;
}

.package-services-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.package-card.bronze .package-services-title,
.package-card.silver .package-services-title {
    color: var(--secondary-color);
}

.package-card.gold .package-services-title {
    color: white;
}

.package-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-services-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-card.bronze .package-services-list li,
.package-card.silver .package-services-list li {
    color: #333;
}

.package-card.gold .package-services-list li {
    color: white;
}

.package-services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.package-footer {
    padding: 0 2rem 2rem 2rem;
}

.btn-package {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-package.gratuito {
    background: #D0D0D0;
    color: #666;
}

.btn-package.upgrade {
    background: var(--primary-color);
    color: white;
}

.btn-package.upgrade:hover {
    background: #1fa060;
    transform: translateY(-2px);
}


.package-card.custom-support {
    background: #F5F5F5;
    border-radius: 0 0 20px 20px;
    padding: 0;
    box-shadow: none;
    border: none;
    height: auto;
    margin-top: -20px;
}

.custom-support-inner {
    display: flex;
    align-items: center;
    padding: 80px 50px;
    gap: 30px;
}

.custom-support-left {
    flex: 0 0 35%;
}

.custom-support-right {
    flex: 1;
}

.custom-support-action {
    flex: 0 0 auto;
}

.custom-support-question {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #2C3E7D;
}

.custom-support-question .highlight-blue {
    color: #2C3E7D;
}

.custom-support-question .highlight-green {
    color: #2BB673;
}

.custom-support-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #2C3E7D;
    margin-bottom: 8px;
}

.custom-support-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.btn-package.upgrade-custom {
    background: var(--secondary-color);
    color: white;
}

/* Case History Section */
.case-history-section {
    padding: 5rem 0;
}

.case-history-section .container-narrow {
    max-width: 1000px;
    margin: 0 auto;
}


/* ============================================
   INFORMAZIONI CONTRATTUALI PAGE
   ============================================ */

.info-contrattuali-hero {
    padding: 100px 0 150px;
}

.info-contrattuali-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Download Cards */
.download-cards-section {
    padding: 0 0 60px;
}

.download-card {
    background: white;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.download-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.download-card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.download-card-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.download-card-icon a:hover {
    background: var(--primary-color);
    color: white;
}

/* Moduli Button */
.moduli-button-wrapper {
    text-align: center;
    margin: 30px 0;
}

.btn-moduli {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 80px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-moduli:hover {
    background: #1d2d63;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 56, 123, 0.3);
}

/* Content Section */
.info-content-section {
    padding: 60px 0;
}

.info-text-block {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.info-text-block.centered {
    text-align: center;
    margin: 40px 0;
}

.info-text-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.info-text-block a:hover {
    color: var(--secondary-color);
}

/* Area Cliente */
.area-cliente-section {
    margin: 150px 0;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
}

.area-cliente-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.area-cliente-image {
    text-align: center;
}

.area-cliente-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.area-cliente-description {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 15px;
}


/* Contatti Info */
.contatti-info-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contatti-info-box h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contatti-info-box h4 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contatti-list {
    list-style: none;
    padding: 0;
}

.contatti-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.contatti-list li:last-child {
    border-bottom: none;
}

.contatti-form-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contatti-footer-text {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #666;
    text-align: center;
}

/* OK Button Section */
.ok-button-section {
    margin: 50px 0;
    padding: 40px 20px;
}

.ok-checkmark {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ok-checkmark i {
    font-size: 3rem;
    color: white;
    font-weight: bold;
}

.ok-button-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.ok-button-section p {
    color: #666;
    margin-bottom: 25px;
}

.btn-ok {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 60px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ok:hover {
    background: #25a362;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 182, 115, 0.3);
}

.final-note {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #666;
}


.case-history-card {
    overflow: hidden;
}

.case-history-video {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.video-placeholder {
    width: 100%;
    position: relative;
    background: #f0f0f0;
    border-radius: 30px;
}

.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 27px;
}

.case-history-content {
    padding: 0 1rem;
}

.case-history-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.case-history-author {
    
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.case-history-author strong {
    font-weight: 600;
    color: var(--secondary-color);
    font-family: 'NexaHeavy', sans-serif;
}

.case-history-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.case-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.case-tag:hover {
    background: var(--secondary-color);
    color: white;
}

.codice-values-section {
    padding: 5rem 0;
    background: var(--primary-color);
}

.codice-values-section .section-header h2 {
    color: var(--secondary-color);
}

.principi-section {
    padding: 5rem 0;
}

.indirizzi-section {
    padding: 5rem 0;
}

.rapporto-clienti-section {
    padding: 5rem 0;
    background: white;
}


/* ============================================
   TRASPARENZA TARIFFARIA PAGE STYLES
   ============================================ */

/* Text Utilities */
.trasparenza-text-left {
    text-align: left;
}

.trasparenza-small-text {
    font-size: 0.9rem;
}

/* Background Navy */
.trasparenza-bg-navy {
    background: #1e3a7a !important;
    max-width:900px;
}

/* Container stretto per accordion */
.trasparenza-container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 0 50px 0;
}

/* Accordion Base */
.trasparenza-accordion {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-bottom: 1rem;
}

.trasparenza-accordion:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Accordion Header */
.trasparenza-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    position: relative;
}

.trasparenza-accordion-header h4 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}

/* Accordion Toggle Icon */
.trasparenza-accordion-toggle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.trasparenza-accordion.active .trasparenza-accordion-toggle {
    transform: rotate(180deg);
}

.service-style .trasparenza-accordion-toggle i{
    color:#fff;
}

.trasparenza-accordion-toggle i {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Accordion Content */
.trasparenza-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
}

.trasparenza-accordion.active .trasparenza-accordion-content {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
    overflow-y: auto;
}

.trasparenza-accordion-content p {
    color: #666;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.trasparenza-accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trasparenza-accordion-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.95rem;
}

.trasparenza-accordion-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Download Button */
.trasparenza-btn-download {
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}


/* Download Icon Style */
/* Service Offer Icon Style */
.trasparenza-accordion.service-style .trasparenza-accordion-header h4 {
    color: #1e3a7a;
}

.trasparenza-accordion.service-style .trasparenza-accordion-toggle {
    background: var(--primary-color);
}

/* Sezione Servizi Offerti con sfondo verde */
.trasparenza-servizi-section {
    padding: 5rem 0;
    background: var(--primary-color);
}

.trasparenza-servizi-section .section-header h2 {
    color: var(--secondary-color);
}

.trasparenza-servizi-section h3 {
    color: white;
}

/* White text utility */
.trasparenza-text-white {
    color: white;
}


/* ============================================
   LAVORA CON NOI PAGE STYLES
   ============================================ */

/* Posizioni Section */


/* Lista Posizioni */
.posizioni-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Posizione Card */
.posizione-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.posizione-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Posizione Header */
.posizione-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
}

.posizione-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

/* Toggle Button */
.posizione-toggle {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.posizione-card.active .posizione-toggle i {
    transform: rotate(45deg);
}

/* Posizione Content */
.posizione-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
}

.posizione-card.active .posizione-content {
    max-height: 1000px;
    padding: 0 2rem 2rem 2rem;
}

.posizione-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.posizione-details h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.posizione-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.posizione-details ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.posizione-details ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Form Candidatura Container */
.candidatura-form-container {
    background: var(--primary-color);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 150px;
}

.candidatura-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.candidatura-subtitle {
    font-size: 0.85rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

/* Form Styling */
.candidatura-form .form-control {
    border-radius: 25px;
    border: none;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    background: white;
    margin-bottom: 0;
}

.candidatura-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    outline: none;
    border-color: white;
}

.candidatura-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.candidatura-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-candidatura {
    background: var(--secondary-color);
    color: white;
    border-radius: 30px;
    padding: 0.9rem 4rem;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-candidatura:hover {
    background: #1a2a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .candidatura-form-container {
        position: relative;
        top: 0;
        margin-top: 3rem;
    }
    
    .candidatura-title {
        font-size: 1.5rem;
    }
    
    .posizione-header h4 {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .candidatura-form-container {
        padding: 2rem 1.5rem;
    }
    
    .posizione-header {
        padding: 1.25rem 1.5rem;
    }
    
    .posizione-content {
        padding: 0 1.5rem;
    }
    
    .posizione-card.active .posizione-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .btn-candidatura {
        padding: 0.9rem 3rem;
    }
}