:root {
	--gv-bg-primary: #0f172a;
	--gv-bg-secondary: #1e293b;
	--gv-bg-card: #334155;
	--gv-accent-primary: #6366f1;
	--gv-accent-secondary: #22d3ee;
	--gv-accent-tertiary: #facc15;
	--gv-text-primary: #f1f5f9;
	--gv-text-secondary: #cbd5e1;
	--gv-text-muted: #94a3b8;
	--gv-border: #475569;
	--gv-shadow: rgba(0, 0, 0, 0.3);
	--gv-glow: rgba(99, 102, 241, 0.3);
}

/* Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--gv-bg-primary);
	color: var(--gv-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.gv-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.gv-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
.gv-heading-primary {
	font-family: 'Orbitron', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--gv-text-primary);
	text-shadow: 0 0 20px var(--gv-glow);
	margin-bottom: 1rem;
}

.gv-heading-secondary {
	font-family: 'Orbitron', sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--gv-accent-primary);
	margin-bottom: 1.5rem;
	text-shadow: 0 0 10px var(--gv-glow);
}

.gv-heading-tertiary {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--gv-text-primary);
	margin-bottom: 1rem;
}

.gv-text-large {
	font-size: 1.25rem;
	color: var(--gv-text-secondary);
	margin-bottom: 1.5rem;
}

.gv-text-body {
	font-size: 1rem;
	color: var(--gv-text-secondary);
	margin-bottom: 1rem;
	line-height: 1.8;
}

.gv-text-small {
	font-size: 0.875rem;
	color: var(--gv-text-muted);
}

/* Header Styles */
.gv-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 2px solid var(--gv-accent-primary);
	box-shadow: 0 4px 20px var(--gv-shadow);
	z-index: 1000;
	transition: all 0.3s ease;
}

.gv-header.scrolled {
	background: rgba(15, 23, 42, 0.98);
	box-shadow: 0 8px 32px var(--gv-shadow);
}

.gv-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.gv-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: 'Orbitron', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gv-accent-primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.gv-logo:hover {
	color: var(--gv-accent-secondary);
	text-shadow: 0 0 15px var(--gv-glow);
}

.gv-logo-icon {
	font-size: 1.8rem;
	color: var(--gv-accent-tertiary);
}

.gv-nav {
	display: flex;
}

.gv-nav-link {
	color: var(--gv-text-secondary);
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.gv-nav-link:hover,
.gv-nav-link.active {
	color: var(--gv-accent-primary);
	background: rgba(99, 102, 241, 0.1);
	box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.gv-nav-link::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--gv-accent-primary);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.gv-nav-link:hover::before,
.gv-nav-link.active::before {
	width: 100%;
}

.gv-social-links {
	display: flex;
	gap: 1rem;
}

.gv-social-link {
	color: var(--gv-text-muted);
	font-size: 1.2rem;
	padding: 0.5rem;
	border-radius: 50%;
	transition: all 0.3s ease;
	text-decoration: none;
}

.gv-social-link:hover {
	color: var(--gv-accent-secondary);
	background: rgba(34, 211, 238, 0.1);
	transform: translateY(-2px);
}

/* Mobile Menu */
.gv-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--gv-text-primary);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
}

.gv-mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: var(--gv-bg-secondary);
	border-left: 2px solid var(--gv-accent-primary);
	transition: right 0.3s ease;
	z-index: 1001;
	padding: 2rem;
}

.gv-mobile-menu.active {
	right: 0;
}

.gv-mobile-menu-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	color: var(--gv-text-primary);
	font-size: 1.5rem;
	cursor: pointer;
}

.gv-mobile-nav {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.gv-mobile-nav-link {
	color: var(--gv-text-secondary);
	text-decoration: none;
	padding: 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-weight: 500;
}

.gv-mobile-nav-link:hover {
	color: var(--gv-accent-primary);
	background: rgba(99, 102, 241, 0.1);
}

/* Hero Section */
.gv-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--gv-bg-primary) 0%,
		var(--gv-bg-secondary) 100%
	);
	position: relative;
	overflow: hidden;
}

