* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ===== ROOT VARIABLES ===== */
:root {
	--ve-bg-primary: #0a0f1f;
	--ve-bg-secondary: #1b2335;
	--ve-accent-cyan: #4dd0e1;
	--ve-accent-coral: #ff6f61;
	--ve-accent-yellow: #ffd54f;
	--ve-text-primary: #f5f5f5;
	--ve-text-secondary: #b0bec5;
	--ve-gradient-hero: linear-gradient(135deg, #4dd0e1 0%, #ff6f61 100%);
	--ve-gradient-card: linear-gradient(145deg, #1b2335 0%, #243447 100%);
	--ve-shadow-glow: 0 0 30px rgba(77, 208, 225, 0.3);
	--ve-shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
	--ve-border-radius: 12px;
	--ve-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Montserrat:wght@400;600;700&display=swap');

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: var(--ve-bg-primary);
	color: var(--ve-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

ul,
ol {
	padding-left: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	line-height: 1.2;
}

h2 {
	font-size: 2.5rem;
	line-height: 1.3;
}

h3 {
	font-size: 1.8rem;
	line-height: 1.4;
}

p {
	margin-bottom: 1rem;
	color: var(--ve-text-secondary);
}

a {
	color: var(--ve-accent-cyan);
	text-decoration: none;
	transition: var(--ve-transition);
}

a:hover {
	color: var(--ve-accent-coral);
	text-shadow: 0 0 8px rgba(77, 208, 225, 0.6);
}

/* ===== LAYOUT CONTAINERS ===== */
.ve-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.ve-section {
	padding: 5rem 0;
	position: relative;
}

.ve-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.ve-row-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.ve-col-2 {
	height: 100%;
}

.ve-col-3 {
	height: 100%;
}

.ve-col-4 {
	height: 100%;
}

/* ===== HEADER ===== */
.ve-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(27, 35, 53, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(77, 208, 225, 0.2);
	z-index: 1000;

	transition: var(--ve-transition);
}

.ve-header.ve-scrolled {
	background: rgba(27, 35, 53, 0.98);
	box-shadow: var(--ve-shadow-card);
}

.ve-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.ve-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	background: var(--ve-gradient-hero);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ve-nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 2rem;
}

.ve-nav-link {
	color: var(--ve-text-primary);
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: var(--ve-border-radius);
	position: relative;
	transition: var(--ve-transition);
}

.ve-nav-link:hover {
	color: var(--ve-accent-cyan);
	background: rgba(77, 208, 225, 0.1);
}

.ve-nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--ve-gradient-hero);
	transition: var(--ve-transition);
	transform: translateX(-50%);
}

.ve-nav-link:hover::after {
	width: 80%;
}

/* Mobile Navigation */
.ve-mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--ve-text-primary);
	font-size: 1.5rem;
	cursor: pointer;
}

.ve-mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--ve-bg-secondary);
	border-top: 1px solid rgba(77, 208, 225, 0.2);
	box-shadow: var(--ve-shadow-card);
}

.ve-mobile-menu.ve-active {
	display: block;
}

.ve-mobile-nav {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	gap: 0.5rem;
}

/* ===== HERO SECTION ===== */
.ve-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	background: var(--ve-bg-primary);
	overflow: hidden;
}

.ve-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/ve-hero.webp') center;
	background-size: cover;
	opacity: 0.3;
}

.ve-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.ve-hero-title {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	background: var(--ve-gradient-hero);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: ve-fadeInUp 1s ease-out;
}

.ve-hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	color: var(--ve-text-secondary);
	animation: ve-fadeInUp 1s ease-out 0.2s both;
}

.ve-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	animation: ve-fadeInUp 1s ease-out 0.4s both;
}

/* ===== BUTTONS ===== */
.ve-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--ve-border-radius);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--ve-transition);
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.ve-btn-primary {
	background: var(--ve-gradient-hero);
	color: white;
	box-shadow: var(--ve-shadow-glow);
}

.ve-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 40px rgba(77, 208, 225, 0.5);
}

.ve-btn-secondary {
	background: transparent;
	color: var(--ve-text-primary);
	border: 2px solid var(--ve-accent-cyan);
}

.ve-btn-secondary:hover {
	background: var(--ve-accent-cyan);
	color: var(--ve-bg-primary);
	transform: translateY(-2px);
}

.ve-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: var(--ve-transition);
}

.ve-btn:hover::before {
	left: 100%;
}

