/* Base Styles */
:root {
	--color-primary: #6f00ff;
	--color-accent: #f77fbf;
	--color-bg: #f9f9fb;
	--color-text: #333333;
	--gradient: linear-gradient(135deg, #6f00ff 0%, #f77fbf 100%);
	--shadow: 0 8px 30px rgba(111, 0, 255, 0.15);
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
	width: 100%;
	position: relative;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--color-bg);
	color: var(--color-text);
	line-height: 1.6;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.2;
	word-wrap: break-word;
}

p {
	margin-bottom: 15px;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--color-accent);
}

img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

section {
	padding: 80px 0;
	width: 100%;
	overflow: hidden;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
	border: none;
	white-space: nowrap;
}

.btn-primary {
	background: var(--gradient);
	color: white;
	box-shadow: var(--shadow);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(111, 0, 255, 0.25);
	color: white;
}

.btn-secondary {
	background-color: transparent;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
	background-color: var(--color-primary);
	color: white;
}

.btn-nav {
	background: var(--gradient);
	color: white;
	padding: 10px 20px;
	border-radius: 50px;
}

.btn-nav:hover {
	color: white;
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.btn-cookie {
	background: var(--color-primary);
	color: white;
	padding: 8px 20px;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: var(--transition);
}

.btn-cookie:hover {
	background: var(--color-accent);
}

/* Header Styles */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo img {
	height: 40px;
	width: auto;
}

.main-nav .nav-links {
	display: flex;
	list-style: none;
}

.main-nav .nav-links li {
	margin-left: 30px;
}

.main-nav .nav-links a {
	color: var(--color-text);
	font-weight: 500;
}

.main-nav .nav-links a:hover {
	color: var(--color-primary);
}

.menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	cursor: pointer;
}

/* Hero Section */
.hero {
	background: var(--gradient);
	color: white;
	text-align: center;
	padding: 150px 0 100px;
	margin-top: 70px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("img/VFRgFZ.jpg");
	background-size: cover;
	background-position: center;
	opacity: 0.2;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	animation: fadeInUp 1s ease;
}

.hero h2 {
	font-size: 1.5rem;
	margin-bottom: 40px;
	font-weight: 400;
	animation: fadeInUp 1s ease 0.2s;
	animation-fill-mode: both;
}

.hero .btn-primary {
	animation: fadeInUp 1s ease 0.4s;
	animation-fill-mode: both;
}

/* About Section */
.about {
	background-color: white;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
	flex-wrap: wrap;
}

.about-text {
	flex: 1 1 400px;
}

.about-image {
	flex: 1 1 400px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transform: translateY(0);
	transition: var(--transition);
}

.about-image:hover {
	transform: translateY(-10px);
}

/* Advantages Section */
.advantages {
	background-color: var(--color-bg);
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.advantage-card {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	transition: var(--transition);
	text-align: center;
}

.advantage-card:hover {
	transform: translateY(-10px);
}

.advantage-icon {
	margin-bottom: 20px;
}

/* Services Section */
.services {
	background-color: white;
	text-align: center;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.service-card {
	background-color: var(--color-bg);
	border-radius: 10px;
	padding: 40px 20px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow);
}

.service-card.featured {
	background: var(--gradient);
	color: white;
}

.service-card.featured a {
	color: white;
	border-color: white;
}

.service-card.featured a:hover {
	background-color: white;
	color: var(--color-primary);
}

.service-card h3 {
	margin-bottom: 15px;
	font-size: calc(1rem + 0.5vw);
}

.price {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--color-primary);
}

.service-card.featured .price {
	color: white;
}

.service-card ul {
	list-style: none;
	margin-bottom: 30px;
	flex-grow: 1;
}

.service-card li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card.featured li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card li:last-child {
	border-bottom: none;
}

/* Process Section */
.process {
	background-color: var(--color-bg);
}

.process-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
	position: relative;
}

.process-steps::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--gradient);
	z-index: 1;
	display: none;
}

@media (min-width: 993px) {
	.process-steps::before {
		display: block;
	}
}

.process-step {
	text-align: center;
	width: 100%;
	position: relative;
	z-index: 2;
	max-width: 280px;
	margin: 0 auto 40px;
}

.step-number {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--gradient);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	margin: 0 auto 20px;
	box-shadow: var(--shadow);
}