.gv-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/gv-hero.webp') top/cover;
	opacity: 0.3;
}

@keyframes gv-grid-move {
	0% {
		transform: translateX(0) translateY(0);
	}
	100% {
		transform: translateX(10px) translateY(10px);
	}
}

.gv-hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
	max-width: 800px;
}

.gv-hero-subtitle {
	font-size: 1.5rem;
	color: var(--gv-text-secondary);
	margin-bottom: 2rem;
}

.gv-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 2rem;
	align-items: center;
	flex-wrap: wrap;
}

/* Buttons */
.gv-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gv-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: left 0.5s;
}

.gv-btn:hover::before {
	left: 100%;
}

.gv-btn-primary {
	background: linear-gradient(
		135deg,
		var(--gv-accent-primary),
		var(--gv-accent-secondary)
	);
	color: white;
	box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
}

.gv-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
}

.gv-btn-secondary {
	background: transparent;
	color: var(--gv-accent-primary);
	border: 2px solid var(--gv-accent-primary);
}

.gv-btn-secondary:hover {
	background: var(--gv-accent-primary);
	color: white;
	transform: translateY(-2px);
}

/* Sections */
.gv-section {
	padding: 5rem 0;
	position: relative;
}

.gv-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.gv-section-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 2.5rem;
	color: var(--gv-accent-primary);
	margin-bottom: 1rem;
	text-align: center;
}

.gv-section-subtitle {
	font-size: 1.2rem;
	color: var(--gv-text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* Cards */
.gv-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.gv-card {
	background: var(--gv-bg-secondary);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid var(--gv-border);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--gv-accent-primary),
		var(--gv-accent-secondary)
	);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.gv-card:hover::before {
	transform: scaleX(1);
}

.gv-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: var(--gv-accent-primary);
}

.gv-card-icon {
	font-size: 2.5rem;
	color: var(--gv-accent-tertiary);
	margin-bottom: 1rem;
}

.gv-card-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.3rem;
	color: var(--gv-text-primary);
	margin-bottom: 1rem;
}

.gv-card-text {
	color: var(--gv-text-secondary);
	line-height: 1.6;
}

/* Testimonials */
.gv-testimonials {
	background: var(--gv-bg-secondary);
	border-radius: 16px;
	padding: 3rem;
	margin: 3rem 0;
}

.gv-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
}

.gv-testimonial {
	background: var(--gv-bg-primary);
	border-radius: 12px;
	padding: 1.5rem;
	border-left: 4px solid var(--gv-accent-secondary);
}

