/* Global Styles */
:root {
	--bg-color: #0A0F2C;
	--accent-pink: #EC407A;
	--accent-teal: #00BFA5;
	--text-white: #FFFFFF;
	--text-gray: #AAB4BE;
	--card-bg: rgba(255, 255, 255, 0.05);
	--header-height: 80px;
}

* {
	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-white);
	line-height: 1.6;
}

section[id] {
	scroll-margin-top: 40px;
}

div {
	word-break: break-word;
	overflow-wrap: break-word;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

a {
	color: var(--text-white);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--accent-pink);
}

img {
	max-width: 100%;
	height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	line-height: 1.2;
	font-weight: 700;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	position: relative;
}

h2:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	height: 4px;
	width: 60px;
	background: linear-gradient(90deg, var(--accent-pink), var(--accent-teal));
	border-radius: 2px;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

section {
	padding: 5rem 0;
}

/* Buttons */
.button,
button {
	display: inline-block;
	background: linear-gradient(90deg, var(--accent-pink), var(--accent-teal));
	color: var(--text-white);
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
}

.button:hover,
button:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.cta-button {
	background: linear-gradient(90deg, var(--accent-pink), var(--accent-teal));
	padding: 0.6rem 1.2rem;
	border-radius: 5px;
	font-weight: 600;
}

.cta-button:hover {
	color: var(--text-white);
	opacity: 0.9;
}

/* Header */
.main-header {
	background-color: rgba(10, 15, 44, 0.95);
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--header-height);
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-white);
	background: linear-gradient(90deg, var(--accent-pink), var(--accent-teal));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Navigation */
.main-nav .menu {
	display: flex;
	list-style: none;
	gap: 1.5rem;
}

.menu-toggle {
	display: none;
}

.menu-btn {
	display: none;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: calc(100vh - var(--header-height));
	background: linear-gradient(rgba(10, 15, 44, 0.8), rgba(10, 15, 44, 0.9)), url('./img/VAVl3.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.hero-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.hero p {
	font-size: 1.2rem;
	color: var(--text-gray);
	margin-bottom: 2rem;
}

/* Section styles */
.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	display: inline-block;
}

.section-title h2:after {
	left: 50%;
	transform: translateX(-50%);
}

/* Cards Grid */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.card {
	background-color: var(--card-bg);
	border-radius: 10px;
	padding: 1.5rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-img {
	height: 200px;
	overflow: hidden;
	border-radius: 5px;
	margin-bottom: 1.2rem;
}

.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card h3 {
	margin-bottom: 1rem;
	color: var(--text-white);
}

.card p {
	color: var(--text-gray);
}

/* About Section */
.about {
	background: linear-gradient(rgba(10, 15, 44, 0.9), rgba(10, 15, 44, 1)), ;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.about-text {
	color: var(--text-gray);
}

.about-image {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
	background-color: var(--bg-color);
}

.service-card {
	text-align: center;
	height: 100%;
}

.service-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-teal));
	border-radius: 50%;
}

.service-card h3 {
	margin-bottom: 1rem;
}

/* Advantages Section */
.advantages {
	background: linear-gradient(rgba(10, 15, 44, 0.9), rgba(10, 15, 44, 1)), url('./img/gtjMu.jpg');
	background-size: cover;
	background-position: center;
}

.advantage-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.advantage-icon {
	min-width: 50px;
	height: 50px;
	margin-right: 1rem;
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-teal));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--text-white);
}

