/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	line-height: 1.6;
	color: #111827;
	background-color: #fafafa;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
.header {
	background-color: #fafafa;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.nav-brand h1 {
	color: #993ff4;
	font-size: 2rem;
	font-weight: bold;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: #111827;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #3b1066;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: #111827;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	background: #993ff4;
	color: white;
	padding: 120px 0 80px;
	text-align: center;
	margin-top: 80px;
}

.hero-content h1 {
	font-size: 3rem;
	color: #e5e7eb;
	margin-bottom: 1rem;
	font-weight: bold;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Button Styles */
.btn-primary {
	background-color: #993ff4;
	color: white;
	border: none;
	padding: 12px 30px;
	font-size: 1rem;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-primary:hover {
	background-color: #411072;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: #e5e7eb;
	color: #111827;
	border: none;
	padding: 8px 20px;
	font-size: 0.9rem;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background-color: #d1d5db;
}

/* Section Styles */
.section {
	padding: 40px 0;
}

.section-alt {
	background-color: #f9fafb;
}

.section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #111827;
}

/* Content Grid */
.content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.content-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.content-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(244, 63, 94, 0.1),
		transparent
	);
	transition: left 0.6s;
}

.content-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow:
		0 15px 35px rgba(244, 63, 94, 0.2),
		0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-card:hover::before {
	left: 100%;
}

.content-card h3 {
	color: #993ff4;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}
.content-card p {
	margin-bottom: 15px;
}

/* Pricing Grid */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.pricing-card {
	background: white;
	padding: 2.5rem 2rem;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-10px);
}

.pricing-card.featured {
	border: 3px solid #993ff4;
	transform: scale(1.05);
}

.pricing-card h3 {
	color: #111827;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.price {
	font-size: 3rem;
	color: #667eea;
	color: #993ff4;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.pricing-card ul {
	list-style: none;
	margin-bottom: 2rem;
}

.pricing-card li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #e5e7eb;
}

.pricing-card li:last-child {
	border-bottom: none;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.contact-info h3 {
	color: #993ff4;
	margin-bottom: 1rem;
}

.contact-item {
	margin: 1rem 0;
	font-size: 1.1rem;
}

/* Form Styles */
.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #111827;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #e5e7eb;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #993ff4;
}

.error-message {
	color: #993ff4;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: block;
}

/* Footer */
.footer {
	background-color: #111827;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-brand h3 {
	color: #993ff4;
	margin-bottom: 1rem;
}

.footer-links h4 {
	margin-bottom: 1rem;
}

.footer-links ul {
	list-style: none;
}