.gv-testimonial-text {
	font-style: italic;
	color: var(--gv-text-secondary);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.gv-testimonial-author {
	font-weight: 600;
	color: var(--gv-accent-primary);
}

/* Form Styles */
.gv-form-section {
	background: var(--gv-bg-secondary);
	border-radius: 16px;
	padding: 3rem;
	margin: 3rem 0;
}

.gv-form {
	display: grid;
	gap: 1.5rem;
	max-width: 600px;
	margin: 0 auto;
}

.gv-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.gv-form-label {
	font-weight: 500;
	color: var(--gv-text-primary);
}

.gv-form-input,
.gv-form-textarea {
	padding: 1rem;
	border: 2px solid var(--gv-border);
	border-radius: 8px;
	background: var(--gv-bg-primary);
	color: var(--gv-text-primary);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.gv-form-input:focus,
.gv-form-textarea:focus {
	outline: none;
	border-color: var(--gv-accent-primary);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.gv-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.gv-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.gv-form-input.error,
.gv-form-textarea.error {
	border-color: #ef4444;
}

/* Footer */
.gv-footer {
	background: var(--gv-bg-secondary);
	border-top: 2px solid var(--gv-accent-primary);
	padding: 3rem 0 1rem;
}

.gv-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.gv-footer-section h3 {
	font-family: 'Orbitron', sans-serif;
	color: var(--gv-accent-primary);
	margin-bottom: 1rem;
}

.gv-footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.gv-footer-link {
	color: var(--gv-text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.gv-footer-link:hover {
	color: var(--gv-accent-primary);
}

.gv-footer-bottom {
	border-top: 1px solid var(--gv-border);
	padding-top: 1rem;
	text-align: center;
	color: var(--gv-text-muted);
}

/* Cookie Popup */
.gv-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: var(--gv-bg-secondary);
	border-top: 2px solid var(--gv-accent-primary);
	padding: 1.5rem;
	box-shadow: 0 -8px 32px var(--gv-shadow);
	z-index: 1000;
	transition: bottom 0.3s ease;
}

.gv-cookie-popup.show {
	bottom: -1px;
}

.gv-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.gv-cookie-text {
	color: var(--gv-text-secondary);
}

.gv-cookie-link {
	color: var(--gv-accent-primary);
	text-decoration: none;
}

.gv-cookie-link:hover {
	text-decoration: underline;
}

/* Animations */
@keyframes gv-fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gv-slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes gv-slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes gv-glow {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
	}
	50% {
		box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
	}
}

.gv-animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.gv-animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* History Page Styles */
.gv-timeline {
	position: relative;
	padding: 2rem 0;
}

.gv-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		180deg,
		var(--gv-accent-primary),
		var(--gv-accent-secondary)
	);
	transform: translateX(-50%);
}

.gv-timeline-item {
	display: flex;
	margin-bottom: 3rem;
	position: relative;
}

.gv-timeline-item:nth-child(odd) {
	justify-content: flex-end;
}

.gv-timeline-item:nth-child(odd) .gv-timeline-content {
	margin-right: 3rem;
	text-align: right;
}

.gv-timeline-item:nth-child(even) .gv-timeline-content {
	margin-left: 3rem;
}

.gv-timeline-content {
	background: var(--gv-bg-secondary);
	border-radius: 12px;
	padding: 2rem;
	max-width: 450px;
	border: 1px solid var(--gv-border);
	position: relative;
}

.gv-timeline-date {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: var(--gv-accent-primary);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-weight: 600;
	z-index: 2;
}

.gv-timeline-title {
	font-family: 'Orbitron', sans-serif;
	color: var(--gv-accent-primary);
	margin-bottom: 1rem;
}

.gv-timeline-text {
	color: var(--gv-text-secondary);
	line-height: 1.6;
}

/* Mechanics Page Styles */
.gv-mechanics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.gv-mechanic-card {
	background: var(--gv-bg-secondary);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid var(--gv-border);
	position: relative;
	overflow: hidden;
}

.gv-mechanic-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--gv-accent-primary),
		var(--gv-accent-secondary)
	);
}

.gv-mechanic-icon {
	font-size: 3rem;
	color: var(--gv-accent-tertiary);
	margin-bottom: 1.5rem;
}

.gv-mechanic-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.5rem;
	color: var(--gv-text-primary);
	margin-bottom: 1rem;
}

.gv-mechanic-description {
	color: var(--gv-text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.gv-mechanic-features {
	list-style: none;
}

.gv-mechanic-features li {
	color: var(--gv-text-secondary);
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--gv-border);
	position: relative;
	padding-left: 1.5rem;
}

.gv-mechanic-features li::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: var(--gv-accent-primary);
}

/* Esports Page Styles */
.gv-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.gv-stat-card {
	background: var(--gv-bg-secondary);
	border-radius: 12px;
	padding: 1.5rem;
	text-align: center;
	border: 1px solid var(--gv-border);
	transition: all 0.3s ease;
}

.gv-stat-card:hover {
	transform: translateY(-5px);
	border-color: var(--gv-accent-primary);
}

.gv-stat-number {
	font-family: 'Orbitron', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--gv-accent-primary);
	display: block;
}

