/* Main Styles for domain */

/* Basic Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Color Variables */
:root {
	--bg-color: #1C1F33;
	--accent-pink: #E94E77;
	--accent-mint: #35E6A8;
	--text-color: #C0C0C0;
	--header-color: #FFFFFF;
}

/* General Styles */
body {
	background-color: var(--bg-color);
	color: var(--text-color);
	font-family: 'Roboto', 'Arial', sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

section[id] {
	scroll-margin-top: 40px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--header-color);
	margin-bottom: 1.2rem;
	font-weight: 700;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 2rem;
}

h3 {
	font-size: 1.8rem;
}

p {
	margin-bottom: 1.5rem;
}

a {
	color: var(--accent-mint);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--accent-pink);
}

/* Container */
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Section Styling */
section {
	padding: 5rem 0;
}

/* Header */
header {
	background-color: rgba(28, 31, 51, 0.95);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	font-size: 2rem;
	font-weight: 700;
	color: var(--header-color);
	text-transform: lowercase;
}

/* Navigation */
nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 2rem;
}

nav ul li a {
	color: var(--text-color);
	font-weight: 500;
	position: relative;
}

nav ul li a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-mint), var(--accent-pink));
	transition: width 0.3s ease;
}

nav ul li a:hover::after {
	width: 100%;
}

/* Mobile Menu */
.menu-toggle {
	display: none;
}

.menu-btn {
	display: none;
	cursor: pointer;
}

/* Hero Section */
.hero {
	min-height: 80vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(28, 31, 51, 0.7);
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	background: linear-gradient(90deg, var(--accent-mint), var(--accent-pink));
	color: var(--header-color);
	border-radius: 50px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	color: var(--header-color);
}

/* About Section */
.about {
	background-color: rgba(255, 255, 255, 0.05);
}

.about-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* 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: 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--accent-mint), var(--accent-pink));
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.service-card h3 {
	margin-top: auto;
	color: var(--accent-mint);
}

/* Benefits Section */
.benefits {
	background-color: rgba(255, 255, 255, 0.05);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.benefit-item {
	text-align: center;
	padding: 1.5rem;
}

.benefit-icon {
	font-size: 3rem;
	color: var(--accent-pink);
	margin-bottom: 1rem;
}

.benefit-item img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	margin: 0 auto 1rem;
}

/* Testimonials Section */
.testimonials-slider {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
}

.testimonial {
	text-align: center;
	padding: 1.5rem;
}

.testimonial p {
	font-style: italic;
	font-size: 1.2rem;
	position: relative;
}

.testimonial p::before,
.testimonial p::after {
	content: '"';
	font-size: 2rem;
	color: var(--accent-pink);
}

.testimonial-author {
	font-weight: 700;
	color: var(--header-color);
	margin-top: 1rem;
}

/* Trust Section */
.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.trust-item {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s ease;
}

.trust-item:hover {
	transform: translateY(-5px);
}

.trust-item img {
	max-width: 150px;
	max-height: 80px;
	margin: 0 auto 1rem;
}

/* Form Section */
.form-section {
	position: relative;
}

.form-container {
	max-width: 700px;
	margin: 0 auto;
	padding: 3rem;
	background: linear-gradient(135deg, rgba(53, 230, 168, 0.1), rgba(233, 78, 119, 0.1));
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.error-message {
	margin-bottom: 20px;
	padding: 15px;
	background-color: rgba(233, 78, 119, 0.2);
	border-left: 4px solid var(--accent-pink);
	border-radius: 5px;
}

.error-message p {
	color: var(--header-color);
	margin-bottom: 5px;
	font-size: 0.95rem;
}

.form-container::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: rotate(45deg);
	animation: formGlow 10s linear infinite;
	z-index: -1;
}

@keyframes formGlow {
	0% {
		transform: rotate(45deg) translateX(-100%);
	}

	100% {
		transform: rotate(45deg) translateX(100%);
	}
}

.form-group {
	margin-bottom: 1.5rem;
}

label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--header-color);
	font-weight: 500;
}

