@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;600;700;900&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
	/* Colors */
	--vcs-bg-primary: #0b0e14;
	--vcs-bg-secondary: #141923;
	--vcs-accent-teal: #00ffc6;
	--vcs-accent-pink: #ff3d81;
	--vcs-divider: #232a35;
	--vcs-text-primary: #e8eaed;
	--vcs-text-secondary: #9ba2ae;
	--vcs-text-heading: #ffffff;

	/* Typography */
	--vcs-font-primary: 'Inter', sans-serif;
	--vcs-font-heading: 'Orbitron', sans-serif;

	/* Transitions */
	--vcs-transition: 0.3s ease-in-out;

	/* Spacing */
	--vcs-section-padding: 100px 0;
	--vcs-container-padding: 0 20px;

	/* Border Radius */
	--vcs-radius-sm: 8px;
	--vcs-radius-md: 12px;
	--vcs-radius-lg: 20px;

	/* Shadows */
	--vcs-shadow-glow: 0 0 30px rgba(0, 255, 198, 0.3);
	--vcs-shadow-glow-pink: 0 0 30px rgba(255, 61, 129, 0.3);
	--vcs-shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ========== RESET & BASE ========== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--vcs-font-primary);
	background-color: var(--vcs-bg-primary);
	color: var(--vcs-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--vcs-transition);
}

ul,
ol {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	transition: var(--vcs-transition);
}

input,
textarea,
select {
	font-family: inherit;
	outline: none;
	transition: var(--vcs-transition);
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--vcs-font-heading);
	color: var(--vcs-text-heading);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
}

h1 {
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	font-size: 1rem;
	color: var(--vcs-text-secondary);
	line-height: 1.8;
	margin-bottom: 15px;
}

/* ========== CONTAINER ========== */
.vcs-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: var(--vcs-container-padding);
}

.vcs-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: var(--vcs-container-padding);
}

/* ========== BUTTONS ========== */
.vcs-btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: var(--vcs-radius-sm);
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	transition: all var(--vcs-transition);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.vcs-btn-primary {
	background: linear-gradient(135deg, var(--vcs-accent-teal), #00ccb3);
	color: var(--vcs-bg-primary);
	box-shadow: var(--vcs-shadow-glow);
}

.vcs-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 40px rgba(0, 255, 198, 0.5);
}

.vcs-btn-secondary {
	background: transparent;
	color: var(--vcs-text-primary);
	border: 2px solid var(--vcs-accent-pink);
}

.vcs-btn-secondary:hover {
	background: var(--vcs-accent-pink);
	color: var(--vcs-text-heading);
	box-shadow: var(--vcs-shadow-glow-pink);
}

.vcs-btn-cta {
	background: linear-gradient(135deg, var(--vcs-accent-pink), #ff1f6d);
	color: var(--vcs-text-heading);
	box-shadow: var(--vcs-shadow-glow-pink);
	font-size: 1.1rem;
	padding: 16px 40px;
}

.vcs-btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 50px rgba(255, 61, 129, 0.6);
}

/* ========== HEADER ========== */
.vcs-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--vcs-bg-secondary);
	border-bottom: 2px solid var(--vcs-accent-teal);
	z-index: 1000;
	transition: var(--vcs-transition);
}

.vcs-header.vcs-scrolled {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.vcs-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.vcs-logo {
	font-family: var(--vcs-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	z-index: 1005;
	position: relative;
	color: var(--vcs-text-heading);
}

.vcs-logo span {
	color: var(--vcs-accent-pink);
}

.vcs-nav {
	display: flex;
	align-items: center;
	gap: 40px;
}

.vcs-nav-list {
	display: flex;
	gap: 30px;
}

.vcs-nav-link {
	color: var(--vcs-text-primary);
	font-weight: 500;
	font-size: 0.95rem;
	position: relative;
}

.vcs-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--vcs-accent-teal);
	transition: width var(--vcs-transition);
}

.vcs-nav-link:hover::after,
.vcs-nav-link.vcs-active::after {
	width: 100%;
}

.vcs-nav-link:hover {
	color: var(--vcs-accent-teal);
}

.vcs-header-cta {
	padding: 10px 24px;
	font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.vcs-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 1001;
}

.vcs-mobile-toggle span {
	width: 28px;
	height: 3px;
	background: var(--vcs-accent-teal);
	border-radius: 2px;
	transition: var(--vcs-transition);
}