.gv-stat-label {
	color: var(--gv-text-secondary);
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

.gv-teams-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.gv-team-card {
	background: var(--gv-bg-secondary);
	border-radius: 12px;
	padding: 1.5rem;
	border: 1px solid var(--gv-border);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.gv-team-logo {
	width: 60px;
	height: 60px;
	background: var(--gv-accent-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.5rem;
	color: white;
	font-weight: 700;
}

.gv-team-info h3 {
	color: var(--gv-text-primary);
	margin-bottom: 0.5rem;
}

.gv-team-game {
	color: var(--gv-accent-secondary);
	font-size: 0.9rem;
}

/* Reading Progress Bar */
.gv-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--gv-accent-primary),
		var(--gv-accent-secondary)
	);
	z-index: 1001;
	transition: width 0.3s ease;
}

/* Map Section */
.gv-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.gv-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.gv-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.gv-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;
}

.gv-contact-hero {
	min-height: 70vh;
	display: flex;
	align-items: center;
	background: linear-gradient(
		135deg,
		var(--gv-bg-primary) 0%,
		var(--gv-bg-secondary) 100%
	);
	position: relative;
	overflow: hidden;
	padding-top: 100px;
	padding-bottom: 2rem;
}

.gv-contact-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(99,102,241,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
	animation: gv-grid-move 25s linear infinite;
}

.gv-contact-hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.gv-hero-icon {
	color: var(--gv-accent-tertiary);
	margin-right: 1rem;
	text-shadow: 0 0 20px var(--gv-glow);
}

.gv-contact-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.gv-stat-item {
	text-align: center;
	background: rgba(30, 41, 59, 0.5);
	border-radius: 16px;
	padding: 1.5rem;
	border: 1px solid var(--gv-border);
	backdrop-filter: blur(10px);
	min-width: 120px;
}

.gv-stat-number {
	font-family: 'Orbitron', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--gv-accent-primary);
	display: block;
	text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.gv-stat-label {
	color: var(--gv-accent-secondary);
	font-size: 1rem;
	font-weight: 600;
	margin: 0.5rem 0;
}

.gv-stat-desc {
	color: var(--gv-text-muted);
	font-size: 0.875rem;
}

/* Contact Information Grid */
.gv-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.gv-contact-info-card {
	background: var(--gv-bg-secondary);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid var(--gv-border);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gv-contact-info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--gv-accent-primary),
		var(--gv-accent-secondary)
	);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.gv-contact-info-card:hover::before {
	transform: scaleX(1);
}

.gv-contact-info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: var(--gv-accent-primary);
}

.gv-contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--gv-accent-primary),
		var(--gv-accent-secondary)
	);
	border-radius: 50%;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: white;
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.gv-contact-info-card h3 {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.3rem;
	color: var(--gv-text-primary);
	margin-bottom: 1rem;
}

.gv-contact-details {
	color: var(--gv-text-secondary);
	line-height: 1.6;
}

.gv-contact-details a {
	color: var(--gv-accent-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.gv-contact-details a:hover {
	color: var(--gv-accent-secondary);
	text-decoration: underline;
}

.gv-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--gv-accent-primary);
	text-decoration: none;
	margin-top: 1rem;
	padding: 0.5rem 1rem;
	border: 1px solid var(--gv-accent-primary);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.gv-contact-link:hover {
	background: var(--gv-accent-primary);
	color: white;
	transform: translateY(-2px);
}

/* Contact Form Section */
.gv-contact-form-section {
	background: var(--gv-bg-secondary);
	border-radius: 20px;
	margin: 3rem 20px;
	overflow: hidden;
	border: 1px solid var(--gv-border);
}

.gv-contact-form-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	padding: 3rem;
	align-items: start;
}

.gv-contact-form-content {
	max-width: 100%;
}

.gv-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.gv-form-group {
	margin-bottom: 1.5rem;
}

.gv-form-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
	color: var(--gv-text-primary);
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.gv-form-label i {
	color: var(--gv-accent-primary);
	width: 16px;
}

.gv-form-input,
.gv-form-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid var(--gv-border);
	border-radius: 8px;
	background: var(--gv-bg-primary);
	color: var(--gv-text-primary);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.gv-form-input:focus,
.gv-form-textarea:focus {
	outline: none;
	border-color: var(--gv-accent-primary);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
	background: rgba(15, 23, 42, 0.8);
}