input,
select,
textarea {
	width: 100%;
	padding: 0.8rem 1.2rem;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	color: var(--header-color);
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--accent-mint);
}

select {
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" 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;
}

select option {
	background-color: var(--bg-color);
	color: var(--header-color);
	padding: 10px;
}

.checkbox-group {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

div {
	word-break: break-word;
	overflow-wrap: break-word;
}


.checkbox-group input {
	width: auto;
	margin-right: 10px;
}

.checkbox-group label {
	margin-bottom: 0;
	font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1.5rem;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	overflow: hidden;
}

.faq-question {
	position: relative;
	padding: 1.5rem;
	cursor: pointer;
}

.faq-question label {
	display: block;
	font-weight: 700;
	color: var(--header-color);
	padding-right: 30px;
	cursor: pointer;
}

.faq-toggle {
	display: none;
}

.faq-question::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: var(--accent-mint);
	transition: transform 0.3s ease;
}

.faq-toggle:checked~.faq-question::after {
	content: '−';
	transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 1.5rem;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-toggle:checked~.faq-answer {
	max-height: 500px;
	padding: 0 1.5rem 1.5rem;
}

/* Footer */
footer {
	background-color: rgba(0, 0, 0, 0.3);
	padding: 3rem 0;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-col h3 {
	position: relative;
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.footer-col h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-mint), var(--accent-pink));
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 0.8rem;
}

.footer-col ul li a {
	color: var(--text-color);
}

.footer-col ul li a:hover {
	color: var(--accent-mint);
}

.footer-contact p {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.footer-contact span {
	margin-right: 10px;
	color: var(--accent-mint);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
}

/* Policy Pages */
.policy-page {
	margin: 8rem auto 5rem;
	max-width: 900px;
	padding: 3rem;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-page h1 {
	text-align: center;
	margin-bottom: 2rem;
}

.policy-page h2 {
	text-align: left;
	margin-top: 2.5rem;
	font-size: 1.8rem;
}

.policy-page p {
	margin-bottom: 1.5rem;
}

/* Thank You Page */
.thank-you-page {
	margin: 8rem auto 5rem;
	max-width: 700px;
	padding: 3rem;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.thank-you-page h1 {
	color: var(--accent-mint);
	margin-bottom: 1.5rem;
}

/* Cookie Consent */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(28, 31, 51, 0.95);
	padding: 1.5rem;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transform: translateY(100%);
	transition: transform 0.5s ease;
}

.cookie-consent.show {
	transform: translateY(0);
}

.cookie-text {
	flex: 1;
	padding-right: 2rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

/* Media Queries */
@media screen and (max-width: 992px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.about-content {
		flex-direction: column;
	}

	.footer-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.menu-btn {
		display: block;
		width: 30px;
		height: 20px;
		position: relative;
		z-index: 1001;
	}

	.menu-btn span {
		display: block;
		width: 100%;
		height: 2px;
		background-color: var(--header-color);
		position: absolute;
		transition: transform 0.3s ease;
	}

	.menu-btn span:nth-child(1) {
		top: 0;
	}

	.menu-btn span:nth-child(2) {
		top: 9px;
	}

	.menu-btn span:nth-child(3) {
		bottom: 0;
	}

	.menu-toggle:checked~.menu-btn span:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}

	.menu-toggle:checked~.menu-btn span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked~.menu-btn span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}

	nav {
		position: fixed;
		top: 0;
		right: 0;
		width: 250px;
		height: 100vh;
		background-color: var(--bg-color);
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
		padding: 5rem 0 2rem;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 1000;
	}

	.menu-toggle:checked~nav {
		transform: translateX(0);
	}

	nav ul {
		flex-direction: column;
		align-items: center;
	}

	nav ul li {
		margin: 1rem 0;
	}

	.footer-container {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 576px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.2rem;
	}

	.form-container {
		padding: 2rem;
	}

	.policy-page,
	.thank-you-page {
		padding: 2rem;
		margin: 6rem auto 3rem;
	}
}