* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Nunito', sans-serif;
	background-color: #f8fafc;
	color: #1e293b;
	line-height: 1.7;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.4s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

ul {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	line-height: 1.3;
	color: #1e293b;
}

/* === TYPOGRAPHY === */
.tva-h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
}

.tva-h2 {
	font-size: 2.8rem;
	margin-bottom: 1.2rem;
}

.tva-h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.tva-h4 {
	font-size: 1.5rem;
	margin-bottom: 0.8rem;
}

.tva-text-primary {
	color: #1e293b;
}

.tva-text-secondary {
	color: #475569;
}

.tva-text-accent1 {
	color: #0ea5e9;
}

.tva-text-accent2 {
	color: #fbbf24;
}

.tva-text-accent3 {
	color: #34d399;
}

/* === CONTAINERS === */
.tva-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.tva-container-fluid {
	width: 100%;
	padding: 0 2rem;
}

.tva-section {
	padding: 6rem 0;

	margin-bottom: 2rem;
}

.tva-section-alt {
	padding: 6rem 0;
	background: #f8fafc;
	margin-bottom: 2rem;
}

/* === HEADER (Floating) === */
.tva-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 4rem);
	max-width: 1280px;
	background: #ffffff;
	border-bottom: 1px solid #e2e8f0;
	padding: 1.2rem 2.5rem;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.4s ease;
}

.tva-header.tva-scrolled {
	top: 10px;

	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tva-logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #1e293b;
}

.tva-logo-icon {
	color: #0ea5e9;
	font-size: 2rem;
}

.tva-nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.tva-nav-link {
	font-size: 1rem;
	color: #475569;
	position: relative;
	padding: 0.5rem 0;
	font-weight: 500;
	transition: color 0.4s ease;
}

.tva-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #0ea5e9;
	transition: width 0.4s ease;
}

.tva-nav-link:hover {
	color: #0ea5e9;
}

.tva-nav-link:hover::after {
	width: 100%;
}

.tva-nav-link.tva-active {
	color: #0ea5e9;
}

.tva-nav-link.tva-active::after {
	width: 100%;
}

/* === MOBILE MENU === */
.tva-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 1001;
}

.tva-burger-line {
	width: 28px;
	height: 3px;
	background: #1e293b;
	border-radius: 3px;
	transition: all 0.4s ease;
}

.tva-burger.tva-active .tva-burger-line:nth-child(1) {
	transform: rotate(45deg) translate(4px, 3px);
}

.tva-burger.tva-active .tva-burger-line:nth-child(2) {
	opacity: 0;
}

.tva-burger.tva-active .tva-burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* === HERO SECTION === */
.tva-hero {
	position: relative;
	height: 100vh;
	min-height: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;

	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.1) 0%,
		rgba(52, 211, 153, 0.1) 100%
	);
}

.tva-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	opacity: 0.3;
}

.tva-hero-content {
	text-align: center;
	z-index: 2;
	max-width: 900px;
	padding: 2rem;
	animation: tva-fade-up 1.2s ease;
}

.tva-hero-title {
	font-size: 4rem;
	color: #1e293b;
	margin-bottom: 1.5rem;
	font-family: 'Playfair Display', serif;
}

.tva-hero-subtitle {
	font-size: 1.4rem;
	color: #475569;
	margin-bottom: 2.5rem;
	line-height: 1.8;
}