.gv-form-textarea {
	resize: vertical;
	min-height: 120px;
	font-family: 'Inter', sans-serif;
}

.gv-form-input.error,
.gv-form-textarea.error {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.gv-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: block;
}

.gv-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: var(--gv-text-secondary);
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.5;
}

.gv-checkbox {
	display: none;
}

.gv-checkbox-custom {
	width: 20px;
	height: 20px;
	border: 2px solid var(--gv-border);
	border-radius: 4px;
	background: var(--gv-bg-primary);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	flex-shrink: 0;
}

.gv-checkbox:checked + .gv-checkbox-custom {
	background: var(--gv-accent-primary);
	border-color: var(--gv-accent-primary);
}

.gv-checkbox:checked + .gv-checkbox-custom::after {
	content: '✓';
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.gv-btn-large {
	padding: 1.25rem 2.5rem;
	font-size: 1.1rem;
	width: 100%;
	justify-content: center;
	margin-top: 1rem;
}

/* Map Section */
.gv-contact-map-section {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.gv-contact-map-section h3 {
	color: var(--gv-text-primary);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.gv-contact-map-section h3 i {
	color: var(--gv-accent-primary);
}

.gv-map-container {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	margin-bottom: 1.5rem;
	height: 100%;
	border: 1px solid var(--gv-border);
}

.gv-map {
	width: 100%;

	border: none;
	filter: grayscale(100%) invert(92%) contrast(83%);
	transition: filter 0.3s ease;
}

.gv-map:hover {
	filter: grayscale(50%) invert(92%) contrast(83%);
}

.gv-map-description {
	color: var(--gv-text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Services Grid */
.gv-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.gv-service-card {
	background: var(--gv-bg-secondary);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid var(--gv-border);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gv-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--gv-accent-primary),
		var(--gv-accent-secondary)
	);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.gv-service-card:hover::before {
	transform: scaleX(1);
}

.gv-service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: var(--gv-accent-primary);
}

.gv-service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--gv-accent-tertiary),
		var(--gv-accent-secondary)
	);
	border-radius: 50%;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: var(--gv-bg-primary);
	box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
}

.gv-service-card h3 {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.3rem;
	color: var(--gv-text-primary);
	margin-bottom: 1rem;
}

.gv-service-card p {
	color: var(--gv-text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.gv-service-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--gv-accent-primary);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.gv-service-link:hover {
	color: var(--gv-accent-secondary);
	transform: translateX(5px);
}

/* Working Hours Section */
.gv-working-hours-section {
	background: var(--gv-bg-secondary);
	border-radius: 20px;
	margin: 3rem 20px;
	border: 1px solid var(--gv-border);
}

.gv-working-hours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.gv-hours-card {
	background: var(--gv-bg-primary);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid var(--gv-border);
	transition: all 0.3s ease;
}

.gv-hours-card:hover {
	border-color: var(--gv-accent-primary);
	box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
}

.gv-hours-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--gv-accent-primary),
		var(--gv-accent-secondary)
	);
	border-radius: 50%;
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
	color: white;
	box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.gv-hours-card h3 {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.2rem;
	color: var(--gv-text-primary);
	margin-bottom: 1.5rem;
}

.gv-hours-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.gv-hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--gv-border);
}

.gv-hours-item:last-child {
	border-bottom: none;
}

.gv-hours-item span:first-child {
	color: var(--gv-text-secondary);
	font-size: 0.95rem;
}

.gv-hours-item span:last-child {
	color: var(--gv-accent-primary);
	font-weight: 600;
	font-size: 0.95rem;
}

/* FAQ Section */
.gv-faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}

.gv-faq-item {
	background: var(--gv-bg-secondary);
	border-radius: 12px;
	border: 1px solid var(--gv-border);
	overflow: hidden;
	transition: all 0.3s ease;
}

.gv-faq-item:hover {
	border-color: var(--gv-accent-primary);
	box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
}