.vcs-mobile-toggle.vcs-active span:nth-child(1) {
	transform: rotate(45deg) translate(4px, 3px);
}

.vcs-mobile-toggle.vcs-active span:nth-child(2) {
	opacity: 0;
}

.vcs-mobile-toggle.vcs-active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== HERO SECTION ========== */
.vcs-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 120px 20px 80px;
	overflow: hidden;
}

.vcs-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 255, 198, 0.05),
		rgba(255, 61, 129, 0.05)
	);
	z-index: 0;
}

.vcs-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.15;
	z-index: 0;
}

.vcs-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.vcs-hero-title {
	font-size: 4rem;
	margin-bottom: 25px;
	background: linear-gradient(
		135deg,
		var(--vcs-text-heading),
		var(--vcs-accent-teal)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: vcs-fadeInUp 0.8s ease-out;
}

.vcs-hero-subtitle {
	font-size: 1.3rem;
	color: var(--vcs-text-secondary);
	margin-bottom: 40px;
	animation: vcs-fadeInUp 0.8s ease-out 0.2s backwards;
}

.vcs-hero-cta {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	animation: vcs-fadeInUp 0.8s ease-out 0.4s backwards;
}

/* ========== SECTION STYLES ========== */
.vcs-section {
	padding: var(--vcs-section-padding);
	position: relative;
}

.vcs-section-title {
	text-align: center;
	margin-bottom: 60px;
}

.vcs-section-title h2 {
	font-size: 2.8rem;
	margin-bottom: 15px;
	background: linear-gradient(
		135deg,
		var(--vcs-text-heading),
		var(--vcs-accent-teal)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.vcs-section-title p {
	font-size: 1.1rem;
	color: var(--vcs-text-secondary);
	max-width: 700px;
	margin: 0 auto;
}

/* ========== GRID LAYOUTS ========== */
.vcs-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.vcs-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.vcs-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

/* ========== CARDS ========== */
.vcs-card {
	background: var(--vcs-bg-secondary);
	border: 1px solid var(--vcs-divider);
	border-radius: var(--vcs-radius-md);
	padding: 40px 30px;
	transition: all var(--vcs-transition);
	position: relative;
	overflow: hidden;
}

.vcs-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--vcs-accent-teal),
		var(--vcs-accent-pink)
	);
	transform: scaleX(0);
	transition: transform var(--vcs-transition);
}

.vcs-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--vcs-shadow-card);
	border-color: var(--vcs-accent-teal);
}

.vcs-card:hover::before {
	transform: scaleX(1);
}

.vcs-card-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(0, 255, 198, 0.1),
		rgba(255, 61, 129, 0.1)
	);
	border-radius: var(--vcs-radius-sm);
	margin-bottom: 25px;
	font-size: 2rem;
	color: var(--vcs-accent-teal);
}

.vcs-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--vcs-text-heading);
}

.vcs-card p {
	font-size: 0.95rem;
	color: var(--vcs-text-secondary);
	line-height: 1.7;
}

/* ========== FEATURE CARDS ========== */
.vcs-feature-card {
	background: var(--vcs-bg-secondary);
	border: 1px solid var(--vcs-divider);
	border-radius: var(--vcs-radius-lg);
	padding: 50px;
	position: relative;
	overflow: hidden;
}

.vcs-feature-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(0, 255, 198, 0.1), transparent);
	z-index: 0;
}

.vcs-feature-card-content {
	position: relative;
	z-index: 1;
}

.vcs-feature-number {
	font-family: var(--vcs-font-heading);
	font-size: 3rem;
	color: var(--vcs-accent-teal);
	opacity: 0.3;
	margin-bottom: 20px;
}

/* ========== REVIEWS/TESTIMONIALS ========== */
.vcs-review-card {
	background: var(--vcs-bg-secondary);
	border: 1px solid var(--vcs-divider);
	border-radius: var(--vcs-radius-md);
	padding: 35px;
	position: relative;
}

.vcs-review-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.vcs-review-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid var(--vcs-accent-teal);
	object-fit: cover;
}

.vcs-review-info h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
	color: var(--vcs-text-heading);
}

.vcs-review-location {
	font-size: 0.9rem;
	color: var(--vcs-text-secondary);
}

.vcs-review-stars {
	color: var(--vcs-accent-teal);
	font-size: 1.1rem;
	margin-bottom: 15px;
}

.vcs-review-text {
	font-size: 1rem;
	color: var(--vcs-text-secondary);
	line-height: 1.7;
	font-style: italic;
}