.tva-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.tva-btn-primary {
	background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
	color: #ffffff;
	box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.tva-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.tva-btn-secondary {
	background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
	color: #1e293b;
	box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.tva-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.tva-btn-outline {
	border: 2px solid #0ea5e9;
	color: #0ea5e9;
	background: transparent;
}

.tva-btn-outline:hover {
	background: #0ea5e9;
	color: #ffffff;
	transform: translateY(-3px);
}

/* === CARDS === */
.tva-grid {
	display: grid;
	gap: 2rem;
}

.tva-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.tva-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.tva-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.tva-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.tva-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #0ea5e9, #34d399);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.tva-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.tva-card:hover::before {
	transform: scaleX(1);
}

.tva-card-vertical {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tva-card-icon {
	font-size: 3rem;
	color: #0ea5e9;
	margin-bottom: 1rem;
}

.tva-card-title {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.tva-card-text {
	color: #475569;
	line-height: 1.8;
}

.tva-card-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 1.5rem;
}

/* === REGION CARDS (Interactive Grid) === */
.tva-region-card {
	position: relative;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s ease;
}

.tva-region-card-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tva-region-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: #ffffff;
	transition: all 0.4s ease;
}

.tva-region-card-title {
	font-size: 1.8rem;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.tva-region-card-desc {
	font-size: 1rem;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease;
}

.tva-region-card:hover .tva-region-card-bg {
	transform: scale(1.1);
}

.tva-region-card:hover .tva-region-card-overlay {
	padding: 2.5rem 2rem;
}

.tva-region-card:hover .tva-region-card-desc {
	opacity: 1;
	transform: translateY(0);
}

/* === ACCORDION === */
.tva-accordion {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.4s ease;
}

.tva-accordion:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tva-accordion-header {
	padding: 1.8rem 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8fafc;
	transition: all 0.4s ease;
}

.tva-accordion-header:hover {
	background: #f1f5f9;
}

.tva-accordion-title {
	font-size: 1.3rem;
	color: #1e293b;
	font-weight: 600;
}

.tva-accordion-icon {
	font-size: 1.5rem;
	color: #0ea5e9;
	transition: transform 0.4s ease;
}

.tva-accordion.tva-active .tva-accordion-icon {
	transform: rotate(180deg);
}

.tva-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease;
	padding: 0 2rem;
}

.tva-accordion.tva-active .tva-accordion-content {
	max-height: 2000px;
	padding: 2rem;
}

.tva-accordion-text {
	color: #475569;
	line-height: 1.8;
	font-size: 1.05rem;
}

/* === TESTIMONIALS SLIDER === */
.tva-slider {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

.tva-slider-track {
	display: flex;
	transition: transform 0.5s ease;
}

.tva-slider-item {
	min-width: 100%;
	padding: 3rem;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
}

.tva-slider-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #0ea5e9;
}

.tva-slider-name {
	font-size: 1.6rem;
	color: #1e293b;
	font-family: 'Playfair Display', serif;
}

.tva-slider-role {
	color: #0ea5e9;
	font-size: 1.1rem;
	margin-top: -1rem;
}

.tva-slider-quote {
	font-size: 1.15rem;
	color: #475569;
	line-height: 1.8;
	font-style: italic;
	max-width: 700px;
}

.tva-slider-controls {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.tva-slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #cbd5e1;
	cursor: pointer;
	transition: all 0.4s ease;
}

.tva-slider-dot.tva-active {
	background: #0ea5e9;
	width: 40px;
	border-radius: 6px;
}

/* === FORM === */
.tva-form-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.tva-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tva-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.tva-form-label {
	font-weight: 600;
	color: #1e293b;
	font-size: 1.05rem;
}

.tva-form-input,
.tva-form-textarea {
	padding: 1rem 1.5rem;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-family: 'Nunito', sans-serif;
	font-size: 1rem;
	transition: all 0.4s ease;
	background: #f8fafc;
}

.tva-form-input:focus,
.tva-form-textarea:focus {
	outline: none;
	border-color: #0ea5e9;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.tva-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.tva-form-error {
	color: #ef4444;
	font-size: 0.9rem;
	margin-top: -0.5rem;
	display: none;
}

.tva-form-group.tva-error .tva-form-error {
	display: block;
}

.tva-form-group.tva-error .tva-form-input,
.tva-form-group.tva-error .tva-form-textarea {
	border-color: #ef4444;
}

.tva-form-submit {
	padding: 1.2rem 3rem;
	background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
	color: #ffffff;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.tva-form-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.tva-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* === MAP === */
.tva-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.tva-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.tva-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.tva-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* === FOOTER === */
.tva-footer {
	background: #f1f5f9;
	padding: 4rem 0 2rem;
}

.tva-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.tva-footer-column h4 {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: #1e293b;
}

.tva-footer-text {
	color: #475569;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.tva-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.tva-footer-link {
	color: #475569;
	transition: color 0.4s ease;
}

.tva-footer-link:hover {
	color: #0ea5e9;
}

.tva-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tva-footer-contact-item {
	display: flex;
	align-items: start;
	gap: 0.8rem;
	color: #475569;
}

.tva-footer-contact-icon {
	color: #0ea5e9;
	font-size: 1.2rem;
	margin-top: 0.2rem;
}

.tva-footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid #cbd5e1;
	text-align: center;
	color: #475569;
}

/* === COOKIE POPUP === */
.tva-cookie {
	position: fixed;
	display: none;
	bottom: -200px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 700px;
	background: #ffffff;
	padding: 2rem;

	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
	z-index: 9999;

	flex-direction: column;
	gap: 1.5rem;
	transition: bottom 0.5s ease;
}

.tva-cookie.tva-show {
	bottom: 2rem;
	display: flex;
}

.tva-cookie-text {
	color: #475569;
	line-height: 1.7;
}

.tva-cookie-link {
	color: #0ea5e9;
	text-decoration: underline;
}

.tva-cookie-actions {
	display: flex;
	gap: 1rem;
}

.tva-cookie-btn {
	padding: 0.8rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.4s ease;
}

.tva-cookie-accept {
	background: #0ea5e9;
	color: #ffffff;
}

.tva-cookie-accept:hover {
	background: #0284c7;
}

/* === ANIMATIONS === */
@keyframes tva-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tva-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes tva-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes tva-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes tva-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.tva-animate-fade-up {
	animation: tva-fade-up 0.8s ease;
}

.tva-animate-fade-in {
	animation: tva-fade-in 0.8s ease;
}

.tva-animate-slide-left {
	animation: tva-slide-in-left 0.8s ease;
}

.tva-animate-slide-right {
	animation: tva-slide-in-right 0.8s ease;
}

.tva-animate-zoom {
	animation: tva-zoom-in 0.8s ease;
}

/* Scroll animations (applied via JS) */
.tva-scroll-animate {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.tva-scroll-animate.tva-visible {
	opacity: 1;
	transform: translateY(0);
}

/* === UTILITY CLASSES === */
.tva-text-center {
	text-align: center;
}

.tva-mb-1 {
	margin-bottom: 0.5rem;
}
.tva-mb-2 {
	margin-bottom: 1rem;
}
.tva-mb-3 {
	margin-bottom: 1.5rem;
}
.tva-mb-4 {
	margin-bottom: 2rem;
}
.tva-mb-5 {
	margin-bottom: 3rem;
}

.tva-mt-1 {
	margin-top: 0.5rem;
}
.tva-mt-2 {
	margin-top: 1rem;
}
.tva-mt-3 {
	margin-top: 1.5rem;
}
.tva-mt-4 {
	margin-top: 2rem;
}
.tva-mt-5 {
	margin-top: 3rem;
}

.tva-p-1 {
	padding: 0.5rem;
}
.tva-p-2 {
	padding: 1rem;
}
.tva-p-3 {
	padding: 1.5rem;
}
.tva-p-4 {
	padding: 2rem;
}
.tva-p-5 {
	padding: 3rem;
}

.tva-divider {
	width: 100%;
	height: 1px;
	background: #cbd5e1;
	margin: 3rem 0;
}

.tva-badge {
	display: inline-block;
	padding: 0.5rem 1.2rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	background: #0ea5e9;
	color: #ffffff;
	margin-bottom: 1rem;
}

.tva-badge-gold {
	background: #fbbf24;
	color: #1e293b;
}

.tva-badge-green {
	background: #34d399;
	color: #1e293b;
}

/* === TEAM CARDS === */
.tva-team-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.4s ease;
}

.tva-team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.tva-team-avatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 1.5rem;
	border: 4px solid #0ea5e9;
}

