@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
	--verde-foresta: #529C02;
	--verde-scuro: #254601;
	--verde-chiaro: #F8FFF0;
	--wiky-green: #529C02;
	--wiky-dark-green: #254601;
	--wiky-light-green: #F8FFF0;
}

/* SVG Icon Styles */
.icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.icon-sm {
	width: 1rem;
	height: 1rem;
}

.icon-md {
	width: 1.5rem;
	height: 1.5rem;
}

.icon-lg {
	width: 2rem;
	height: 2rem;
}

.icon-xl {
	width: 3rem;
	height: 3rem;
}

.icon-white {
	filter: brightness(0) invert(1);
}

.icon-dark {
	filter: brightness(0);
}

.icon-green {
	filter: invert(54%) sepia(73%) saturate(500%) hue-rotate(44deg) brightness(91%) contrast(94%);
}

.text-scuro {
	color: var(--verde-scuro);
}

.text-foresta {
	color: var(--verde-foresta);
}

.text-chiaro {
	color: var(--verde-chiaro);
}

.text-filter:hover {
	filter: brightness(0) invert(1);
}


html {
	font-size: 14px;
	scroll-behavior: smooth;
	height: 100%;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Nunito', sans-serif;
	overflow-x: hidden;
	background: var(--verde-foresta);
	min-height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

	body::before {
		content: '';
		position: absolute;
		top: -100px;
		left: -100px;
		width: 300px;
		height: 300px;
		background-image: url('/images/logo_w.svg');
		background-repeat: no-repeat;
		background-size: contain;
		opacity: 0.15;
		transform: rotate(-25deg);
		z-index: -1;
		pointer-events: none;
		will-change: transform;
	}

	body::after {
		content: '';
		position: absolute;
		bottom: -120px;
		right: -120px;
		width: 350px;
		height: 350px;
		background-image: url('/images/logo_w.svg');
		background-repeat: no-repeat;
		background-size: contain;
		opacity: 0.15;
		transform: rotate(45deg);
		z-index: 0;
		pointer-events: none;
		will-change: transform;
	}

/* Hero Section */
.hero-section {
	background: transparent;
	min-height: 70vh;
	position: relative;
	padding: 120px 20px 150px;
	overflow: visible;
	flex-shrink: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.servizio-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

	.servizio-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	}

.servizio-icon {
	color: white;
	opacity: 0.9;
}

.servizio-card h4 {
	color: white;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.servizio-card small {
	color: rgba(255, 255, 255, 0.7);
}

.servizio-features li {
	color: white;
	margin-bottom: 0.5rem;
}

.vantaggi-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

	.vantaggi-section .container {
		position: relative;
		z-index: 1;
	}

.vantaggio-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.vantaggio-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	}

.vantaggio-icon {
	color: white;
	opacity: 0.9;
	margin-bottom: 1rem;
}

.vantaggio-card h5 {
	color: white;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.vantaggio-card p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.faq-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

	.faq-section .container {
		position: relative;
		z-index: 1;
	}

/* Responsive adjustments for Come Funziona page */
@media (max-width: 768px) {
	.come-funziona-hero-section {
		padding: 100px 20px 60px;
		min-height: 40vh;
	}

	.processo-section,
	.servizi-section,
	.vantaggi-section,
	.faq-section {
		padding: 60px 0;
	}

	.hero-icon-container {
		flex-direction: column;
		gap: 1rem;
		margin-top: 2rem;
		padding: 1.5rem;
	}

		.hero-icon-container .bi-plus {
			transform: rotate(90deg);
		}

	.step-badge {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.app-stores {
		flex-direction: column;
		align-items: center;
	}

	.store-link {
		width: 100%;
		max-width: 200px;
		justify-content: center;
	}
}

.hero-content h1 {
	font-weight: 300;
	letter-spacing: 2px;
}

.hero-content .lead {
	font-size: 1.1rem;
}

/* Action Cards */
.card-action {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 25px;
	padding: 0;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 250px;
	position: relative;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

	.card-action:hover {
		transform: translateY(-10px);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	}

.card-action-image {
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23333" width="400" height="300"/></svg>');
	background-size: cover;
	background-position: center;
	filter: brightness(0.5);
}

.card-action-title {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 2.5rem;
	font-weight: 400;
	margin: 0;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
	width: 100%;
	text-align: center;
}

/* Chi Siamo Section */
.chi-siamo-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 100px 0 100px !important;
	flex-shrink: 0;
}

.chi-siamo-background {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-image: url('/images/logo_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.1;
	z-index: 0;
	pointer-events: none;
}

.chi-siamo-section h2 {
	color: white;
	font-size: 3rem;
	margin-bottom: 2rem;
}

.chi-siamo-section h3 {
	color: white;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.chi-siamo-section p {
	color: white;
	line-height: 1.6;
}

.chi-siamo-section .text-dark {
	color: white !important;
}

.chi-siamo-section .container {
	position: relative;
	z-index: 1;
}

.cooperativa-highlight,
.vision-highlight,
.mission-highlight {
	font-weight: bold;
	color: white;
}

.socio-highlight {
	background: rgba(255, 255, 255, 0.2);
	padding: 2px 8px;
	border-radius: 4px;
	font-weight: 500;
}

/* Partner Section */
.partner-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 100px 0 150px !important;
	flex-shrink: 0;
}

	.partner-section h2 {
		font-size: 2.5rem;
	}

	.partner-section .container {
		position: relative;
		z-index: 1;
	}

.partner-logos {
	flex-wrap: wrap;
	color: white;
	opacity: 0.9;
}

	.partner-logos i {
		background: rgba(255, 255, 255, 0.15);
		padding: 15px;
		border-radius: 12px;
		margin: 5px;
	}

.city-image-container {
	position: relative;
	height: 100%;
	min-height: 400px;
}

.city-image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 400px;
	background: url('/images/city-image.jpg');
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer-custom {
	background: var(--verde-scuro);
	color: white;
	position: relative;
	overflow: visible;
	padding: 60px 0 40px;
	min-height: 250px;
	flex-shrink: 0;
	margin-top: auto;
}

	.footer-custom .container {
		position: relative;
		z-index: 1;
	}

	.footer-custom a {
		color: white;
		text-decoration: none;
		transition: opacity 0.3s ease;
	}

		.footer-custom a:hover {
			opacity: 0.7;
		}

.social-icons a {
	display: inline-block;
	transition: transform 0.3s ease;
}

	.social-icons a:hover {
		transform: translateY(-3px);
	}

/* Responsive */
@media (max-width: 768px) {
	.hero-section {
		padding: 100px 20px 120px;
		min-height: 60vh;
	}

	.card-action {
		height: 200px;
	}

	.card-action-title {
		font-size: 2rem;
	}

	.chi-siamo-section {
		padding: 80px 0 80px !important;
	}

		.chi-siamo-section h2 {
			font-size: 2rem;
		}

	.partner-section {
		padding: 80px 0 120px !important;
	}

	.footer-custom {
		padding: 80px 0 40px;
	}

	.city-image-container {
		min-height: 300px;
		margin-top: 2rem;
	}

	.city-image {
		min-height: 300px;
		border-radius: 15px;
	}
}

/* Navbar & Menu Styles */
.hamburger-menu {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	transition: background 0.3s ease;
	cursor: pointer;
	flex-shrink: 0;
}

	.hamburger-menu:hover {
		background: rgba(255, 255, 255, 0.2);
	}

/* Navbar horizontal wrapper - Always visible and scrollable */
.navbar-links-wrapper {
	flex: 1;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
	display: flex;
	justify-content: center;
}

	.navbar-links-wrapper::-webkit-scrollbar {
		height: 4px;
	}

	.navbar-links-wrapper::-webkit-scrollbar-track {
		background: transparent;
	}

	.navbar-links-wrapper::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.3);
		border-radius: 4px;
	}

		.navbar-links-wrapper::-webkit-scrollbar-thumb:hover {
			background: rgba(255, 255, 255, 0.5);
		}

.navbar-nav-horizontal {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

	.navbar-nav-horizontal .nav-item {
		flex-shrink: 0;
	}

	.navbar-nav-horizontal .nav-link {
		white-space: nowrap;
		padding: 0.5rem 1rem;
		font-weight: 500;
		position: relative;
		transition: all 0.3s ease;
		display: block;
	}

		.navbar-nav-horizontal .nav-link::after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
			width: 0;
			height: 2px;
			background: white;
			transition: width 0.3s ease;
		}

		.navbar-nav-horizontal .nav-link:hover::after {
			width: 80%;
		}

		.navbar-nav-horizontal .nav-link:hover {
			transform: translateY(-2px);
		}

/* Navbar container */
.navbar {
	padding: 0.75rem 0 !important;
}

	.navbar .container-fluid {
		gap: 0;
		position: relative;
	}

.menu-offcanvas {
	background: #F8FFF0;
	max-width: 400px;
	border-radius: 0 20px 20px 0;
}

	.menu-offcanvas .offcanvas-header {
		padding: 1.5rem 1.5rem 0.5rem;
	}

	.menu-offcanvas .btn-close {
		font-size: 1.5rem;
		opacity: 0.8;
		background-color: transparent;
		border: none;
		filter: none;
		width: 2rem;
		height: 2rem;
	}

		.menu-offcanvas .btn-close:hover {
			opacity: 1;
		}

		.menu-offcanvas .btn-close::before {
			font-size: 2.5rem;
			color: var(--verde-scuro);
			font-weight: 300;
			line-height: 1;
		}

.menu-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	width: 100%;
	max-width: 350px;
}

.menu-item {
	margin-bottom: 1rem;
}

.menu-link {
	display: flex;
	align-items: center;
	padding: 1rem 1.5rem;
	text-decoration: none;
	color: var(--verde-scuro);
	transition: background 0.3s ease, transform 0.2s ease;
	border-radius: 12px;
	margin: 0 1rem;
}

	.menu-link:hover {
		background: rgba(82, 156, 2, 0.1);
		transform: translateX(5px);
		color: var(--verde-scuro);
	}

.menu-icon {
	font-size: 2rem;
	margin-right: 1.5rem;
	color: var(--verde-scuro);
	width: 50px;
	text-align: center;
}

.menu-text {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--verde-scuro);
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.navbar-nav-horizontal .nav-link {
		font-size: 0.9rem;
		padding: 0.4rem 0.9rem;
	}
}