/* ========== COMPARISON TABLE ========== */
.vcs-comparison-table {
	width: 100%;
	background: var(--vcs-bg-secondary);
	border: 1px solid var(--vcs-divider);
	border-radius: var(--vcs-radius-md);
	overflow-x: auto;
	margin: 40px 0;
}

.vcs-comparison-table table {
	width: 100%;
	border-collapse: collapse;
}

.vcs-comparison-table th {
	background: rgba(0, 255, 198, 0.1);
	color: var(--vcs-text-heading);
	font-family: var(--vcs-font-heading);
	padding: 20px;
	text-align: left;
	font-weight: 600;
	font-size: 1rem;
	border-bottom: 2px solid var(--vcs-accent-teal);
}

.vcs-comparison-table td {
	padding: 18px 20px;
	color: var(--vcs-text-secondary);
	border-bottom: 1px solid var(--vcs-divider);
}

.vcs-comparison-table tr:last-child td {
	border-bottom: none;
}

.vcs-comparison-table .vcs-check {
	color: var(--vcs-accent-teal);
	font-size: 1.2rem;
}

.vcs-comparison-table .vcs-cross {
	color: var(--vcs-accent-pink);
	font-size: 1.2rem;
}

.vcs-comparison-highlight {
	background: rgba(0, 255, 198, 0.05);
}

/* ========== FORM STYLES ========== */
.vcs-form-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.vcs-form {
	background: var(--vcs-bg-secondary);
	border: 1px solid var(--vcs-divider);
	border-radius: var(--vcs-radius-md);
	padding: 40px;
}

.vcs-form-group {
	margin-bottom: 25px;
}

.vcs-form-label {
	display: block;
	font-weight: 500;
	color: var(--vcs-text-primary);
	margin-bottom: 10px;
	font-size: 0.95rem;
}

.vcs-form-label span {
	color: var(--vcs-accent-pink);
}

.vcs-form-input,
.vcs-form-textarea {
	width: 100%;
	padding: 14px 18px;
	background: var(--vcs-bg-primary);
	border: 1px solid var(--vcs-divider);
	border-radius: var(--vcs-radius-sm);
	color: var(--vcs-text-primary);
	font-size: 0.95rem;
}

.vcs-form-input:focus,
.vcs-form-textarea:focus {
	border-color: var(--vcs-accent-teal);
	box-shadow: 0 0 0 3px rgba(0, 255, 198, 0.1);
}

.vcs-form-input.vcs-error,
.vcs-form-textarea.vcs-error {
	border-color: var(--vcs-accent-pink);
}

.vcs-form-error-message {
	color: var(--vcs-accent-pink);
	font-size: 0.85rem;
	margin-top: 8px;
	display: none;
}

.vcs-form-error-message.vcs-show {
	display: block;
}

.vcs-form-textarea {
	resize: vertical;
	min-height: 140px;
}

.vcs-form-submit {
	width: 100%;
	padding: 16px;
	font-size: 1rem;
	margin-top: 10px;
}

/* ========== MAP CONTAINER ========== */
.vcs-map-container {
	height: 100%;
	border-radius: var(--vcs-radius-md);
	overflow: hidden;
	border: 1px solid var(--vcs-divider);
}

.vcs-map {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.vcs-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.vcs-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.vcs-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.vcs-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;
}

/* ========== CONTACT INFO ========== */
.vcs-contact-info {
	display: grid;
	gap: 30px;
}

.vcs-contact-item {
	display: flex;
	gap: 20px;
}

.vcs-contact-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(0, 255, 198, 0.1),
		rgba(255, 61, 129, 0.1)
	);
	border-radius: var(--vcs-radius-sm);
	font-size: 1.5rem;
	color: var(--vcs-accent-teal);
	flex-shrink: 0;
}

.vcs-contact-details h4 {
	font-size: 1.1rem;
	margin-bottom: 8px;
	color: var(--vcs-text-heading);
}

.vcs-contact-details p {
	font-size: 0.95rem;
	color: var(--vcs-text-secondary);
	margin: 0;
}

/* ========== FOOTER ========== */
.vcs-footer {
	background: var(--vcs-bg-primary);
	border-top: 1px solid var(--vcs-divider);
	padding: 80px 20px 30px;
}

.vcs-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
	gap: 50px;
	margin-bottom: 50px;
}

.vcs-footer-col h3 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	color: var(--vcs-text-heading);
}