.tva-team-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.tva-team-role {
	color: #0ea5e9;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.tva-team-desc {
	color: #475569;
	line-height: 1.7;
}

/* === CONTACT INFO === */
.tva-contact-info {
	background: #f8fafc;
	padding: 3rem;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.tva-contact-item {
	display: flex;
	align-items: start;
	gap: 1.5rem;
}

.tva-contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.tva-contact-details h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.tva-contact-details p {
	color: #475569;
	line-height: 1.7;
}

/* === PAGE HEADER === */
.tva-page-header {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.1) 0%,
		rgba(52, 211, 153, 0.1) 100%
	);
	padding: 8rem 0 4rem;
	margin-top: 100px;
	text-align: center;
	border-radius: 24px;
	margin-bottom: 4rem;
}

.tva-page-title {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	color: #1e293b;
}

.tva-page-subtitle {
	font-size: 1.3rem;
	color: #475569;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.8;
}

/* === BREADCRUMB === */
.tva-breadcrumb {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
	color: #475569;
}

.tva-breadcrumb-link {
	color: #0ea5e9;
	transition: opacity 0.4s ease;
}

.tva-breadcrumb-link:hover {
	opacity: 0.7;
}

.tva-breadcrumb-separator {
	color: #cbd5e1;
}

/* === INFO BOXES === */
.tva-info-box {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	border-left: 4px solid #0ea5e9;
	padding: 2rem;
	border-radius: 12px;
	margin: 2rem 0;
}