.advantage-text h4 {
	margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonial-card {
	position: relative;
	padding: 2rem;
	border-radius: 10px;
	background-color: var(--card-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-content {
	position: relative;
	padding-left: 2rem;
}

.testimonial-content:before {
	content: '"';
	position: absolute;
	left: 0;
	top: -10px;
	font-size: 3rem;
	color: var(--accent-pink);
	font-family: serif;
	line-height: 1;
}

.testimonial-author {
	margin-top: 1rem;
	display: flex;
	align-items: center;
}

.author-name {
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.author-title {
	font-size: 0.9rem;
	color: var(--text-gray);
}

/* FAQ Section */
.faq {
	background-color: var(--bg-color);
}

.faq-item {
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
	background-color: var(--card-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
	position: relative;
	padding: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question:after {
	content: '+';
	font-size: 1.5rem;
	color: var(--accent-pink);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 1.2rem;
	color: var(--text-gray);
}

.faq-checkbox {
	display: none;
}

.faq-checkbox:checked+.faq-question:after {
	content: '−';
}

.faq-checkbox:checked+.faq-question+.faq-answer {
	max-height: 1000px;
	padding: 0 1.2rem 1.2rem;
}

/* Contact Section */
.contact {
	position: relative;
	background: linear-gradient(rgba(10, 15, 44, 0.9), rgba(10, 15, 44, 0.95)), url('./img/pvqom.jpg');
	background-size: cover;
	background-position: center;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-info h3 {
	margin-bottom: 1.5rem;
}

.contact-detail {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.contact-icon {
	min-width: 50px;
	height: 50px;
	margin-right: 1rem;
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-teal));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--text-white);
}

/* Form Styles */
.contact-form {
	background-color: var(--card-bg);
	border-radius: 10px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.form-control {
	width: 100%;
	padding: 0.8rem;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	color: var(--text-white);
	font-size: 1rem;
}

.form-control:focus {
	outline: none;
	border-color: var(--accent-pink);
}

.form-select {
	width: 100%;
	padding: 0.8rem;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	color: var(--text-white);
	font-size: 1rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	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-x: calc(100% - 10px);
	background-position-y: 50%;
}

select option {
	background-color: var(--bg-color);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
	margin-top: 0.3rem;
	margin-right: 0.8rem;
}

.form-submit {
	width: 100%;
	padding: 1rem;
	font-size: 1.1rem;
}

/* Footer */
.main-footer {
	background-color: rgba(0, 0, 0, 0.3);
	padding: 4rem 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 2rem;
}

.footer-info .logo {
	margin-bottom: 1rem;
	display: inline-block;
}

.footer-desc {
	color: var(--text-gray);
	max-width: 300px;
}

.footer-contact h3,
.footer-links h3 {
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.footer-contact address {
	font-style: normal;
	color: var(--text-gray);
}

.footer-contact p {
	margin-bottom: 0.8rem;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: var(--text-gray);
}

.footer-links a:hover {
	color: var(--accent-pink);
}

.copyright {
	margin-top: 3rem;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	text-align: center;
}

.copyright p {
	margin-bottom: 0;
	color: var(--text-gray);
	font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.9);
	padding: 1rem;
	z-index: 10000;
	justify-content: center;
	align-items: center;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
	max-width: 800px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.cookie-content p {
	margin: 0;
	font-size: 0.9rem;
}

/* Thank You Page */
.thank-you-container {
	max-width: 600px;
	margin: 8rem auto 5rem;
	padding: 3rem;
	text-align: center;
	background-color: var(--card-bg);
	border-radius: 10px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.thank-you-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-teal));
	border-radius: 50%;
	font-size: 2rem;
	color: var(--text-white);
}

/* Legal Pages */
.legal-container {
	max-width: 800px;
	margin: 2rem auto 5rem;
	padding: 3rem;
	background-color: var(--card-bg);
	border-radius: 10px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-header {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}

.legal-header .logo {
	margin-right: 2rem;
}

.legal-section {
	margin-bottom: 2rem;
}

.legal-section h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
	color: var(--text-gray);
	margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
	margin-left: 2rem;
}

/* Media Queries */
@media (max-width: 992px) {

	.about-content,
	.contact-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-container {
		grid-template-columns: 1fr 1fr;
	}

	.footer-info {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	section {
		padding: 3rem 0;
	}

	.menu-btn {
		display: block;
		cursor: pointer;
		position: relative;
		width: 30px;
		height: 20px;
	}

	.menu-icon,
	.menu-icon:before,
	.menu-icon:after {
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: var(--text-white);
		transition: all 0.3s ease;
	}

	.menu-icon {
		top: 50%;
		transform: translateY(-50%);
	}

	.menu-icon:before {
		content: '';
		top: -8px;
	}

	.menu-icon:after {
		content: '';
		bottom: -8px;
	}

	.menu-toggle:checked~.menu-btn .menu-icon {
		background-color: transparent;
	}

	.menu-toggle:checked~.menu-btn .menu-icon:before {
		top: 0;
		transform: rotate(45deg);
	}

	.menu-toggle:checked~.menu-btn .menu-icon:after {
		bottom: 0;
		transform: rotate(-45deg);
	}

	.menu-container {
		position: absolute;
		top: var(--header-height);
		left: 0;
		width: 100%;
		background-color: rgba(10, 15, 44, 0.95);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.menu-toggle:checked~.menu-container {
		max-height: 500px;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	}

	.main-nav .menu {
		flex-direction: column;
		gap: 0;
		padding: 1rem 0;
	}

	.main-nav .menu li {
		width: 100%;
	}

	.main-nav .menu li a {
		display: block;
		padding: 0.8rem 1.5rem;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.hero {
		min-height: 60vh;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.footer-container {
		grid-template-columns: 1fr;
	}

	.footer-info {
		grid-column: auto;
	}
}

@media (max-width: 576px) {
	.legal-container {
		padding: 2rem 1.5rem;
	}

	.thank-you-container {
		padding: 2rem 1.5rem;
		margin: 5rem auto 3rem;
	}
}