.vcs-footer-col p {
	font-size: 0.95rem;
	color: var(--vcs-text-secondary);
	line-height: 1.7;
}

.vcs-footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vcs-footer-link {
	color: var(--vcs-text-secondary);
	font-size: 0.95rem;
	transition: var(--vcs-transition);
}

.vcs-footer-link:hover {
	color: var(--vcs-accent-teal);
	padding-left: 5px;
}

.vcs-footer-contact-item {
	display: flex;
	align-items: start;
	gap: 10px;
	margin-bottom: 15px;
}

.vcs-footer-contact-item i {
	color: var(--vcs-accent-teal);
	margin-top: 3px;
}

.vcs-footer-contact-item p {
	margin: 0;
	font-size: 0.9rem;
}

.vcs-footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid var(--vcs-divider);
	color: var(--vcs-text-secondary);
	font-size: 0.9rem;
}

/* ========== COOKIE BANNER ========== */
.vcs-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--vcs-bg-secondary);
	border-top: 2px solid var(--vcs-accent-teal);
	padding: 20px;
	z-index: 999;
	transform: translateY(100%);
	transition: transform 0.4s ease-out;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.vcs-cookie-banner.vcs-show {
	transform: translateY(0);
}

.vcs-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.vcs-cookie-text {
	flex: 1;
}

.vcs-cookie-text p {
	font-size: 0.95rem;
	color: var(--vcs-text-secondary);
	margin: 0;
}

.vcs-cookie-text a {
	color: var(--vcs-accent-teal);
	text-decoration: underline;
}

.vcs-cookie-actions {
	display: flex;
	gap: 15px;
}

.vcs-cookie-btn {
	padding: 10px 24px;
	font-size: 0.9rem;
}

/* ========== ACCORDION ========== */
.vcs-accordion {
	background: var(--vcs-bg-secondary);
	border: 1px solid var(--vcs-divider);
	border-radius: var(--vcs-radius-md);
	overflow: hidden;
}

.vcs-accordion-item {
	border-bottom: 1px solid var(--vcs-divider);
}

.vcs-accordion-item:last-child {
	border-bottom: none;
}

.vcs-accordion-header {
	width: 100%;
	padding: 25px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: transparent;
	cursor: pointer;
	transition: var(--vcs-transition);
	text-align: left;
}

.vcs-accordion-header:hover {
	background: rgba(0, 255, 198, 0.05);
}

.vcs-accordion-header h4 {
	font-size: 1.1rem;
	color: var(--vcs-text-heading);
	margin: 0;
}

.vcs-accordion-icon {
	color: var(--vcs-accent-teal);
	font-size: 1.2rem;
	transition: transform var(--vcs-transition);
}

.vcs-accordion-item.vcs-active .vcs-accordion-icon {
	transform: rotate(45deg);
}

.vcs-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out;
}

.vcs-accordion-content-inner {
	padding: 1rem 30px 25px;
}

.vcs-accordion-content-inner p {
	font-size: 0.95rem;
	color: var(--vcs-text-secondary);
	line-height: 1.7;
}

/* ========== TABS ========== */
.vcs-tabs {
	margin: 40px 0;
}

.vcs-tab-buttons {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--vcs-divider);
	flex-wrap: wrap;
}

.vcs-tab-button {
	padding: 15px 30px;
	background: transparent;
	color: var(--vcs-text-secondary);
	font-weight: 500;
	font-size: 1rem;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: var(--vcs-transition);
}

.vcs-tab-button:hover {
	color: var(--vcs-text-primary);
}

.vcs-tab-button.vcs-active {
	color: var(--vcs-accent-teal);
	border-bottom-color: var(--vcs-accent-teal);
}

.vcs-tab-content {
	display: none;
	animation: vcs-fadeIn 0.4s ease-out;
}

.vcs-tab-content.vcs-active {
	display: block;
}

/* ========== CAROUSEL ========== */
.vcs-carousel {
	position: relative;
	overflow: hidden;
}

.vcs-carousel-track {
	display: flex;
	transition: transform 0.5s ease-out;
}

.vcs-carousel-slide {
	min-width: 100%;
	padding: 0 10px;
}

.vcs-carousel-controls {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.vcs-carousel-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--vcs-bg-secondary);
	border: 1px solid var(--vcs-divider);
	color: var(--vcs-accent-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	transition: var(--vcs-transition);
}

.vcs-carousel-btn:hover {
	background: var(--vcs-accent-teal);
	color: var(--vcs-bg-primary);
	box-shadow: var(--vcs-shadow-glow);
}