.tva-info-box-title {
	font-size: 1.3rem;
	color: #1e293b;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.tva-info-box-icon {
	color: #0ea5e9;
	font-size: 1.5rem;
}

.tva-info-box-text {
	color: #475569;
	line-height: 1.8;
}

/* === STATS === */
.tva-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	padding: 4rem 0;
}

.tva-stat-card {
	text-align: center;
	padding: 2rem;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.4s ease;
}

.tva-stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tva-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #0ea5e9;
	margin-bottom: 0.5rem;
	font-family: 'Playfair Display', serif;
}

.tva-stat-label {
	color: #475569;
	font-size: 1.1rem;
}

/* === TABS === */
.tva-tabs {
	margin: 3rem 0;
}

.tva-tab-nav {
	display: flex;
	gap: 1rem;
	border-bottom: 2px solid #e2e8f0;
	margin-bottom: 2rem;
}

.tva-tab-btn {
	padding: 1rem 2rem;
	background: transparent;
	border: none;
	font-size: 1.1rem;
	font-weight: 600;
	color: #475569;
	cursor: pointer;
	position: relative;
	transition: all 0.4s ease;
}

.tva-tab-btn::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #0ea5e9;
	transition: width 0.4s ease;
}

.tva-tab-btn:hover {
	color: #0ea5e9;
}

.tva-tab-btn.tva-active {
	color: #0ea5e9;
}

.tva-tab-btn.tva-active::after {
	width: 100%;
}

.tva-tab-content {
	display: none;
	animation: tva-fade-in 0.5s ease;
}

.tva-tab-content.tva-active {
	display: block;
}

/* === PROCESS STEPS === */
.tva-process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	position: relative;
	padding: 3rem 0;
}

