/* Color Palette
--mandarin: #FF6F3C (Main color)
--aquamarine: #ADEFD1 (Accent)
--dark-asphalt: #2D2D2D (Background)
--porcelain: #F3F4F6 (Text)
--lavender: #D6C5F0 (Contrast)
*/

:root {
	--mandarin: #ff6f3c;
	--aquamarine: #adefd1;
	--dark-asphalt: #2d2d2d;
	--porcelain: #f3f4f6;
	--lavender: #d6c5f0;
}

/* Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: var(--porcelain);
	background-color: var(--dark-asphalt);
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--mandarin);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--aquamarine);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	background-color: var(--mandarin);
	color: var(--porcelain);
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn:hover {
	background-color: var(--aquamarine);
	color: var(--dark-asphalt);
}

section {
	padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 20px;
	line-height: 1.2;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 40px;
}

h3 {
	font-size: 1.8rem;
}

/* Header Styles */
header {
	background-color: rgba(45, 45, 45, 0.95);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo img {
	height: 50px;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 20px;
}

nav a {
	color: var(--porcelain);
	font-weight: 600;
	position: relative;
}

nav a.active,
nav a:hover {
	color: var(--mandarin);
}

nav a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--mandarin);
	transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
	width: 100%;
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 0;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(45, 45, 45, 0.7);
}

.hero .container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	width: 90%;
}

.hero h1 {
	color: var(--porcelain);
	margin-bottom: 20px;
	font-size: 3.5rem;
}

.hero p {
	color: var(--porcelain);
	font-size: 1.2rem;
	margin-bottom: 40px;
}

.hero .btn {
	font-size: 1.2rem;
	padding: 15px 30px;
}

/* About Section */
.about {
	background-color: var(--dark-asphalt);
	text-align: center;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.about-item {
	padding: 30px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.about-item:hover {
	transform: translateY(-10px);
}

.about-item h3 {
	color: var(--mandarin);
}

/* Services Section */
.services {
	background-color: rgba(45, 45, 45, 0.8);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
}

.service-content {
	padding: 20px;
}

.service-title {
	color: var(--mandarin);
	margin-bottom: 10px;
}

.service-price {
	display: inline-block;
	background-color: var(--lavender);
	color: var(--dark-asphalt);
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: bold;
	margin: 10px 0;
}

/* Advantages Section */
.advantages {
	background-color: var(--dark-asphalt);
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.advantage-item {
	text-align: center;
	padding: 20px;
}

.advantage-icon {
	font-size: 2.5rem;
	color: var(--mandarin);
	margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
	background-color: rgba(45, 45, 45, 0.8);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background-color: rgba(255, 255, 255, 0.05);
	padding: 30px;
	border-radius: 8px;
	position: relative;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-author {
	color: var(--mandarin);
	font-weight: bold;
}

.testimonial-company {
	color: var(--aquamarine);
	font-size: 0.9rem;
}

/* Order Form Section */
.order {
	background-color: var(--dark-asphalt);
}

.order-form-container {
	max-width: 700px;
	margin: 0 auto;
	padding: 40px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: var(--aquamarine);
}

.form-control {
	width: 100%;
	padding: 12px;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	color: var(--porcelain);
}

.form-control:focus {
	outline: none;
	border-color: var(--mandarin);
}

.form-check {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.form-check input {
	margin-top: 6px;
	margin-right: 10px;
}

.radio-group {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
}

.radio-option {
	display: flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	padding: 12px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.radio-option:hover {
	border-color: var(--mandarin);
	background-color: rgba(255, 255, 255, 0.15);
}

.radio-option input[type="radio"] {
	margin-right: 12px;
	cursor: pointer;
}

.radio-option label {
	width: 100%;
	font-weight: normal;
	cursor: pointer;
	margin: 0;
	color: var(--porcelain);
}

.radio-option .price {
	font-weight: bold;
	color: var(--aquamarine);
}

.radio-option input[type="radio"]:checked + label {
	color: var(--mandarin);
}

.form-check label {
	font-size: 0.9rem;
}

/* FAQ Section */
.faq {
	background-color: rgba(45, 45, 45, 0.8);
}

.faq-item {
	margin-bottom: 20px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 20px;
}

.faq-question {
	color: var(--mandarin);
	font-weight: bold;
	margin-bottom: 10px;
}

/* Contact Section */
.contact {
	background-color: var(--dark-asphalt);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-info {
	padding: 20px;
}

.contact-map {
	border-radius: 10px;
	overflow: hidden;
}

.contact-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Footer */
footer {
	background-color: rgba(25, 25, 25, 0.9);
	padding: 60px 0 20px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-logo {
	max-height: 60px;
	margin-bottom: 20px;
}

.footer-about p {
	margin-bottom: 20px;
}

.footer-contact h3,
.footer-legal h3 {
	color: var(--mandarin);
	margin-bottom: 20px;
}

.footer-legal ul {
	list-style: none;
}

.footer-legal li {
	margin-bottom: 10px;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(25, 25, 25, 0.95);
	padding: 15px;
	display: none;
	justify-content: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	width: 100%;
	padding: 0 20px;
}

.cookie-content p {
	margin-right: 20px;
}

#accept-cookies {
	background-color: var(--mandarin);
	color: var(--porcelain);
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	white-space: nowrap;
}

#accept-cookies:hover {
	background-color: var(--aquamarine);
	color: var(--dark-asphalt);
}

/* Policy Pages */
.policy-page {
	padding-top: 120px;
	min-height: calc(100vh - 300px);
}

.policy-container {
	max-width: 800px;
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.05);
	padding: 40px;
	border-radius: 8px;
}

.policy-container h1 {
	color: var(--mandarin);
	margin-bottom: 30px;
}

.policy-container h2 {
	color: var(--aquamarine);
	font-size: 1.8rem;
	margin: 30px 0 15px;
	text-align: left;
}

.policy-container p,
.policy-container ul {
	margin-bottom: 20px;
}

.policy-container ul {
	margin-left: 20px;
}

/* Thank You Page */
.merci-page {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
	background-color: rgba(45, 45, 45, 0.95);
}

.merci-container {
	max-width: 600px;
	width: 90%;
	margin: 0 auto;
	padding: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	border: 1px solid var(--mandarin);
}

.merci-container h1 {
	color: var(--mandarin);
	margin-bottom: 20px;
	font-size: 2.5rem;
}

.merci-container .btn {
	margin-top: 30px;
	padding: 15px 30px;
	font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.hero h1 {
		font-size: 3rem;
	}
}

@media (max-width: 768px) {
	nav ul {
		display: none;
	}

	.header-content {
		justify-content: center;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1rem;
	}

	section {
		padding: 60px 0;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-content p {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

@media (max-width: 480px) {
	h1,
	.hero h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.btn {
		padding: 10px 20px;
	}

	.policy-container {
		padding: 20px;
	}
}
