/* Global Styles */
:root {
	--bg-color: #1C1F33;
	--accent-1: #F9D342;
	--accent-2: #C03221;
	--text-light: #EDEDED;
	--text-white: #FFFFFF;
}

* {
	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;
}

a {
	text-decoration: none;
	color: var(--text-white);
	transition: color 0.3s ease;
}

a:hover {
	color: var(--accent-1);
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

section {
	padding: 4rem 0;
}

section[id] {
	scroll-margin-top: 40px;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(to right, var(--accent-1), var(--accent-2));
	color: var(--text-white);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	font-weight: bold;
	text-transform: uppercase;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
	color: var(--text-white);
	position: relative;
}

.section-title:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	width: 50px;
	height: 4px;
	background: linear-gradient(to right, var(--accent-1), var(--accent-2));
	transform: translateX(-50%);
}


option {
	background-color: #434656;
}

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(28, 31, 51, 0.95);
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--accent-1);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.phone {
	color: var(--text-white);
	font-weight: bold;
	font-size: 1.1rem;
}

.phone a {
	color: var(--text-white);
}

.phone a:hover {
	color: var(--accent-1);
}

/* Navigation */
nav {
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 30px;
}

.nav-menu a {
	position: relative;
	padding-bottom: 5px;
}

.nav-menu a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(to right, var(--accent-1), var(--accent-2));
	transition: width 0.3s ease;
}

.nav-menu a:hover:after {
	width: 100%;
}

/* Hamburger Menu */
.menu-toggle-checkbox {
	display: none;
}

.menu-toggle {
	display: none;
	cursor: pointer;
}

.hamburger {
	width: 30px;
	height: 3px;
	background-color: var(--text-white);
	position: relative;
	transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 3px;
	background-color: var(--text-white);
	transition: all 0.3s ease-in-out;
}

.hamburger::before {
	transform: translateY(-10px);
}

.hamburger::after {
	transform: translateY(10px);
}

.menu-toggle-checkbox:checked~.menu-toggle .hamburger {
	background-color: transparent;
}

.menu-toggle-checkbox:checked~.menu-toggle .hamburger::before {
	transform: rotate(45deg);
}

.menu-toggle-checkbox:checked~.menu-toggle .hamburger::after {
	transform: rotate(-45deg);
}

.menu-toggle-checkbox:checked~nav .nav-menu {
	left: 0;
}

/* Hero Section */
.hero {
	height: 100vh;
	background-image: url('./img/61W02.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(28, 31, 51, 0.7);
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 0 20px;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	color: var(--text-white);
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 30px;
}

/* About Section */
.about {
	background-color: rgba(255, 255, 255, 0.03);
}

.about-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.about-text {
	flex: 1;
	min-width: 300px;
	padding: 0 20px;
}

.about-image {
	flex: 1;
	min-width: 300px;
	padding: 20px;
}

.about-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 3rem;
}

.service-card {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 0;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
	font-size: 1.5rem;
	margin: 20px 0;
	color: var(--accent-1);
	padding: 0 20px;
}

.service-card p {
	margin-bottom: 20px;
	padding: 0 20px;
}

.service-card .btn {
	margin: 0 20px 20px;
}

.service-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
	transform: scale(1.05);
}

/* Why Us Section */
.why-us {
	background-color: rgba(255, 255, 255, 0.03);
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 3rem;
}

.feature {
	padding: 20px;
	text-align: center;
}

.feature-icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background: linear-gradient(to right, var(--accent-1), var(--accent-2));
	color: var(--text-white);
	font-size: 1.8rem;
}

/* Testimonials Section */
.testimonials-slider {
	margin-top: 3rem;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.testimonial {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 30px;
	margin: 20px 10px;
	position: relative;
}

.testimonial:before {
	content: '"';
	font-size: 5rem;
	position: absolute;
	top: 10px;
	left: 10px;
	color: rgba(249, 211, 66, 0.2);
	line-height: 1;
}

.testimonial-content {
	margin-bottom: 20px;
}

.testimonial-author {
	font-weight: bold;
	color: var(--accent-1);
}

/* Contact Form Section */
.contact {
	background-color: rgba(255, 255, 255, 0.03);
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.05);
	padding: 40px;
	border-radius: 10px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: var(--text-white);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	color: var(--text-white);
	font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-1);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.checkbox-group input {
	margin-right: 10px;
	margin-top: 5px;
}

.checkbox-group label {
	font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 3rem auto 0;
}

.faq-item {
	margin-bottom: 20px;
}

.faq-question {
	display: none;
}

.faq-label {
	display: block;
	padding: 15px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	font-weight: bold;
	color: var(--text-white);
	transition: background-color 0.3s ease;
}

.faq-label:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.faq-label:after {
	content: '+';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: rgba(255, 255, 255, 0.02);
	border-radius: 0 0 5px 5px;
}

.faq-question:checked+.faq-label:after {
	content: '−';
}

.faq-question:checked+.faq-label+.faq-content {
	max-height: 500px;
	padding: 15px;
}

/* Footer */
footer {
	background-color: rgba(0, 0, 0, 0.3);
	padding: 50px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.footer-logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--accent-1);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.footer-contact p {
	margin-bottom: 10px;
}

.footer-links h3,
.footer-about h3 {
	color: var(--text-white);
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--bg-color);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	width: 90%;
	max-width: 400px;
	display: none;
}

.cookie-popup.active {
	display: block;
	animation: slideUp 0.5s forwards;
}

.cookie-content {
	margin-bottom: 15px;
}

.cookie-buttons {
	display: flex;
	justify-content: space-between;
}

/* Thank You Page */
.thank-you-container {
	border: 2px solid var(--accent-1);
	border-radius: 10px;
	padding: 40px;
	max-width: 600px;
	margin: 8rem auto 5rem;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.05);
}

.thank-you-container h1 {
	color: var(--accent-1);
	margin-bottom: 20px;
}

/* Policy Pages */
.policy-container {
	border: 2px solid var(--accent-1);
	border-radius: 10px;
	padding: 40px;
	max-width: 800px;
	margin: 8rem auto 5rem;
	background-color: rgba(255, 255, 255, 0.05);
}

.policy-container h1 {
	color: var(--accent-1);
	margin-bottom: 30px;
	text-align: center;
}

.policy-container h2 {
	color: var(--text-white);
	margin: 30px 0 15px;
}

.policy-container p {
	margin-bottom: 15px;
}

.policy-container ul {
	margin-bottom: 15px;
	padding-left: 20px;
}

div {
	word-break: break-word;
	overflow-wrap: break-word;
}


/* Animations */
@keyframes slideUp {
	0% {
		opacity: 0;
		transform: translate(-50%, 20px);
	}

	100% {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
	.section-title {
		font-size: 2rem;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		background-color: var(--bg-color);
		flex-direction: column;
		text-align: center;
		transition: all 0.3s ease;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	}

	.nav-menu li {
		margin: 0;
		padding: 15px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.menu-toggle {
		display: block;
		order: 2;
		z-index: 100;
	}

	.about-content {
		flex-direction: column-reverse;
	}

	.about-text,
	.about-image {
		padding: 20px 0;
	}

	.phone {
		display: none;
	}
}