.gv-faq-question {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	cursor: pointer;
	color: var(--gv-text-primary);
	font-weight: 500;
	transition: all 0.3s ease;
}

.gv-faq-question:hover {
	background: rgba(99, 102, 241, 0.05);
}

.gv-faq-question i {
	color: var(--gv-accent-primary);
	transition: transform 0.3s ease;
}

.gv-faq-item.active .gv-faq-question i {
	transform: rotate(90deg);
}

.gv-faq-answer {
	padding: 0 1.5rem 1.5rem;
	color: var(--gv-text-secondary);
	line-height: 1.6;
	border-top: 1px solid var(--gv-border);
	background: rgba(30, 41, 59, 0.3);
}

@media (max-width: 1024px) {
	.gv-contact-form-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gv-contact-stats {
		gap: 2rem;
	}

	.gv-faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.gv-contact-stats {
		gap: 1.5rem;
	}

	.gv-stat-item {
		padding: 1rem;
		min-width: 100px;
	}

	.gv-stat-number {
		font-size: 2rem;
	}

	.gv-contact-form-wrapper {
		padding: 2rem;
	}

	.gv-form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.gv-working-hours-grid {
		grid-template-columns: 1fr;
	}

	.gv-contact-info-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.gv-services-grid {
		grid-template-columns: 1fr;
	}

	.gv-map {
		height: 250px;
	}

	.gv-faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.gv-contact-stats {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.gv-stat-item {
		width: 100%;
		max-width: 200px;
	}

	.gv-contact-form-wrapper {
		padding: 1.5rem;
	}

	.gv-contact-info-card {
		padding: 1.5rem;
	}

	.gv-hours-card {
		padding: 1.5rem;
	}

	.gv-service-card {
		padding: 1.5rem;
	}

	.gv-faq-question {
		padding: 1rem;
	}

	.gv-faq-answer {
		padding: 0 1rem 1rem;
	}
}

/* Responsive Design */
@media (max-width: 1140px) {
	.gv-timeline::before {
		display: none;
	}

	.gv-timeline-item {
		justify-content: center !important;
	}

	.gv-timeline-item .gv-timeline-content {
		margin-left: 0 !important;
		margin-right: 0 !important;
		text-align: left !important;
		width: 100%;
	}

	.gv-section-title {
		text-align: center;
	}

	.gv-timeline-date {
		left: 50%;
		top: 0px;
	}
}

@media (max-width: 990px) {
	.gv-nav {
		display: none;
	}

	.gv-mobile-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	.gv-heading-primary {
		font-size: 2.5rem;
	}

	.gv-heading-secondary {
		font-size: 2rem;
	}

	.gv-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.gv-cards-grid {
		grid-template-columns: 1fr;
	}

	.gv-cookie-content {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.gv-container {
		padding: 0 15px;
	}

	.gv-testimonials-grid,
	.gv-teams-list,
	.gv-mechanics-grid,
	.gv-services-grid,
	.gv-working-hours-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.gv-hours-item {
		flex-direction: column;
	}
	.gv-heading-primary {
		font-size: 2rem;
	}

	.gv-section-title {
		font-size: 1.5rem;
		word-wrap: break-word;
	}

	.gv-section {
		padding: 3rem 0;
	}

	.gv-social-links {
		display: none;
	}

	.gv-card {
		padding: 1.5rem;
	}

	.gv-form-section {
		padding: 2rem;
	}

	.gv-testimonials {
		padding: 0;
	}
}

/* Dark Theme Enhancements */
.gv-glow-effect {
	animation: gv-glow 2s ease-in-out infinite alternate;
}

.gv-neon-border {
	border: 1px solid var(--gv-accent-primary);
	box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.gv-gradient-text {
	background: linear-gradient(
		135deg,
		var(--gv-accent-primary),
		var(--gv-accent-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--gv-bg-secondary);
}

::-webkit-scrollbar-thumb {
	background: var(--gv-accent-primary);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gv-accent-secondary);
}

.gv-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 6rem 2rem 4rem;
	min-height: 100vh;
}

.gv-legal-header {
	text-align: center;
	margin-bottom: 4rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid #6366f1;
	position: relative;
}

.gv-legal-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background: linear-gradient(90deg, #22d3ee, #facc15);
	box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.gv-legal-title {
	font-family: 'Orbitron', monospace;
	font-size: 3rem;
	font-weight: 700;
	color: #f1f5f9;
	margin-bottom: 1rem;
	text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.gv-legal-title i {
	color: #6366f1;
	filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.7));
}

.gv-legal-date {
	font-size: 1.1rem;
	color: #22d3ee;
	font-weight: 500;
}

.gv-legal-content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.gv-legal-section {
	background: rgba(30, 41, 59, 0.8);
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid rgba(99, 102, 241, 0.2);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.gv-legal-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		#6366f1,
		#22d3ee,
		transparent
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gv-legal-section:hover {
	border-color: rgba(99, 102, 241, 0.4);
	box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
	transform: translateY(-2px);
}

.gv-legal-section:hover::before {
	opacity: 1;
}

.gv-legal-section-title {
	font-family: 'Orbitron', monospace;
	font-size: 1.5rem;
	font-weight: 600;
	color: #f1f5f9;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.gv-legal-section-title i {
	color: #facc15;
	font-size: 1.2rem;
	filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.6));
}

.gv-legal-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #cbd5e1;
	text-align: justify;
	margin-bottom: 0;
}