@media (max-width: 768px) {
	.navbar-links-wrapper {
		justify-content: flex-start;
	}
}

@media (max-width: 576px) {
	.navbar-nav-horizontal .nav-link {
		font-size: 0.75rem;
		padding: 0.3rem 0.6rem;
	}

	.hamburger-menu {
		padding: 0.4rem !important;
	}

	.hamburger-menu i {
		font-size: 1.5rem !important;
	}

	.navbar-links-wrapper {
		justify-content: flex-start;
	}
}

/* Chi Siamo Page Styles */
.chi-siamo-hero-section {
	background: transparent;
	min-height: 50vh;
	padding: 120px 20px 80px;
	position: relative;
	overflow: visible;
}

	.chi-siamo-hero-section .container {
		position: relative;
		z-index: 1;
	}

.storia-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

	.storia-section .container {
		position: relative;
		z-index: 1;
	}

.highlight-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-mission-container {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.vision-box,
.mission-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	flex: 1;
	color: white;
}

	.vision-box h3,
	.mission-box h3 {
		color: white;
		font-weight: 600;
	}

.valori-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

	.valori-section .container {
		position: relative;
		z-index: 1;
	}

.valore-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.valore-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	}

.valore-icon {
	color: white;
	opacity: 0.9;
}

.valore-card h4 {
	color: white;
	font-weight: 600;
}

