/* Global Styles */
:root {
	--background: #141414;
	--yellow: #FFD23F;
	--coral: #FF6B6B;
	--turquoise: #00CFC1;
	--white: #FFFFFF;
	--dark-text: #2D2D2D;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

section[id] {
	scroll-margin-top: 40px;
}

body {
	background-color: var(--background);
	color: var(--white);
	line-height: 1.6;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.section-padding {
	padding: 5rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	font-weight: 700;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	text-align: center;
	position: relative;
}

h2:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(to right, var(--yellow), var(--coral));
}

p {
	margin-bottom: 1.5rem;
}

img {
	max-width: 100%;
	height: auto;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	border: none;
	border-radius: 50px;
	background: linear-gradient(to right, var(--yellow), var(--coral));
	color: var(--dark-text);
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(20, 20, 20, 0.9);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	background: linear-gradient(to right, var(--yellow), var(--coral));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Navigation */
.hamburger {
	display: none;
	cursor: pointer;
}

#menu-toggle {
	display: none;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu li a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-menu li a:hover {
	color: var(--yellow);
}

.nav-menu li a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(to right, var(--yellow), var(--coral));
	transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero {
	background-image: url('./img/ILzcZ.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(20, 20, 20, 0.7);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
}

.hero-title {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	animation: fadeIn 1s ease-in-out;
}

.hero-description {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	animation: fadeIn 1.5s ease-in-out;
}

.hero-btn {
	animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* About Us Section */
.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.about-image {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: rgba(45, 45, 45, 0.5);
	border-radius: 10px;
	padding: 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-image {
	height: 150px;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.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);
}

.service-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--yellow);
}

/* How We Work Section */
.work-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	counter-reset: step-counter;
}

.work-step {
	flex: 1 1 300px;
	margin: 1rem;
	padding: 2rem;
	background-color: rgba(45, 45, 45, 0.5);
	border-radius: 10px;
	position: relative;
	counter-increment: step-counter;
}

.work-step::before {
	content: counter(step-counter);
	position: absolute;
	top: -15px;
	left: -15px;
	width: 40px;
	height: 40px;
	background: linear-gradient(to right, var(--yellow), var(--coral));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--dark-text);
	font-size: 1.2rem;
}

.work-step-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--turquoise);
}

/* Benefits Section */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.benefit-card {
	background-color: rgba(45, 45, 45, 0.5);
	border-radius: 10px;
	padding: 1.5rem;
	display: flex;
	align-items: flex-start;
	transition: transform 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-5px);
}

.benefit-icon {
	width: 60px;
	height: 60px;
	margin-right: 1rem;
	background-color: var(--turquoise);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--dark-text);
}

.benefit-content {
	flex: 1;
}

.benefit-title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: var(--yellow);
}

/* Testimonials Section */
.testimonial-slider {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	position: relative;

}



.testimonial-slide {
	min-width: 100%;
	padding: 2rem;
}

.testimonial-card {
	background-color: rgba(45, 45, 45, 0.5);
	border-radius: 10px;
	padding: 2rem;
	position: relative;
	margin: 1rem auto;
	max-width: 800px;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 10px;
	left: 20px;
	font-size: 4rem;
	color: rgba(255, 210, 63, 0.2);
	font-family: 'Georgia', serif;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 1rem;
}

.testimonial-author {
	text-align: right;
	font-weight: 700;
	color: var(--turquoise);
}

.testimonial-controls {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}

.testimonial-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	margin: 0 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.testimonial-dot.active {
	background-color: var(--yellow);
}

/* Form Section */
.form-section {
	background-color: rgba(45, 45, 45, 0.3);
	border-radius: 15px;
	padding: 3rem;
	margin: 2rem 0;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.form-title {
	text-align: center;
	margin-bottom: 2rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	background-color: rgba(45, 45, 45, 0.5);
	color: var(--white);
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	border-color: var(--yellow);
	outline: none;
}

.form-select {
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
	padding-right: 30px;
}

/* Custom styling for select options */
.form-select option {
	background-color: var(--background);
	color: var(--white);
	padding: 10px;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.form-checkbox {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	margin-top: 3px;
}

.checkbox-label {
	font-size: 0.9rem;
}

.checkbox-label a,
a {
	color: var(--yellow);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.checkbox-label a:hover {
	color: var(--coral);
}

.form-button {
	display: block;
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 8px;
	background: linear-gradient(to right, var(--yellow), var(--coral));
	color: var(--dark-text);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}

.form-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
	background-color: rgba(20, 20, 20, 0.9);
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 2rem;
}

.footer-column h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: var(--yellow);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--coral);
}

.contact-info {
	list-style: none;
}

.contact-info li {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}

.contact-info i {
	margin-right: 10px;
	color: var(--yellow);
}