.gv-legal-contact {
	margin-top: 2rem;
	padding: 2rem;
	background: rgba(15, 23, 42, 0.6);
	border-radius: 15px;
	border: 1px solid rgba(34, 211, 238, 0.2);
	position: relative;
}

.gv-legal-contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(99, 102, 241, 0.05) 0%,
		rgba(34, 211, 238, 0.05) 50%,
		rgba(250, 204, 21, 0.05) 100%
	);
	border-radius: 15px;
	z-index: -1;
}

.gv-legal-contact-title {
	font-family: 'Orbitron', monospace;
	font-size: 1.2rem;
	font-weight: 600;
	color: #22d3ee;
	margin-bottom: 1rem;
	text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.gv-legal-contact-info p {
	margin: 0.5rem 0;
	color: #f1f5f9;
	line-height: 1.6;
}

.gv-legal-contact-info a {
	color: #6366f1;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.gv-legal-contact-info a::before {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	bottom: -2px;
	left: 0;
	background: linear-gradient(90deg, #6366f1, #22d3ee);
	transition: width 0.3s ease;
}

.gv-legal-contact-info a:hover {
	color: #22d3ee;
	text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.gv-legal-contact-info a:hover::before {
	width: 100%;
}

/* Scrollbar for legal pages */
.gv-legal-container::-webkit-scrollbar {
	width: 8px;
}

.gv-legal-container::-webkit-scrollbar-track {
	background: rgba(30, 41, 59, 0.3);
	border-radius: 4px;
}

.gv-legal-container::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #6366f1, #22d3ee);
	border-radius: 4px;
}

.gv-legal-container::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #22d3ee, #facc15);
}

/* Legal pages responsive design */
@media (max-width: 768px) {
	.gv-legal-title {
		font-size: 2rem;
		flex-direction: column;
		gap: 0.5rem;
	}

	.gv-legal-container {
		padding: 6rem 20px 4rem;
	}

	.gv-legal-section {
		padding: 1.5rem;
		border-radius: 15px;
	}

	.gv-legal-section-title {
		font-size: 1.2rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.gv-legal-text {
		font-size: 0.9rem;
		text-align: left;
	}

	.gv-legal-contact {
		padding: 1.5rem;
	}

	.gv-legal-contact-title {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.gv-legal-title {
		font-size: 1.5rem;
	}

	.gv-legal-section {
		padding: 1rem;
		margin: 0;
	}

	.gv-legal-section-title {
		font-size: 1rem;
	}

	.gv-legal-text {
		font-size: 0.85rem;
		line-height: 1.6;
	}

	.gv-legal-contact {
		padding: 1rem;
		margin: 0 0.5rem;
	}
}