/* Testimonials Section */
.testimonials {
	background-color: white;
	text-align: center;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.testimonial-card {
	background-color: var(--color-bg);
	padding: 30px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	transition: var(--transition);
	text-align: left;
}

.testimonial-card:hover {
	transform: translateY(-10px);
}

.quote {
	margin-bottom: 20px;
}

.testimonial-author {
	margin-top: 20px;
}

.author-name {
	font-weight: 700;
	margin-bottom: 5px;
}

.author-position {
	color: #666;
	font-size: 0.9rem;
}

/* Contact Section */
.contact {
	background-color: var(--color-bg);
}

.contact-content {
	display: flex;
	gap: 50px;
	margin-top: 50px;
	flex-wrap: wrap;
}

.contact-form {
	flex: 1 1 500px;
	background-color: white;
	padding: 40px 20px;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.contact-info {
	flex: 1 1 300px;
}

.form-group {
	margin-bottom: 20px;
	text-align: left;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	text-align: left;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--color-primary);
	outline: none;
}

.form-group.checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.form-group.checkbox input {
	width: auto;
	margin-top: 5px;
}

.form-group.checkbox label {
	margin-bottom: 0;
}

.service-select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background-color: white;
	font-family: inherit;
	font-size: 1rem;
	color: var(--color-text);
	cursor: pointer;
	transition: var(--transition);
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236F00FF'%3e%3cpath d='M7,10L12,15L17,10H7Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 16px;
}

.service-select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 2px rgba(111, 0, 255, 0.1);
}

.service-select option {
	padding: 10px;
}

.contact-map {
	margin-top: 30px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.contact-map img {
	width: 100%;
}

/* Footer Styles */
footer {
	background-color: #222;
	color: white;
	padding: 60px 0 20px;
	width: 100%;
	overflow: hidden;
}

.footer-content {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-bottom: 40px;
}

.footer-info {
	flex: 1;
	max-width: 25%;
	padding-right: 15px;
}

.footer-description {
	margin-top: 20px;
}

.footer-links {
	flex: 3;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.footer-column {
	flex: 1;
	padding: 0 15px;
}

.footer-column h3 {
	margin-bottom: 20px;
	color: white;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: var(--gradient);
}

.footer-column ul {
	list-style: none;
}

.footer-column li {
	margin-bottom: 12px;
	word-wrap: break-word;
}

.footer-column a {
	color: #ccc;
	transition: var(--transition);
}

.footer-column a:hover {
	color: var(--color-accent);
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #999;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(34, 34, 34, 0.95);
	color: white;
	padding: 15px 0;
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.5s ease;
}

.cookie-banner.visible {
	transform: translateY(0);
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.cookie-content p {
	margin-bottom: 0;
	flex: 1;
	min-width: 300px;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Media Queries */
@media (max-width: 1200px) {
	.hero h1 {
		font-size: 3rem;
	}

	.process-step {
		width: 45%;
	}
}

@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
	}

	.process-step {
		width: 48%;
		margin-bottom: 30px;
	}

	.contact-content {
		flex-direction: column;
	}

	.hero h1 {
		font-size: 2.8rem;
	}

	.footer-content {
		flex-wrap: wrap;
	}

	.footer-info {
		flex: 1 1 100%;
		max-width: 100%;
		margin-bottom: 30px;
		padding-right: 0;
	}
}

@media (max-width: 768px) {
	section {
		padding: 60px 0;
	}

	.hero {
		padding: 120px 0 80px;
	}

	.hero h1 {
		font-size: 2.5rem;
		padding: 0 20px;
	}

	.hero h2 {
		padding: 0 20px;
	}

	.menu-icon {
		display: block;
		cursor: pointer;
	}

	.menu-icon span {
		display: block;
		width: 25px;
		height: 3px;
		background-color: var(--color-text);
		margin: 5px 0;
		transition: var(--transition);
	}

	.main-nav .nav-links {
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background-color: white;
		flex-direction: column;
		align-items: center;
		padding: 20px 0;
		box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		transition: clip-path 0.4s ease;
		max-height: 80vh;
		overflow-y: auto;
	}

	.menu-toggle:checked ~ .nav-links {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}

	.main-nav .nav-links li {
		margin: 15px 0;
	}

	.process-step {
		width: 100%;
		max-width: 100%;
	}

	.contact-form {
		padding: 30px 15px;
	}

	.footer-links {
		flex-wrap: wrap;
	}

	.footer-column {
		flex: 1 1 100%;
		margin-bottom: 30px;
		padding: 0;
	}
}

@media (max-width: 576px) {
	.hero h1 {
		font-size: 2rem;
	}

	.footer-content {
		flex-direction: column;
		gap: 30px;
	}

	.form-group.checkbox {
		align-items: flex-start;
	}

	.form-group.checkbox label {
		font-size: 14px;
	}

	.container {
		width: 95%;
		padding: 0 10px;
	}

	.services-grid,
	.advantages-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		padding: 30px 15px;
	}

	.advantage-card {
		padding: 20px 15px;
	}

	.testimonial-card {
		padding: 20px 15px;
	}
}