.footer-links a {
	color: #e5e7eb;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #4a1184;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #374151;
	color: #9ca3af;
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.cookie-content p {
	margin: 0;
}

.cookie-content a {
	color: #993ff4;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 80px;
		flex-direction: column;
		background-color: #fafafa;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.hamburger {
		display: flex;
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.section h2 {
		font-size: 2rem;
	}

	.content-grid {
		grid-template-columns: 1fr;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.pricing-card.featured {
		transform: none;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.navbar {
		padding: 1rem 15px;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.section {
		padding: 30px 0;
	}

	.pricing-card {
		padding: 2rem 1.5rem;
	}

	.contact-form {
		padding: 1.5rem;
	}
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Logo Styles */
.nav-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-brand img {
	width: 40px;
	height: 40px;
}

.nav-brand a {
	text-decoration: none;
	color: inherit;
}

/* Section Styles */
.section {
	padding: 40px 0;
}

.section-alt {
	background-color: #f8fafc;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.section-icon {
	width: 60px;
	height: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	color: #993ff4;
	font-weight: bold;
}

/* Content Grid */
.content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.content-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.content-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(244, 63, 94, 0.1),
		transparent
	);
	transition: left 0.6s;
}

.content-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow:
		0 15px 35px rgba(244, 63, 94, 0.2),
		0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-card:hover::before {
	left: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 20px;
}

.content-card h3 {
	color: #993ff4;
	font-size: 1.5rem;
	margin-bottom: 15px;
	font-weight: bold;
}

.content-card p {
	color: #6b7280;
	line-height: 1.6;
}

/* Hero Section Improvements */
.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

.btn-secondary {
	background-color: transparent;
	color: white;
	border: 2px solid white;
	padding: 12px 30px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-secondary:hover {
	background-color: white;
	color: #380f60;
}

/* Gallery Section */
.gallery-section {
	padding: 80px 0;
}

.gallery-section h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #111827;
	margin-bottom: 50px;
	font-weight: bold;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.gallery-item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	height: 300px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.05);
}

.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	padding: 30px 20px 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

.gallery-overlay h3 {
	font-size: 1.3rem;
	margin-bottom: 5px;
	font-weight: bold;
}

.gallery-overlay p {
	font-size: 0.9rem;
	opacity: 0.9;
}

/* Pricing Improvements */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.pricing-card {
	background: white;
	padding: 40px 30px;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
	position: relative;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
	border: 3px solid #993ff4;
	transform: scale(1.05);
}

.pricing-card.featured::before {
	content: 'POPULAIRE';
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: #993ff4;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: bold;
}

.pricing-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
}

.pricing-card h3 {
	font-size: 1.8rem;
	color: #111827;
	margin-bottom: 15px;
	font-weight: bold;
}

.price {
	font-size: 3rem;
	color: #667eea;
	color: #993ff4;
	font-weight: bold;
	margin-bottom: 30px;
}

.pricing-card ul {
	list-style: none;
	margin-bottom: 30px;
	text-align: left;
}

.pricing-card li {
	padding: 8px 0;
	color: #6b7280;
	border-bottom: 1px solid #f3f4f6;
}

.pricing-card li:last-child {
	border-bottom: none;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-info h3 {
	font-size: 2rem;
	color: #111827;
	margin-bottom: 20px;
	font-weight: bold;
}

.contact-info p {
	color: #6b7280;
	margin-bottom: 30px;
	line-height: 1.6;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.contact-icon {
	width: 24px;
	height: 24px;
}

.contact-item span {
	color: #111827;
	font-weight: 500;
}

/* Form Styles */
.contact-form {
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #111827;
	font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #993ff4;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Footer */
.footer {
	background-color: #111827;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
	color: #993ff4;
	margin-bottom: 20px;
	font-weight: bold;
}

.footer-section h3 {
	font-size: 1.5rem;
}

.footer-section p {
	color: #9ca3af;
	line-height: 1.6;
	margin-bottom: 10px;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #993ff4;
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 20px;
	text-align: center;
	color: #9ca3af;
}

/* Cookie Popup Improvements */
.cookie-popup {
	max-width: 800px;
	margin: 0 auto;
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: white;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	z-index: 10000;
	border: 2px solid #993ff4;
}

.cookie-popup.hidden {
	display: none;
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.cookie-text {
	flex: 1;
	color: #111827;
	line-height: 1.5;
}

.cookie-text a {
	color: #993ff4;
	text-decoration: none;
}

.cookie-text a:hover {
	text-decoration: underline;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.cookie-btn.accept {
	background-color: #993ff4;
	color: white;
}

.cookie-btn.accept:hover {
	background-color: #430f77;
}

.cookie-btn.decline {
	background-color: #6b7280;
	color: white;
}

.cookie-btn.decline:hover {
	background-color: #4b5563;
}

/* Navigation Active State */
.nav-link.active {
	color: #993ff4;
	font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.hero-content h2 {
		font-size: 2rem;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-popup {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.nav-menu {
		display: none;
	}

	.hamburger {
		display: flex;
	}
}

/* Thank You Page Styles */
.thank-you-section {
	padding: 120px 0 80px;
	background: #ffffff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	color: #111827;
}

.thank-you-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.thank-you-icon {
	margin-bottom: 30px;
}

.success-icon {
	width: 80px;
	height: 80px;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

.thank-you-content h1 {
	margin-bottom: 20px;
	font-weight: bold;
}

.thank-you-subtitle {
	font-size: 1.2rem;
	color: #6b7280;
	margin-bottom: 40px;
	line-height: 1.6;
}

.submission-details {
	margin: 40px 0;
}

.submission-summary {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
}

.submission-summary h3 {
	color: #993ff4;
	margin-bottom: 20px;
	font-size: 1.5rem;
	font-weight: bold;
}

.summary-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
	text-align: left;
}

.summary-item {
	padding: 10px 0;
	border-bottom: 1px solid #e5e7eb;
}

.summary-item:last-child {
	border-bottom: none;
}

.summary-item strong {
	color: #111827;
	display: inline-block;
	min-width: 120px;
}

.thank-you-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.next-steps {
	margin-top: 60px;
}

.next-steps h3 {
	font-size: 2rem;
	color: #111827;
	margin-bottom: 40px;
	font-weight: bold;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.step-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
}

.step-card:hover {
	transform: translateY(-5px);
}

.step-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 20px;
}

.step-card h4 {
	color: #993ff4;
	font-size: 1.3rem;
	margin-bottom: 15px;
	font-weight: bold;
}

.step-card p {
	color: #6b7280;
	line-height: 1.6;
}

/* Policy Pages Styles */
.policy-page {
	padding: 120px 0 80px;
	background-color: #fafafa;
}

.policy-content {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	padding: 60px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-header {
	text-align: center;
	margin-bottom: 50px;
}

.policy-header h1 {
	font-size: 2.5rem;
	color: #111827;
	margin-bottom: 20px;
	font-weight: bold;
}

.policy-header p {
	color: #6b7280;
	font-size: 1.1rem;
}

.policy-section {
	margin-bottom: 40px;
}

.policy-section h2 {
	color: #993ff4;
	font-size: 1.8rem;
	margin-bottom: 20px;
	font-weight: bold;
}

.policy-section h3 {
	color: #111827;
	font-size: 1.3rem;
	margin-bottom: 15px;
	margin-top: 25px;
	font-weight: 600;
}

.policy-section p {
	color: #4b5563;
	line-height: 1.7;
	margin-bottom: 15px;
}

.policy-section ul {
	margin: 15px 0;
	padding-left: 30px;
}

.policy-section li {
	color: #4b5563;
	line-height: 1.6;
	margin-bottom: 8px;
}

.policy-contact {
	background: #f8fafc;
	padding: 30px;
	border-radius: 15px;
	margin-top: 60px;
	text-align: center;
}

.policy-contact h3 {
	color: #993ff4;
	margin-bottom: 15px;
}

.policy-contact p {
	color: #6b7280;
	margin-bottom: 10px;
}

.policy-contact a {
	color: #993ff4;
	text-decoration: none;
	font-weight: 600;
}

.policy-contact a:hover {
	text-decoration: underline;
}

/* Responsive adjustments for thank you and policy pages */
@media (max-width: 768px) {
	.thank-you-actions {
		flex-direction: column;
		align-items: center;
	}

	.steps-grid {
		grid-template-columns: 1fr;
	}

	.policy-content {
		padding: 30px 20px;
		margin: 0 20px;
	}

	.policy-header h1 {
		font-size: 2rem;
	}

	.summary-grid {
		grid-template-columns: 1fr;
	}
}

/* Active Navigation Highlighting */
.nav-link.active {
	color: #993ff4;
	font-weight: 600;
	position: relative;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #993ff4;
	border-radius: 1px;
}

/* Mobile active navigation */
@media (max-width: 768px) {
	.nav-link.active {
		background-color: rgba(220, 38, 38, 0.1);
		border-radius: 4px;
		padding: 8px 12px;
	}

	.nav-link.active::after {
		display: none;
	}
}

/* FAQ Section Styles */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 8px;
	margin-bottom: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px;
	cursor: pointer;
	background: white;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-question h3 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	flex: 1;
	padding-right: 16px;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	color: #993ff4;
	transition: transform 0.3s ease;
	min-width: 24px;
	text-align: center;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.3s ease,
		padding 0.3s ease;
	background: #f8f9fa;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 24px 24px 24px;
}

.faq-answer p {
	margin: 0;
	color: #666;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* Responsive FAQ */
@media (max-width: 768px) {
	.faq-question {
		padding: 20px;
	}

	.faq-question h3 {
		font-size: 1rem;
		padding-right: 12px;
	}

	.faq-item.active .faq-answer {
		padding: 0 20px 20px 20px;
	}
}

/* Thank You Page Styles */
.thank-you-page {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 0;
	margin-top: 100px;

	color: white;
}

.thank-you-content {
	text-align: center;
	max-width: 600px;
	padding: 3rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
	margin-bottom: 2rem;
	display: flex;
	justify-content: center;
}

.thank-you-content h1 {
	margin-bottom: 1rem;
}

.thank-you-content p {
	color: #333;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

.thank-you-actions {
	margin: 2rem 0;
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.thank-you-actions .btn-primary {
	background: white;
	color: #993ff4;
}

.thank-you-actions .btn-primary:hover {
	background: #993ff4;
	color: white;
	border-color: white;
}

.thank-you-actions .btn-secondary {
	background: #993ff4;
	color: white;
	border-color: white;
}

.thank-you-actions .btn-secondary:hover {
	background: white;
	color: #993ff4;
}

.thank-you-info {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.thank-you-info h3 {
	margin-bottom: 1rem;
	color: #993ff4;
}

.thank-you-info ul {
	list-style: none;
	padding: 0;
}

.thank-you-info li {
	margin-bottom: 0.5rem;
}

.thank-you-info a {
	color: #993ff4;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.thank-you-info a:hover {
	opacity: 1;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.thank-you-content {
		padding: 2rem 1rem;
		margin: 1rem;
	}

	.thank-you-actions {
		flex-direction: column;
		align-items: center;
	}

	.thank-you-actions .btn-primary,
	.thank-you-actions .btn-secondary {
		width: 200px;
	}
}

/* Navigation Container and Logo Styles */
.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.nav-logo:hover {
	transform: scale(1.05);
}

.logo-image {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.logo-text {
	font-size: 1.8rem;
	font-weight: bold;
	color: #993ff4;
	margin: 0;
}

/* Ensure navigation menu is aligned properly */
.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-item {
	margin: 0;
}

/* Mobile hamburger alignment */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	align-self: center;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
	.nav-container {
		padding: 1rem;
	}

	.logo-text {
		font-size: 1.5rem;
	}

	.logo-image {
		width: 32px;
		height: 32px;
	}

	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 80px;
		flex-direction: column;
		background-color: #fafafa;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
		gap: 1rem;
	}

	.nav-menu.active {
		left: 0;
	}
}

/* Gallery Slider Styles */
.gallery-slider {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-container {
	position: relative;
	width: 100%;
	height: 500px;
}

.gallery-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.gallery-slide.active {
	opacity: 1;
}

.gallery-slide .gallery-image {
	width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
	/* object-fit: cover; */
	border-radius: 15px;
}

.gallery-slide .gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 40px 30px 30px;
	border-radius: 0 0 15px 15px;
}

.gallery-slide .gallery-overlay h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.gallery-slide .gallery-overlay p {
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
	opacity: 0.9;
}

.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.gallery-nav:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
	left: 20px;
}

.gallery-next {
	right: 20px;
}

.gallery-nav svg {
	color: #333;
}

.gallery-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.gallery-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.gallery-dot.active {
	background: white;
	transform: scale(1.2);
}

.gallery-dot:hover {
	background: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.gallery-container {
		height: 350px;
	}

	.gallery-slide .gallery-overlay {
		padding: 20px 20px 20px;
	}

	.gallery-slide .gallery-overlay h3 {
		font-size: 1.2rem;
	}

	.gallery-slide .gallery-overlay p {
		font-size: 0.9rem;
	}

	.gallery-nav {
		width: 40px;
		height: 40px;
	}

	.gallery-prev {
		left: 10px;
	}

	.gallery-next {
		right: 10px;
	}

	.gallery-dot {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 480px) {
	.gallery-container {
		height: 280px;
	}

	.gallery-slide .gallery-overlay {
		padding: 15px;
	}

	.gallery-slide .gallery-overlay h3 {
		font-size: 1.1rem;
	}

	.gallery-slide .gallery-overlay p {
		font-size: 0.85rem;
	}
}

/* Hero Image Section Styles */
.hero-image-section {
	padding: 60px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-image-container {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.hero-image:hover {
	transform: scale(1.05);
}

.hero-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 40px 30px 30px;
	text-align: center;
}

.hero-image-overlay h3 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 10px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-image-overlay p {
	font-size: 1.1rem;
	opacity: 0.9;
	margin: 0;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
	.hero-image-section {
		padding: 40px 0;
	}

	.hero-image {
		height: 300px;
	}

	.hero-image-overlay {
		padding: 30px 20px 20px;
	}

	.hero-image-overlay h3 {
		font-size: 1.5rem;
	}

	.hero-image-overlay p {
		font-size: 1rem;
	}
}

/* Enhanced Thank You Page Styles */
.thank-you-section {
	box-shadow: inset 0 0 100px rgba(103, 126, 234, 0.05);
}

.thank-you-content {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(103, 126, 234, 0.1);
}

.thank-you-content h1 {
	color: #111827;
}

.thank-you-subtitle {
	color: #6b7280;
}

.thank-you-actions .btn-primary {
	background: #993ff4;
	border: none;
	color: white;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.thank-you-actions .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.thank-you-actions .btn-secondary {
	background: transparent;
	color: #993ff4;
	border: 2px solid #993ff4;
}

.thank-you-actions .btn-secondary:hover {
	background: #993ff4;
	color: white;
}

.thank-you-info {
	border-top: 1px solid rgba(103, 126, 234, 0.2);
}

.thank-you-info h3 {
	color: #993ff4;
}

.thank-you-info a {
	color: #993ff4;
	opacity: 1;
}

.thank-you-info a:hover {
	color: #360c5f;
}

/* Hero Image Styles */
.hero-image {
	margin-top: 2rem;
	text-align: center;
	margin-bottom: 12rem;
}

.hero-img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.hero-img:hover {
	transform: scale(1.02);
}

/* Gallery Slider Styles */
.gallery-slider {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}

.gallery-container {
	display: flex;
	transition: transform 0.5s ease;
}

.gallery-slide {
	min-width: 100%;
	position: relative;
	display: none;
}

.gallery-slide.active {
	display: block;
}

.gallery-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 10px;
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	padding: 20px;
	border-radius: 0 0 10px 10px;
}

.gallery-dot:hover {
	background: #350b5f;
}

/* Fix inspiration section overlap */
#inspiration {
	margin-top: 60px;
}

/* Thank You Page Additional Styles */
.thank-you-additional {
	padding: 60px 0;
	background: #f8f9fa;
}

.thank-you-additional .content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.content-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.content-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(244, 63, 94, 0.1),
		transparent
	);
	transition: left 0.6s;
}

.content-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow:
		0 15px 35px rgba(244, 63, 94, 0.2),
		0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-card:hover::before {
	left: 100%;
}

.thank-you-additional .card-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
}

.thank-you-newsletter {
	background: linear-gradient(135deg, #993ff4 0%, #764ba2 100%);
	padding: 40px;
	border-radius: 15px;
	text-align: center;
	color: white;
}

.newsletter-form {
	display: flex;
	gap: 15px;
	max-width: 400px;
	margin: 20px auto 0;
}

.newsletter-input {
	flex: 1;
	padding: 12px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
}

@media (max-width: 768px) {
	.newsletter-form {
		flex-direction: column;
	}
}

/* Thank You Page Additional Styles */
.thank-you-additional {
	padding: 60px 0;
}

.thank-you-stats {
	padding: 60px 0;
	background: #993ff4;
	color: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
	padding: 20px;
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 10px;
	color: #fff;
}

.stat-label {
	font-size: 1.1rem;
	opacity: 0.9;
}

.thank-you-newsletter {
	padding: 60px 0;
	background: #f8f9fa;
}

@media (max-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.stat-number {
		font-size: 2.5rem;
	}
}

@media (max-width: 480px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}
}

/* Стилі для посилань btn-outline */
.btn-outline {
	display: inline-block;
	padding: 12px 24px;
	border: 2px solid #993ff4;
	background-color: transparent;
	color: #993ff4;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn-outline:hover {
	background-color: #3b0f66;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-outline:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 123, 255, 0.2);
}

.btn-outline::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.btn-outline:hover::before {
	left: 100%;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
	.btn-outline {
		padding: 10px 20px;
		font-size: 13px;
		width: 100%;
		margin-bottom: 10px;
	}
}

/* Покращені hover-ефекти для кнопок */
.btn-primary {
	background: linear-gradient(135deg, #993ff4, #2e0c51);
	color: white;
	border: none;
	padding: 12px 30px;
	font-size: 1rem;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #e11d48, #be185d);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(244, 63, 94, 0.4);
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:active {
	transform: translateY(-1px) scale(1.02);
	box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.btn-secondary {
	background: linear-gradient(135deg, #e5e7eb, #d1d5db);
	color: #111827;
	border: 2px solid transparent;
	padding: 8px 20px;
	font-size: 0.9rem;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
}

.btn-secondary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(17, 24, 39, 0.1),
		transparent
	);
	transition: left 0.5s;
}

.btn-secondary:hover {
	background: linear-gradient(135deg, #d1d5db, #9ca3af);
	border-color: #6b7280;
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 6px 20px rgba(107, 114, 128, 0.2);
}

.btn-secondary:hover::before {
	left: 100%;
}

.btn-secondary:active {
	transform: translateY(0) scale(1.01);
	box-shadow: 0 2px 10px rgba(107, 114, 128, 0.15);
}

/* Покращені hover-ефекти для іконок */
.section-icon {
	width: 60px;
	height: 60px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.section-icon:hover {
	transform: scale(1.2) rotate(5deg);
	filter: drop-shadow(0 8px 16px rgba(244, 63, 94, 0.3));
}

.card-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 20px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-icon:hover {
	transform: scale(1.15) translateY(-5px);
	filter: drop-shadow(0 6px 12px rgba(244, 63, 94, 0.25));
}

/* Анімація пульсації для іконок */
@keyframes pulse-glow {
	0% {
		box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.4);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(244, 63, 94, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(244, 63, 94, 0);
	}
}

.section-icon:hover,
.card-icon:hover {
	animation: pulse-glow 1.5s infinite;
}

/* CSS Keyframes для анімацій при скролі */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Класи для анімацій при скролі */
.scroll-animate {
	opacity: 0;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-fadeInUp {
	animation: fadeInUp 0.8s ease-out forwards;
}

.scroll-animate.animate-fadeInLeft {
	animation: fadeInLeft 0.8s ease-out forwards;
}

.scroll-animate.animate-fadeInRight {
	animation: fadeInRight 0.8s ease-out forwards;
}

.scroll-animate.animate-scaleIn {
	animation: scaleIn 0.8s ease-out forwards;
}

.scroll-animate.animate-slideInUp {
	animation: slideInUp 0.8s ease-out forwards;
}

/* Затримки для послідовної анімації */
.scroll-animate.delay-1 {
	animation-delay: 0.1s;
}

.scroll-animate.delay-2 {
	animation-delay: 0.2s;
}

.scroll-animate.delay-3 {
	animation-delay: 0.3s;
}

.scroll-animate.delay-4 {
	animation-delay: 0.4s;
}

.scroll-animate.delay-5 {
	animation-delay: 0.5s;
}