.team-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.team-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.team-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	}

.team-avatar {
	color: white;
	opacity: 0.8;
}

.team-card h5 {
	color: white;
	font-weight: 600;
}

.cta-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

	.cta-section .container {
		position: relative;
		z-index: 1;
	}

.btn-light {
	background: white;
	color: var(--verde-scuro);
	border: none;
	font-weight: 600;
	padding: 0.75rem 2rem;
	transition: all 0.3s ease;
}

	.btn-light:hover {
		background: var(--verde-chiaro);
		color: var(--verde-scuro);
		transform: translateY(-2px);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	}

.btn-outline-light {
	border: 2px solid white;
	color: white;
	font-weight: 600;
	padding: 0.75rem 2rem;
	transition: all 0.3s ease;
}

	.btn-outline-light:hover {
		background: white;
		color: var(--verde-scuro);
		transform: translateY(-2px);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	}

/* Responsive adjustments for Chi Siamo page */
@media (max-width: 768px) {
	.chi-siamo-hero-section {
		padding: 100px 20px 60px;
		min-height: 40vh;
	}

	.storia-section,
	.valori-section,
	.team-section,
	.cta-section {
		padding: 60px 0;
	}

	.vision-mission-container {
		margin-top: 2rem;
	}

	.btn-lg {
		padding: 0.6rem 1.5rem;
		font-size: 1rem;
	}
}