.vcs-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.vcs-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--vcs-divider);
	cursor: pointer;
	transition: var(--vcs-transition);
}

.vcs-carousel-dot.vcs-active {
	background: var(--vcs-accent-teal);
	box-shadow: 0 0 10px rgba(0, 255, 198, 0.5);
}

/* ========== ANIMATIONS ========== */
@keyframes vcs-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes vcs-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes vcs-slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes vcs-scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes vcs-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

/* Animation Classes */
.vcs-fade-in {
	animation: vcs-fadeIn 0.6s ease-out;
}

.vcs-fade-in-up {
	animation: vcs-fadeInUp 0.6s ease-out;
}

.vcs-slide-in-right {
	animation: vcs-slideInRight 0.6s ease-out;
}

.vcs-scale-in {
	animation: vcs-scaleIn 0.6s ease-out;
}

/* Scroll Animation Classes */
.vcs-scroll-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vcs-scroll-reveal.vcs-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ========== UTILITY CLASSES ========== */
.vcs-text-center {
	text-align: center;
}

.vcs-text-gradient {
	background: linear-gradient(
		135deg,
		var(--vcs-accent-teal),
		var(--vcs-accent-pink)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.vcs-mb-20 {
	margin-bottom: 20px;
}

.vcs-mb-40 {
	margin-bottom: 40px;
}

.vcs-mt-40 {
	margin-top: 40px;
}

.vcs-divider {
	height: 1px;
	background: var(--vcs-divider);
	margin: 60px 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
	.vcs-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.vcs-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.vcs-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 910px) {
	.vcs-mobile-toggle {
		display: flex;
	}

	.vcs-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 300px;
		height: 100vh;
		background: var(--vcs-bg-secondary);
		flex-direction: column;
		align-items: flex-start;
		padding: 100px 30px 30px;
		transition: left 0.4s ease-out;
		box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
		z-index: 999;
	}

	.vcs-nav.vcs-active {
		left: 0;
	}

	.vcs-nav-list {
		flex-direction: column;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	/* Typography */
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.vcs-hero-title {
		font-size: 2.8rem;
	}

	/* Header */

	.vcs-nav-link {
		font-size: 1.1rem;
	}

	/* Grids */
	.vcs-grid-3,
	.vcs-grid-2,
	.vcs-grid-4 {
		grid-template-columns: 1fr;
	}

	.vcs-form-wrapper {
		grid-template-columns: 1fr;
	}

	.vcs-footer-grid {
		grid-template-columns: 1fr;
	}

	/* Cookie Banner */
	.vcs-cookie-content {
		flex-direction: column;
	}

	.vcs-cookie-actions {
		width: 100%;
		flex-direction: column;
	}

	.vcs-cookie-btn {
		width: 100%;
	}

	/* Sections */
	.vcs-section {
		padding: 60px 0;
	}

	.vcs-hero {
		min-height: 80vh;
		padding: 100px 20px 60px;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.6rem;
	}

	.vcs-hero-title {
		font-size: 2.2rem;
	}

	.vcs-hero-subtitle {
		font-size: 1.1rem;
	}

	.vcs-btn {
		padding: 12px 24px;
		font-size: 0.95rem;
	}

	.vcs-card {
		padding: 30px 20px;
	}

	.vcs-section-title h2 {
		font-size: 2rem;
	}

	.vcs-logo {
		font-size: 1.2rem;
	}

	.vcs-nav {
		width: 260px;
	}

	.vcs-feature-card {
		padding: 2rem;
	}

	.vcs-tab-buttons {
		flex-direction: column;
	}
}

.vcs-legal-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 140px 20px 80px;
	position: relative;
}

/* Header Styles */
.vcs-legal-header {
	text-align: center;
	margin-bottom: 70px;
	padding-bottom: 40px;
	border-bottom: 1px solid #232a35;
	position: relative;
}

.vcs-legal-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
	letter-spacing: -1px;
	text-transform: uppercase;
	background: linear-gradient(135deg, #00ffc6 0%, #ff3d81 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: vcs-legal-glow 3s ease-in-out infinite;
}

@keyframes vcs-legal-glow {
	0%,
	100% {
		filter: drop-shadow(0 0 20px rgba(0, 255, 198, 0.3));
	}
	50% {
		filter: drop-shadow(0 0 30px rgba(255, 61, 129, 0.4));
	}
}

.vcs-legal-subtitle {
	font-size: 1rem;
	color: #9ba2ae;
	font-weight: 400;
	margin-top: 10px;
	letter-spacing: 0.5px;
}

.vcs-legal-accent-line {
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, #00ffc6, #ff3d81);
	margin: 30px auto 0;
	border-radius: 2px;
	box-shadow: 0 0 15px rgba(0, 255, 198, 0.5);
}

/* Content Area */
.vcs-legal-content {
	background-color: #141923;
	border-radius: 12px;
	padding: 50px 60px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	border: 1px solid #232a35;
	position: relative;
	overflow: hidden;
}

.vcs-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		#00ffc6,
		#ff3d81,
		transparent
	);
	opacity: 0.6;
}