.tva-process::before {
	content: '';
	position: absolute;
	top: 91px;
	left: 12%;
	width: 76%;
	height: 2px;
	background: linear-gradient(90deg, #0ea5e9, #34d399);
	z-index: 0;
}

.tva-process-step {
	text-align: center;
	position: relative;
	z-index: 1;
}

.tva-process-number {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	margin: 0 auto 1.5rem;
	font-stretch: normal;
	box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.tva-process-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.tva-process-desc {
	color: #475569;
	line-height: 1.7;
}

/* === FEATURES LIST === */
.tva-features-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tva-feature-item {
	display: flex;
	align-items: start;
	gap: 1rem;
	padding: 1.5rem;
	background: #f8fafc;
	border-radius: 12px;
	transition: all 0.4s ease;
}

.tva-feature-item:hover {
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tva-feature-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, #0ea5e9, #34d399);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.tva-feature-content h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.tva-feature-content p {
	color: #475569;
	line-height: 1.7;
}

/* === GALLERY === */
.tva-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.tva-gallery-item {
	position: relative;
	height: 300px;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s ease;
}

.tva-gallery-item:hover {
	transform: scale(1.02);
}

.tva-gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tva-gallery-item:hover .tva-gallery-img {
	transform: scale(1.1);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
	.tva-h1 {
		font-size: 3rem;
	}
	.tva-h2 {
		font-size: 2.3rem;
	}
	.tva-hero-title {
		font-size: 3rem;
	}

	.tva-grid-3,
	.tva-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.tva-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tva-stats,
	.tva-process {
		grid-template-columns: repeat(2, 1fr);
	}

	.tva-process::before {
		display: none;
	}

	.tva-nav {
		position: fixed;
		top: 0;
		right: -125%;
		width: 100%;
		border-radius: 16px;
		height: 100vh;
		background: #ffffff;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		transition: right 0.5s ease;
		z-index: 999;
	}

	.tva-nav.tva-active {
		right: 0;
	}

	.tva-burger {
		display: flex;
	}
}

@media (max-width: 768px) {
	.tva-header {
		width: calc(100% - 2rem);
		padding: 1rem 1.5rem;
	}

	.tva-hero-title {
		font-size: 2.5rem;
	}

	.tva-hero-subtitle {
		font-size: 1.2rem;
	}

	.tva-grid-2,
	.tva-grid-3,
	.tva-grid-4 {
		grid-template-columns: 1fr;
	}

	.tva-form-section {
		grid-template-columns: 1fr;
	}

	.tva-footer-grid {
		grid-template-columns: 1fr;
	}

	.tva-page-header {
		padding: 6rem 0 3rem;
		margin-top: 80px;
	}

	.tva-page-title {
		font-size: 2.5rem;
	}

	.tva-stats,
	.tva-process {
		grid-template-columns: 1fr;
	}

	.tva-tab-nav {
		flex-wrap: wrap;
	}

	.tva-gallery {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.tva-container {
		padding: 0 1rem;
	}

	.tva-h1 {
		font-size: 2rem;
	}
	.tva-h2 {
		font-size: 1.8rem;
	}
	.tva-h3 {
		font-size: 1.5rem;
	}

	.tva-hero-title {
		font-size: 2rem;
	}

	.tva-section,
	.tva-section-alt {
		padding: 3rem 0;
	}

	.tva-btn {
		padding: 0.8rem 2rem;
		font-size: 1rem;
	}

	.tva-card {
		padding: 1.5rem;
	}

	.tva-cookie {
		width: 95%;
		padding: 1.5rem;
	}

	.tva-logo {
		font-size: 1rem;
	}

	.tva-header {
		padding: 1rem 20px;
	}

	.tva-accordion-title {
		font-size: 1.1rem;
	}

	.tva-accordion-header {
		gap: 10px;
	}

	.tva-page-title {
		font-size: 2rem;
	}

	.tva-tab-nav,
	.tva-contact-item {
		flex-direction: column;
	}

	.tva-contact-info {
		padding: 2rem;
	}
}

.tva-legal-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 120px 24px;
}

.tva-legal-header {
	background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
	color: #ffffff;
	padding: 48px 24px;
	text-align: center;
	border-radius: 16px;
	margin-bottom: 48px;
	box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
}

.tva-legal-header h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #ffffff;
	letter-spacing: -0.5px;
}

.tva-legal-header p {
	font-size: 1.1rem;
	opacity: 0.95;
	font-weight: 300;
}

.tva-legal-intro {
	background-color: #ffffff;
	padding: 32px;
	border-radius: 12px;
	margin-bottom: 32px;
	border-left: 4px solid #0ea5e9;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tva-legal-intro p {
	color: #475569;
	font-size: 1.05rem;
	line-height: 1.8;
}

.tva-legal-section {
	background-color: #ffffff;
	padding: 36px;
	border-radius: 12px;
	margin-bottom: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tva-legal-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tva-legal-section h2 {
	color: #0ea5e9;
	font-size: 1.6rem;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
}

.tva-legal-section-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
	color: #ffffff;
	border-radius: 10px;
	font-size: 1.2rem;
	font-weight: 700;
	flex-shrink: 0;
}

.tva-legal-section p {
	color: #1e293b;
	margin-bottom: 16px;
	font-size: 1rem;
	line-height: 1.8;
}

.tva-legal-section ul {
	list-style: none;
	margin: 16px 0;
	padding-left: 0;
}

.tva-legal-section li {
	color: #475569;
	margin-bottom: 12px;
	padding-left: 32px;
	position: relative;
	line-height: 1.7;
}

.tva-legal-section li:before {
	content: '→';
	position: absolute;
	left: 8px;
	color: #34d399;
	font-weight: 700;
	font-size: 1.2rem;
}

.tva-legal-subsection {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #e2e8f0;
}

.tva-legal-subsection h3 {
	color: #0ea5e9;
	font-size: 1.2rem;
	margin-bottom: 16px;
	font-weight: 600;
}

.tva-legal-highlight {
	background-color: #fef3c7;
	border-left: 3px solid #fbbf24;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
}

.tva-legal-highlight p {
	color: #78350f;
	margin-bottom: 0;
	font-weight: 500;
}

.tva-legal-contact {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	padding: 32px;
	border-radius: 12px;
	margin-top: 48px;
	border: 2px solid #bae6fd;
}

.tva-legal-contact h2 {
	color: #0ea5e9;
	font-size: 1.5rem;
	margin-bottom: 20px;
	font-weight: 600;
}

.tva-legal-contact-info {
	display: grid;
	gap: 16px;
}

.tva-legal-contact-item {
	display: flex;
	align-items: start;
	gap: 12px;
	color: #475569;
}

.tva-legal-contact-icon {
	width: 24px;
	height: 24px;
	background-color: #0ea5e9;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
}

.tva-legal-contact-item strong {
	color: #1e293b;
	display: block;
	margin-bottom: 4px;
}

.tva-legal-contact-item a {
	color: #0ea5e9;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.tva-legal-contact-item a:hover {
	color: #0284c7;
	text-decoration: underline;
}

.tva-legal-footer {
	text-align: center;
	padding: 32px 24px;
	color: #94a3b8;
	font-size: 0.9rem;
	border-top: 1px solid #e2e8f0;
	margin-top: 48px;
}

.tva-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	background-color: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tva-legal-table th {
	background-color: #0ea5e9;
	color: #ffffff;
	padding: 16px;
	text-align: left;
	font-weight: 600;
}

.tva-legal-table td {
	padding: 16px;
	border-bottom: 1px solid #e2e8f0;
	color: #475569;
}

.tva-legal-table tr:last-child td {
	border-bottom: none;
}

.tva-legal-table tr:hover {
	background-color: #f8fafc;
}

@media (max-width: 768px) {
	.tva-legal-header {
		padding: 32px 20px;
	}

	.tva-legal-header h1 {
		font-size: 2rem;
	}

	.tva-legal-header p {
		font-size: 1rem;
	}

	.tva-legal-section {
		padding: 24px 20px;
	}

	.tva-legal-section h2 {
		font-size: 1.3rem;
	}

	.tva-legal-intro {
		padding: 24px 20px;
	}

	.tva-legal-contact {
		padding: 24px 20px;
	}
}

@media (max-width: 480px) {
	.tva-legal-header h1 {
		font-size: 1.3rem;
	}

	.tva-legal-section h2 {
		font-size: 1.1rem;
	}

	.tva-legal-section li {
		word-wrap: break-word;
	}
}