/* Come Funziona Page Styles */
.come-funziona-hero-section {
	background: transparent;
	min-height: 50vh;
	padding: 120px 20px 80px;
	position: relative;
	overflow: visible;
}

	.come-funziona-hero-section .container {
		position: relative;
		z-index: 1;
	}

.hero-icon-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.processo-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

	.processo-section .container {
		position: relative;
		z-index: 1;
	}

.step-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

	.step-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	}

.step-number {
	margin-bottom: 1rem;
}

.step-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: var(--verde-foresta);
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
	border-radius: 50%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-icon {
	color: white;
	opacity: 0.9;
	margin-bottom: 1rem;
}

.step-card h4 {
	color: white;
	font-weight: 600;
	margin-bottom: 1rem;
}

.step-details {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.app-stores {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.store-link {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

	.store-link:hover {
		background: rgba(255, 255, 255, 0.2);
		color: white;
		transform: translateY(-2px);
	}

.servizi-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

	.servizi-section .container {
		position: relative;
		z-index: 1;
	}

.servizio-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.servizio-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	}

.servizio-header {
	margin-bottom: 1rem;
}

.servizio-icon {
	color: white;
	opacity: 0.9;
}

.servizio-card h4 {
	color: white;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.servizio-card small {
	color: rgba(255, 255, 255, 0.7);
}

.servizio-features {
	margin-top: 1rem;
}

	.servizio-features li {
		color: white;
		margin-bottom: 0.5rem;
	}

.vantaggi-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

	.vantaggi-section .container {
		position: relative;
		z-index: 1;
	}

.vantaggio-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.vantaggio-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	}

.vantaggio-icon {
	color: white;
	opacity: 0.9;
	margin-bottom: 1rem;
}

.vantaggio-card h5 {
	color: white;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.vantaggio-card p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.faq-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

	.faq-section .container {
		position: relative;
		z-index: 1;
	}

.accordion-item {
	background: rgba(37, 70, 1, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin-bottom: 1rem;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.accordion-button {
	background: transparent;
	color: white;
	font-weight: 600;
	border: none;
	box-shadow: none;
}

	.accordion-button:not(.collapsed) {
		background: transparent;
		color: white;
		box-shadow: none;
	}

	.accordion-button:focus {
		box-shadow: none;
		border-color: rgba(255, 255, 255, 0.3);
	}

.accordion-body {
	color: rgba(255, 255, 255, 0.8);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button::after {
	filter: brightness(0) invert(1);
}

/* Responsive adjustments for Come Funziona page */
@media (max-width: 768px) {
	.come-funziona-hero-section {
		padding: 100px 20px 60px;
		min-height: 40vh;
	}

	.processo-section,
	.servizi-section,
	.vantaggi-section,
	.faq-section {
		padding: 60px 0;
	}

	.hero-icon-container {
		flex-direction: column;
		gap: 1rem;
		margin-top: 2rem;
		padding: 1.5rem;
	}

		.hero-icon-container .bi-plus {
			transform: rotate(90deg);
		}

	.step-badge {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.app-stores {
		flex-direction: column;
		align-items: center;
	}

	.store-link {
		width: 100%;
		max-width: 200px;
		justify-content: center;
	}
}

/* Diventa Partner Page Styles */
.diventa-partner-hero-section {
	background: transparent;
	min-height: 50vh;
	padding: 120px 20px 80px;
	position: relative;
	overflow: visible;
}

	.diventa-partner-hero-section .container {
		position: relative;
		z-index: 1;
	}

.perche-partner-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.partner-benefit-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.partner-benefit-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	}

.benefit-icon {
	color: white;
	opacity: 0.9;
}

.tipologie-partnership-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.partnership-type-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	height: 100%;
}

.partnership-header {
	color: white;
}

.partnership-type-card ul {
	padding-left: 1.5rem;
}

.partnership-type-card li {
	margin-bottom: 0.5rem;
}

.processo-partnership-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.process-step-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	text-align: center;
}

.partner-cta-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

/* Lavora con Noi Page Styles */
.lavora-con-noi-hero-section {
	background: transparent;
	min-height: 50vh;
	padding: 120px 20px 80px;
	position: relative;
	overflow: visible;
}

	.lavora-con-noi-hero-section .container {
		position: relative;
		z-index: 1;
	}

.team-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.team-values {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
}

.team-placeholder {
	background: rgba(255, 255, 255, 0.1) !important;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
}

.posizioni-aperte-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.job-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	height: 100%;
}

.job-header {
	color: white;
}

.job-requirements ul {
	padding-left: 1.2rem;
	font-size: 0.9rem;
}

.job-requirements li {
	margin-bottom: 0.3rem;
}

.benefits-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.benefit-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.benefit-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	}

.candidatura-spontanea-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.spontaneous-cta {
	text-align: center;
}

/* Contatti Page Styles */
.contatti-hero-section {
	background: transparent;
	min-height: 50vh;
	padding: 120px 20px 80px;
	position: relative;
	overflow: visible;
}

	.contatti-hero-section .container {
		position: relative;
		z-index: 1;
	}

.info-contatti-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.contact-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.contact-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	}

.contact-icon {
	color: white;
	opacity: 0.9;
}

.form-contatto-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.form-container {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
}

.contact-form .form-control,
.contact-form .form-select {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
}

	.contact-form .form-control::placeholder {
		color: rgba(255, 255, 255, 0.7);
	}

	.contact-form .form-control:focus,
	.contact-form .form-select:focus {
		background: rgba(255, 255, 255, 0.15);
		border-color: rgba(255, 255, 255, 0.5);
		box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
		color: white;
	}

.faq-contatti-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.orari-disponibilita-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.schedule-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	height: 100%;
}