/* ===== CARDS ===== */
.ve-card {
	background: var(--ve-gradient-card);
	border-radius: var(--ve-border-radius);
	padding: 2rem;
	box-shadow: var(--ve-shadow-card);
	transition: var(--ve-transition);
	border: 1px solid rgba(77, 208, 225, 0.1);
	position: relative;
	overflow: hidden;
	height: 100%;
}

.ve-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--ve-gradient-hero);
	transform: scaleX(0);
	transition: var(--ve-transition);
}

.ve-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 64px rgba(0, 0, 0, 0.6);
	border-color: var(--ve-accent-cyan);
}

.ve-card:hover::before {
	transform: scaleX(1);
}

.ve-card-icon {
	width: 60px;
	height: 60px;
	background: var(--ve-gradient-hero);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: white;
}

.ve-card-title {
	color: var(--ve-text-primary);
	margin-bottom: 1rem;
}

.ve-card-text {
	color: var(--ve-text-secondary);
	line-height: 1.6;
}

/* ===== SECTIONS ===== */
.ve-section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.ve-section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	width: 80px;
	height: 3px;
	background: var(--ve-gradient-hero);
	transform: translateX(-50%);
	border-radius: 2px;
}

/* ===== TABS ===== */
.ve-tabs {
	margin-top: 2rem;
}

.ve-tab-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid rgba(77, 208, 225, 0.2);
}

.ve-tab-button {
	padding: 1rem 2rem;
	background: none;
	border: none;
	color: var(--ve-text-secondary);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	transition: var(--ve-transition);
}

.ve-tab-button.ve-active {
	color: var(--ve-accent-cyan);
}

.ve-tab-button::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--ve-gradient-hero);
	transform: scaleX(0);
	transition: var(--ve-transition);
}

.ve-tab-button.ve-active::after {
	transform: scaleX(1);
}

.ve-tab-content {
	display: none;
	animation: ve-fadeIn 0.3s ease-out;
}

.ve-tab-content.ve-active {
	display: block;
}

/* ===== TEAM SECTION ===== */
.ve-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.ve-team-card {
	text-align: center;
	background: var(--ve-gradient-card);
	border-radius: var(--ve-border-radius);
	padding: 2rem;
	transition: var(--ve-transition);
	border: 1px solid rgba(77, 208, 225, 0.1);
}

.ve-team-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--ve-shadow-glow);
}

.ve-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	background: var(--ve-gradient-hero);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: white;
	font-weight: bold;
}

.ve-team-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.ve-team-name {
	color: var(--ve-text-primary);
	margin-bottom: 0.5rem;
}

.ve-team-role {
	color: var(--ve-accent-cyan);
	margin-bottom: 1rem;
	font-weight: 600;
}

.ve-team-bio {
	color: var(--ve-text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.ve-testimonials {
	position: relative;
	overflow: hidden;
}

.ve-testimonial-slider {
	display: flex;
	transition: transform 0.5s ease;
}

.ve-testimonial-slide {
	min-width: 100%;
	text-align: center;
	padding: 2rem;
}

.ve-testimonial-content {
	max-width: 600px;
	margin: 0 auto;
	background: var(--ve-gradient-card);
	border-radius: var(--ve-border-radius);
	padding: 3rem;
	position: relative;
}

.ve-testimonial-content::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 30px;
	font-size: 4rem;
	color: var(--ve-accent-cyan);
	font-family: 'Montserrat', sans-serif;
}

.ve-testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 2rem;
	color: var(--ve-text-primary);
	font-style: italic;
}

.ve-testimonial-author {
	color: var(--ve-accent-cyan);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.ve-testimonial-role {
	color: var(--ve-text-secondary);
	font-size: 0.9rem;
}

.ve-testimonial-nav {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.ve-testimonial-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(77, 208, 225, 0.3);
	cursor: pointer;
	transition: var(--ve-transition);
}

.ve-testimonial-dot.ve-active {
	background: var(--ve-accent-cyan);
	box-shadow: 0 0 10px rgba(77, 208, 225, 0.5);
}

/* ===== FORM ===== */
.ve-form {
	background: var(--ve-gradient-card);
	border-radius: var(--ve-border-radius);
	padding: 2rem;
	border: 1px solid rgba(77, 208, 225, 0.1);
}

.ve-form-group {
	margin-bottom: 1.5rem;
}

.ve-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--ve-text-primary);
	font-weight: 600;
}

