/* Global Styles */
:root {
	--bg-color: #111111;
	--accent-gold: #FFD700;
	--accent-blue: #00C3FF;
	--text-white: #FFFFFF;
	--text-light: #DADADA;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

body {
	font-family: 'Arial', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-light);
	line-height: 1.6;
}

section[id] {
	scroll-margin-top: 40px;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

h1,
h2,
h3 {
	color: var(--text-white);
	margin-bottom: 1rem;
}

h2 {
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 15px;
}

h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
}

a {
	color: var(--accent-blue);
	text-decoration: none;
	transition: color 0.3s;
}

a:hover {
	color: var(--accent-gold);
}

p {
	margin-bottom: 1rem;
}

.btn {
	display: inline-block;
	padding: 12px 25px;
	background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
	color: var(--bg-color);
	border: none;
	border-radius: 5px;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	color: var(--bg-color);
}

section {
	padding: 80px 0;
}

/* Header Styles */
header {
	background-color: rgba(17, 17, 17, 0.9);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--text-white);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.logo span {
	color: var(--accent-gold);
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 20px;
}

nav ul li a {
	color: var(--text-white);
	font-weight: 500;
	padding: 10px 5px;
	position: relative;
}

nav ul li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
	transition: width 0.3s;
}

nav ul li a:hover::after {
	width: 100%;
}

/* Mobile Menu */
.menu-toggle {
	display: none;
}

#menu-toggle {
	display: none;
}

.menu-button {
	display: none;
}

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.menu-button {
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		width: 30px;
		height: 25px;
		background: transparent;
		border: none;
		cursor: pointer;
		position: relative;
		z-index: 10;
	}

	.menu-button span {
		width: 30px;
		height: 3px;
		background: var(--text-white);
		transition: all 0.3s ease;
	}

	nav {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 70%;
		background-color: var(--bg-color);
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
		transition: right 0.3s ease;
		z-index: 5;
	}

	#menu-toggle:checked~nav {
		right: 0;
	}

	nav ul {
		flex-direction: column;
		padding: 80px 30px 30px;
	}

	nav ul li {
		margin: 15px 0;
	}

	#menu-toggle:checked~.menu-button span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	#menu-toggle:checked~.menu-button span:nth-child(2) {
		opacity: 0;
	}

	#menu-toggle:checked~.menu-button span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}
}

/* Hero Section */
#hero {
	height: 80vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 0;
}

#hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 0 auto;

}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.hero-content p {
	font-size: 1.2rem;
	max-width: 600px;
	margin-bottom: 2rem;
}

/* About Section */
#about {
	background-color: rgba(25, 25, 25, 0.8);
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 3rem;
}

.service-card {
	padding: 0;
	background-color: rgba(25, 25, 25, 0.8);
	border: 2px solid var(--accent-gold);
	border-radius: 8px;
	transition: all 0.3s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 195, 255, 0.2);
}

.service-card-img {
	height: 200px;
	overflow: hidden;
}

.service-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.service-card-content {
	padding: 1.5rem;
}

.service-card h3 {
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 10px;
}

.service-card h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
}

/* Benefits Section */
#benefits {
	background-color: rgba(25, 25, 25, 0.8);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 2rem;
}

.benefit-item {
	text-align: center;
	padding: 1.5rem;
}

.benefit-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 1rem;
	padding: 15px;
	border-radius: 50%;
	background: linear-gradient(45deg, var(--accent-gold), var(--accent-blue));
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Testimonials Section */
.testimonials-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.testimonial {
	flex: 1 1 300px;
	max-width: 350px;
	padding: 2rem;
	background-color: rgba(25, 25, 25, 0.8);
	border-radius: 8px;
	border-left: 3px solid var(--accent-gold);
}

.testimonial-author {
	margin-top: 1rem;
	font-weight: bold;
	color: var(--accent-blue);
}

/* FAQ Section */
#faq {
	background-color: rgba(25, 25, 25, 0.8);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	border-radius: 5px;
	overflow: hidden;
}

.faq-question {
	display: block;
	width: 100%;
	padding: 15px 20px;
	background-color: rgba(35, 35, 35, 0.8);
	color: var(--text-white);
	text-align: left;
	cursor: pointer;
	border: none;
	border-left: 3px solid var(--accent-gold);
	position: relative;
}

.faq-question:after {
	content: '+';
	font-size: 1.5rem;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.faq-checkbox {
	display: none;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: rgba(35, 35, 35, 0.4);
	padding: 0 20px;
}

.faq-checkbox:checked+.faq-question:after {
	content: '−';
}

.faq-checkbox:checked~.faq-answer {
	max-height: 500px;
}

/* Contact Form */
#contact {
	padding-bottom: 4rem;
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
	background-color: rgba(25, 25, 25, 0.8);
	padding: 2rem;
	border-radius: 8px;
	border: 1px solid var(--accent-gold);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-white);
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	background-color: rgba(35, 35, 35, 0.8);
	border: 1px solid #333;
	border-radius: 4px;
	color: var(--text-white);
	transition: all 0.3s;
}

.form-control:focus {
	border-color: var(--accent-blue);
	box-shadow: 0 0 0 2px rgba(0, 195, 255, 0.2);
	outline: none;
}

select.form-control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	padding-right: 35px;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.8rem;
}

.checkbox-group input {
	margin-top: 5px;
	margin-right: 10px;
}

/* SEO Block */
#seo {
	background-color: rgba(25, 25, 25, 0.8);
	padding: 4rem 0;
}

/* Footer */
footer {
	background-color: rgba(15, 15, 15, 0.95);
	padding: 3rem 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.footer-column h3 {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 1.5rem;
}

.footer-column h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.contact-info {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.contact-info svg {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	fill: var(--accent-gold);
}

.copyright {
	text-align: center;
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 1px solid #333;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 400px;
	background-color: rgba(25, 25, 25, 0.95);
	border: 1px solid var(--accent-gold);
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	display: none;
}

.cookie-popup p {
	margin-bottom: 1.5rem;
}

.cookie-buttons {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

/* Policy Pages */
.policy-container {
	max-width: 800px;
	margin: 4rem auto;
	padding: 2rem;
	background-color: rgba(25, 25, 25, 0.8);
	border-radius: 8px;
	border: 1px solid var(--accent-gold);
}

.policy-container h1 {
	text-align: center;
	margin-bottom: 2rem;
}

/* Thank You Page */
.thank-you {
	text-align: center;
	margin: 10rem auto 5rem;
	max-width: 600px;
	padding: 3rem;
	background-color: rgba(25, 25, 25, 0.8);
	border-radius: 8px;
	border: 1px solid var(--accent-gold);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.3rem;
	}

	section {
		padding: 60px 0;
	}
}

@media (max-width: 576px) {
	.hero-content h1 {
		font-size: 1.8rem;
	}

	.btn {
		padding: 10px 20px;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}
}