.schedule-item {
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

	.schedule-item:last-child {
		border-bottom: none;
	}

.social-section {
	background: transparent;
	position: relative;
	overflow: visible;
	padding: 80px 0;
}

.social-links a {
	margin: 0.5rem;
	transition: transform 0.3s ease;
}

	.social-links a:hover {
		transform: translateY(-3px);
	}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {

	.diventa-partner-hero-section,
	.lavora-con-noi-hero-section,
	.contatti-hero-section {
		padding: 100px 20px 60px;
		min-height: 40vh;
	}

	.perche-partner-section,
	.tipologie-partnership-section,
	.processo-partnership-section,
	.partner-cta-section,
	.team-section,
	.posizioni-aperte-section,
	.benefits-section,
	.candidatura-spontanea-section,
	.info-contatti-section,
	.form-contatto-section,
	.faq-contatti-section,
	.orari-disponibilita-section,
	.social-section {
		padding: 60px 0;
	}

	.hero-icon-container {
		margin-top: 2rem;
		padding: 1.5rem;
	}

	.partner-benefit-card,
	.partnership-type-card,
	.process-step-card,
	.job-card,
	.benefit-card,
	.contact-card,
	.schedule-card {
		margin-bottom: 1.5rem;
	}

	.social-links {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

		.social-links a {
			margin: 0.25rem 0;
			width: 100%;
			max-width: 250px;
		}
}