/* Section Styles */
.vcs-legal-section {
	margin-bottom: 60px;
	padding: 30px;
	background-color: rgba(11, 14, 20, 0.5);
	border-radius: 8px;
	border-left: 3px solid #00ffc6;
	position: relative;
	transition: all 0.3s ease;
}

.vcs-legal-section:hover {
	border-left-color: #ff3d81;
	transform: translateX(5px);
	box-shadow: -5px 0 20px rgba(0, 255, 198, 0.1);
}

.vcs-legal-section:last-child {
	margin-bottom: 0;
}

.vcs-legal-section-number {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 4rem;
	font-weight: 800;
	color: #1a1f2b;
	line-height: 1;
	opacity: 0.3;
	pointer-events: none;
	font-family: 'Courier New', monospace;
}

.vcs-legal-section-title {
	font-size: 1.75rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #232a35;
	position: relative;
	z-index: 1;
}

.vcs-legal-section-title::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #00ffc6, #ff3d81);
}

.vcs-legal-text {
	font-size: 1rem;
	line-height: 1.8;
	color: #e8eaed;
	margin-bottom: 0;
	text-align: justify;
	position: relative;
	z-index: 1;
}

.vcs-legal-text strong {
	color: #00ffc6;
	font-weight: 600;
}

/* Footer Styles */
.vcs-legal-footer {
	margin-top: 80px;
	padding-top: 40px;
	border-top: 1px solid #232a35;
	text-align: center;
}

.vcs-legal-footer-text {
	color: #9ba2ae;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.vcs-legal-footer .vcs-legal-accent-line {
	margin-top: 20px;
	width: 80px;
}

/* Responsive Design - Tablets */
@media (max-width: 768px) {
	.vcs-legal-title {
		font-size: 2rem;
	}

	.vcs-legal-content {
		padding: 35px 30px;
		border-radius: 8px;
	}

	.vcs-legal-section {
		padding: 25px 20px;
		margin-bottom: 40px;
	}

	.vcs-legal-section-number {
		font-size: 3rem;
		top: 15px;
		right: 20px;
	}

	.vcs-legal-section-title {
		font-size: 1.5rem;
		margin-bottom: 18px;
	}

	.vcs-legal-text {
		font-size: 0.95rem;
		line-height: 1.75;
	}
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
	.vcs-legal-body {
		font-size: 15px;
	}

	.vcs-legal-header {
		margin-bottom: 50px;
		padding-bottom: 30px;
	}

	.vcs-legal-title {
		font-size: 1.3rem;
		letter-spacing: -0.5px;
	}

	.vcs-legal-subtitle {
		font-size: 0.9rem;
	}

	.vcs-legal-accent-line {
		width: 70px;
		margin-top: 25px;
	}

	.vcs-legal-content {
		padding: 25px 20px;
		border-radius: 6px;
	}

	.vcs-legal-section {
		padding: 20px 15px;
		margin-bottom: 35px;
		border-left-width: 2px;
	}

	.vcs-legal-section:hover {
		transform: translateX(3px);
	}

	.vcs-legal-section-number {
		font-size: 2.5rem;
		top: 12px;
		right: 15px;
		opacity: 0.2;
	}

	.vcs-legal-section-title {
		font-size: 1.3rem;
		margin-bottom: 15px;
		padding-bottom: 10px;
		padding-right: 50px;
	}

	.vcs-legal-section-title::after {
		width: 40px;
	}

	.vcs-legal-text {
		font-size: 0.9rem;
		line-height: 1.7;
		text-align: left;
	}

	.vcs-legal-footer {
		margin-top: 60px;
		padding-top: 30px;
	}

	.vcs-legal-footer-text {
		font-size: 0.85rem;
	}
}