.copyright {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

/* Policy Pages */
.policy-container {
	background-color: rgba(45, 45, 45, 0.3);
	border-radius: 15px;
	padding: 3rem;
	margin: 8rem auto 5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-title {
	margin-bottom: 2rem;
	text-align: center;
}

.policy-content h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: var(--yellow);
}

.policy-content p {
	margin-bottom: 1.5rem;
}

.policy-content ul {
	margin-left: 1.5rem;
	margin-bottom: 1.5rem;
}

/* Thank You Page */
.thank-you-container {
	background-color: rgba(45, 45, 45, 0.3);
	border-radius: 15px;
	padding: 3rem;
	margin: 8rem auto 5rem;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	max-width: 800px;
}

.thank-you-title {
	color: var(--yellow);
	margin-bottom: 1.5rem;
}

.thank-you-content {
	margin-bottom: 2rem;
}

/* Cookie Consent */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(45, 45, 45, 0.95);
	padding: 1rem;
	z-index: 9999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-text {
	flex: 1;
	padding-right: 1rem;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
}

.cookie-btn {
	padding: 8px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
}

.cookie-accept {
	background: linear-gradient(to right, var(--yellow), var(--coral));
	color: var(--dark-text);
}

.cookie-reject {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
}

.faq-question {
	background-color: rgba(45, 45, 45, 0.5);
	padding: 1rem;
	cursor: pointer;
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	color: var(--white);
	font-weight: 600;
	border: none;
	transition: background-color 0.3s ease;
}

.faq-checkbox {
	display: none;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-checkbox:checked+.faq-question::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
	background-color: rgba(45, 45, 45, 0.3);
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-answer-content {
	padding: 1rem;
}

.faq-checkbox:checked~.faq-answer {
	max-height: 500px;
	padding: 1rem;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.hero-title {
		font-size: 3rem;
	}
}

@media screen and (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.6rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.section-padding {
		padding: 3rem 0;
	}

	/* Mobile Navigation */
	.hamburger {
		display: block;
		width: 30px;
		height: 20px;
		position: relative;
	}

	.hamburger span {
		display: block;
		position: absolute;
		height: 3px;
		width: 100%;
		background: var(--white);
		border-radius: 3px;
		opacity: 1;
		left: 0;
		transform: rotate(0deg);
		transition: .25s ease-in-out;
	}

	.hamburger span:nth-child(1) {
		top: 0px;
	}

	.hamburger span:nth-child(2),
	.hamburger span:nth-child(3) {
		top: 8px;
	}

	.hamburger span:nth-child(4) {
		top: 16px;
	}

	#menu-toggle:checked+.hamburger span:nth-child(1) {
		top: 8px;
		width: 0%;
		left: 50%;
	}

	#menu-toggle:checked+.hamburger span:nth-child(2) {
		transform: rotate(45deg);
	}

	#menu-toggle:checked+.hamburger span:nth-child(3) {
		transform: rotate(-45deg);
	}

	#menu-toggle:checked+.hamburger span:nth-child(4) {
		top: 8px;
		width: 0%;
		left: 50%;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: 0;
		width: 100%;
		height: 0;
		background-color: rgba(20, 20, 20, 0.95);
		flex-direction: column;
		gap: 0;
		overflow: hidden;
		transition: height 0.3s ease;
		z-index: 999;
	}

	#menu-toggle:checked~.nav-menu {
		height: calc(100vh - 70px);
	}

	.nav-menu li {
		width: 100%;
		text-align: center;
		opacity: 0;
		transform: translateY(-20px);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

	#menu-toggle:checked~.nav-menu li {
		opacity: 1;
		transform: translateY(0);
	}

	.nav-menu li a {
		display: block;
		padding: 1rem;
		font-size: 1.2rem;
	}

	/* Delay the animation of each menu item */
	#menu-toggle:checked~.nav-menu li:nth-child(1) {
		transition-delay: 0.1s;
	}

	#menu-toggle:checked~.nav-menu li:nth-child(2) {
		transition-delay: 0.2s;
	}

	#menu-toggle:checked~.nav-menu li:nth-child(3) {
		transition-delay: 0.3s;
	}

	#menu-toggle:checked~.nav-menu li:nth-child(4) {
		transition-delay: 0.4s;
	}

	#menu-toggle:checked~.nav-menu li:nth-child(5) {
		transition-delay: 0.5s;
	}
}

@media screen and (max-width: 576px) {
	.container {
		width: 95%;
		padding: 0 10px;
	}

	h1 {
		font-size: 1.8rem;
	}

	h2 {
		font-size: 1.4rem;
	}

	.hero-title {
		font-size: 2.2rem;
	}

	.btn {
		padding: 10px 25px;
	}

	.form-section,
	.policy-container,
	.thank-you-container {
		padding: 1.5rem;
	}

	.cookie-consent {
		flex-direction: column;
	}

	.cookie-text {
		padding-right: 0;
		margin-bottom: 1rem;
	}
}