.ve-form-input,
.ve-form-textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(77, 208, 225, 0.3);
	border-radius: var(--ve-border-radius);
	background: rgba(27, 35, 53, 0.5);
	color: var(--ve-text-primary);
	font-family: 'Roboto', sans-serif;
	transition: var(--ve-transition);
}

.ve-form-input:focus,
.ve-form-textarea:focus {
	outline: none;
	border-color: var(--ve-accent-cyan);
	box-shadow: 0 0 10px rgba(77, 208, 225, 0.3);
}

.ve-form-input.ve-error,
.ve-form-textarea.ve-error {
	border-color: var(--ve-accent-coral);
	box-shadow: 0 0 10px rgba(255, 111, 97, 0.3);
}

.ve-form-error {
	color: var(--ve-accent-coral);
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.ve-form-error.ve-show {
	display: block;
}

.ve-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ve-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ve-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.ve-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ===== FOOTER ===== */
.ve-footer {
	background: var(--ve-bg-secondary);
	padding: 3rem 0 1rem;
	border-top: 1px solid rgba(77, 208, 225, 0.2);
}

.ve-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.ve-footer-section h3 {
	color: var(--ve-text-primary);
	margin-bottom: 1rem;
}

.ve-footer-section p,
.ve-footer-section a {
	color: var(--ve-text-secondary);
	margin-bottom: 0.5rem;
	display: block;
}

.ve-footer-section a:hover {
	color: var(--ve-accent-cyan);
}

.ve-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(77, 208, 225, 0.1);
	color: var(--ve-text-secondary);
}

/* ===== COOKIE POPUP ===== */
.ve-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: var(--ve-bg-secondary);
	border-top: 3px solid var(--ve-accent-cyan);
	padding: 1.5rem;
	box-shadow: var(--ve-shadow-card);
	z-index: 2000;
	transition: var(--ve-transition);
}

.ve-cookie-popup.ve-show {
	bottom: 0;
}

.ve-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.ve-cookie-text {
	color: var(--ve-text-secondary);
	margin: 0;
}

.ve-cookie-actions {
	display: flex;
	gap: 1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes ve-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes ve-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ve-slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ve-slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ve-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.ve-animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.ve-animate-on-scroll.ve-animated {
	opacity: 1;
	transform: translateY(0);
}

/* ===== UTILITY CLASSES ===== */
.ve-text-center {
	text-align: center;
}

.ve-text-left {
	text-align: left;
}

.ve-text-right {
	text-align: right;
}

.ve-mb-0 {
	margin-bottom: 0;
}

.ve-mb-1 {
	margin-bottom: 1rem;
}

.ve-mb-2 {
	margin-bottom: 2rem;
}

.ve-mt-2 {
	margin-top: 2rem;
}

.ve-p-0 {
	padding: 0;
}

.ve-hidden {
	display: none;
}

.ve-visible {
	display: block;
}

.ve-gradient-text {
	background: var(--ve-gradient-hero);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== LOADING STATES ===== */
.ve-loading {
	position: relative;
	pointer-events: none;
}

.ve-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	border: 2px solid var(--ve-accent-cyan);
	border-top: 2px solid transparent;
	border-radius: 50%;
	animation: ve-spin 1s linear infinite;
	transform: translate(-50%, -50%);
}

@keyframes ve-spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
	*,
	::before,
	::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

.ve-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
	.ve-nav-menu {
		gap: 0;
	}
}

@media (max-width: 870px) {
	.ve-nav-menu {
		display: none;
	}

	.ve-mobile-menu-toggle {
		display: block;
	}
	.ve-mobile-menu.ve-active .ve-nav-menu {
		display: flex;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.ve-hero-title {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.ve-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.ve-tab-buttons {
		flex-wrap: wrap;
	}

	.ve-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.ve-container {
		padding: 0 1rem;
	}

	.ve-section {
		padding: 3rem 0;
	}

	.ve-gradient-text {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.ve-hero-title {
		font-size: 2rem;
	}
	.ve-gradient-text {
		font-size: 1.5rem;
	}
	.ve-tab-buttons {
		flex-direction: column;
		flex-wrap: nowrap;
	}

	h2 {
		font-size: 1.5rem;
	}

	.ve-testimonial-slide {
		padding: 1rem;
	}

	.ve-row,
	.ve-row-2,
	.ve-team-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.ve-hero-subtitle {
		font-size: 1.1rem;
	}

	.ve-card {
		padding: 1.5rem;
	}

	.ve-btn {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}
}
