:root {
	--bg-color: #121422;
	--text-color: #ffffff;
	--section-padding: 2rem;
	--hero-gap: 4rem;
	--gradient-end: #000714;
	--gradient-start: #000e23;
	--primary-gradient: linear-gradient(to right, #007bdc, #00a9dc);
	--hover-bg: rgba(255, 255, 255, 0.1);
	--card-bg: rgba(255, 255, 255, 0.05);
	--card-hover: rgba(194, 121, 255, 0.1);
}

html {
	scroll-behavior: smooth;
}

body {
	background: rgba(0, 12, 26);
	color: var(--text-color);
	font-family: 'Space Grotesk', system-ui, sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	min-height: 100vh;
	letter-spacing: 0.01em;
}

.menu {
	background-color: rgba(0, 8, 17, 0.8);
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.menu-brand {
	font-size: 1.5rem;
	font-weight: bold;
	background: linear-gradient(to right, #007bdc, #00a9dc);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 2rem;
}

.menu a {
	color: var(--text-color);
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.menu a:hover {
	background-color: var(--hover-bg);
}

.section {
	padding: var(--section-padding) 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

#home.section {
	min-height: 60vh;
}

#contact.section {
	background: radial-gradient(ellipse at bottom, rgba(104, 213, 255, 0.67) 0%, transparent 70%);
	padding: 4rem 2rem;
}

#about.section {
	background: none;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.about-content h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	background: linear-gradient(to right, #007bdc, #00a9dc);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.about-content p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	max-width: 700px;
	margin: 0 auto;
}

.container {
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin: 2rem -2rem 0;
	position: relative;
	overflow: hidden;
	height: 80vh;
	width: calc(100% + 4rem);
}

.service-card {
	background-color: var(--card-bg);
	padding: 3rem;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: skew(-15deg);
}

.service-card:nth-child(1) {
	background: linear-gradient(45deg, rgba(0, 12, 26) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.service-card:nth-child(2) {
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 12, 26) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.service-card:nth-child(3) {
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 12, 26) 100%);
}

.service-card:hover {
	background-color: var(--card-hover);
}

.service-card h3,
.service-card p {
	transform: skew(15deg);
}

.service-card h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

h1,
h2,
h3 {
	margin-top: 0;
}

h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.header {
	text-align: center;
	padding: 4rem 2rem;
}

.blog-posts {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr;
	position: relative;
	min-height: 40vh;
	align-items: center;
}

.hero-image {
	position: absolute;
	left: -5%;
	top: 30%;
	transform: translateY(-50%);
	z-index: 0;
	opacity: 0.1;
}

.hero-image img {
	max-width: 75%;
	height: auto;
}

.hero-text {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin-left: 20%;
	padding: 2rem;
}

.hero-text h1 {
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.hero-text .subtext {
	font-size: 1.25rem;
	opacity: 0.8;
}

@media (max-width: 768px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-text {
		max-width: 100%;
		margin-left: 0;
		padding: 1rem;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}

	.hero-image {
		left: 0;
		right: 0;
		top: 20%;
		transform: none;
		text-align: center;
	}

	.hero-image img {
		max-width: 100%;
	}

	.services-grid {
		grid-template-columns: 1fr;
		height: auto;
		margin: 0;
		width: 100%;
	}

	.service-card {
		transform: none !important;
		padding: 2rem;
	}

	.service-card h3,
	.service-card p {
		transform: none !important;
	}

	.about-content {
		padding: 1rem;
	}

	.about-content h2 {
		font-size: 2rem;
	}

	.contact-form {
		padding: 1rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.cookie-consent {
		bottom: 0;
		right: 0;
		left: 0;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		padding: 1rem;
		transform: translateY(0);
		box-sizing: border-box;
	}

	.cookie-consent-buttons {
		flex-direction: row;
		justify-content: flex-end;
		gap: 1rem;
	}

	.cookie-consent button {
		width: auto;
		padding: 0.5rem 1rem;
	}
}

.contact-header {
	text-align: center;
	margin-bottom: 3rem;
}

.contact-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(to right, #007bdc, #00a9dc);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.contact-header p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 600px;
	margin: 0 auto;
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	padding: 2.5rem;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.form-group {
	position: relative;
	margin-bottom: 2.5rem;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 1rem;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: var(--text-color);
	font-size: 1rem;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.form-group input[type="email"] {
	width: 100%;
}

.form-group input::placeholder,
.form-group select:invalid {
	color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: rgba(0, 123, 220, 0.5);
	background-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 2px rgba(0, 123, 220, 0.1);
}

.form-group select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1.5em;
	cursor: pointer;
	padding-right: 2.5rem;
}

.form-group select option {
	background-color: rgba(0, 12, 26, 0.95);
	color: var(--text-color);
}

.submit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: linear-gradient(45deg, #007bdc, #00a9dc);
	color: var(--text-color);
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	margin-top: 1rem;
}

.submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.submit-btn:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 123, 220, 0.3);
}

.submit-btn:hover:not(:disabled) .submit-icon {
	transform: translateX(4px);
}

.submit-icon {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

@media (max-width: 768px) {

	.form-group input,
	.form-group select {
		width: 100%;
		padding: 1rem;
		box-sizing: border-box;
	}

	.form-group input[type="email"] {
		width: 100%;
	}

	.form-group select {
		padding-right: 2.5rem;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 1rem;
	}

	.contact-form {
		padding: 1.5rem;
		width: 100%;
		box-sizing: border-box;
	}
}

.footer {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 1.5rem 0;
	text-align: center;
}

.footer p {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
}

main {
	margin-top: 4rem;
}

/* Form Validation Styles */
.form-group.error input {
	border-color: #ff4444;
	animation: shake 0.5s ease-in-out;
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	25% {
		transform: translateX(-5px);
	}

	75% {
		transform: translateX(5px);
	}
}

.error-message {
	position: absolute;
	left: 0;
	right: 0;
	color: #ff4444;
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	background-color: rgba(255, 68, 68, 0.1);
	border-radius: 2px;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	animation: fadeIn 0.2s ease-in-out;
	z-index: 1;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translate(-50%, 20px);
	}

	to {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

.success-message {
	background-color: rgba(46, 76, 166, 0.07);

	border-radius: 8px;
	padding: 2rem;
	text-align: center;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}

.success-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.success-content h2 {
	background: linear-gradient(to right, #007bdc, #00a9dc);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: 2rem;
	margin-bottom: 1rem;
}

.success-content p {
	color: #ffffff;
	font-size: 1.1rem;
	margin: 0;
}

/* Cookie Consent Styles */
.cookie-consent {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	transform: translateY(100%);
	background: rgba(0, 0, 0, 0.82);
	color: white;
	padding: 1.5rem;
	border-radius: 8px;
	max-width: 400px;
	width: 90%;
	z-index: 1001;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
}

.cookie-consent.show {
	opacity: 1;
	transform: translateY(0);
}

.cookie-consent-content {
	margin-bottom: 1.5rem;
}

.cookie-consent-content h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.cookie-consent-content p {
	margin-bottom: 1rem;
	line-height: 1.5;
	font-size: 0.95rem;
}

.cookie-consent-buttons {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
}

.cookie-consent button {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.2s ease;
	font-size: 0.9rem;
}

.cookie-consent-accept {
	background: #4CAF50;
	color: white;
}

.cookie-consent-accept:hover {
	background: #45a049;
	transform: translateY(-1px);
}

.cookie-consent-decline {
	background: #f44336;
	color: white;
}

.cookie-consent-decline:hover {
	background: #da190b;
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.cookie-consent {
		bottom: 0;
		right: 0;
		left: 0;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		padding: 1rem;
		transform: translateY(0);
		box-sizing: border-box;
	}

	.cookie-consent-buttons {
		flex-direction: row;
		justify-content: flex-end;
		gap: 1rem;
	}

	.cookie-consent button {
		width: auto;
		padding: 0.5rem 1rem;
	}
}

/* Mobile Menu Styles */
.menu-toggle {
	display: none;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0.5rem;
}

.menu-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	background-color: var(--text-color);
	margin: 5px 0;
	transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
	.menu {
		padding: 1rem;
	}

	.menu ul {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		background-color: rgba(0, 8, 17, 0.95);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transition: 0.3s;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.menu ul.active {
		right: 0;
	}

	.menu-toggle {
		display: block;
		z-index: 1001;
	}

	.section {
		padding: 1rem;
	}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-text {
		max-width: 100%;
	}

	.hero-text h1 {
		font-size: 2rem;
	}

	.hero-image {
		left: 0;
		right: 0;
		top: 20%;
		transform: none;
		text-align: center;
	}

	.hero-image img {
		max-width: 100%;
	}

	.services-grid {
		grid-template-columns: 1fr;
		height: auto;
		margin: 0;
		width: 100%;
	}

	.service-card {
		transform: none !important;
		padding: 2rem;
	}

	.service-card h3,
	.service-card p {
		transform: none !important;
	}

	.about-content {
		padding: 1rem;
	}

	.about-content h2 {
		font-size: 2rem;
	}

	.contact-form {
		padding: 1rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.cookie-consent {
		bottom: 0;
		right: 0;
		left: 0;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		padding: 1rem;
		transform: translateY(0);
		box-sizing: border-box;
	}

	.cookie-consent-buttons {
		flex-direction: row;
		justify-content: flex-end;
		gap: 1rem;
	}

	.cookie-consent button {
		width: auto;
		padding: 0.5rem 1rem;
	}
}