/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

section[id] {
	scroll-margin-top: 40px;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-color: #FDF9F3;
	color: #1D3557;
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Rubik', sans-serif;
	margin-bottom: 1rem;
	color: #1D3557;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	text-align: center;
}

h3 {
	font-size: 1.5rem;
}

a {
	text-decoration: none;
	color: #1D3557;
	transition: color 0.3s ease;
}

a:hover {
	color: #E63946;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.section-padding {
	padding: 5rem 0;
}

.text-center {
	text-align: center;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, #E63946, #1D3557);
	color: #F1FAEE;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	font-family: 'Montserrat', sans-serif;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	color: #F1FAEE;
}

/* Header */
header {
	background-color: rgba(253, 249, 243, 0.95);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	font-family: 'Rubik', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #1D3557;
}

/* Navigation */
.hamburger {
	display: none;
}

.menu-toggle {
	display: none;
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 2rem;
}

nav ul li a {
	font-weight: 500;
}

/* Hero Section */
.hero {
	position: relative;
	height: 100vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #F1FAEE;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(29, 53, 87, 0.7);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	padding: 0 1rem;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: #F1FAEE;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

/* About Section */
.about-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	align-items: center;
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: #F1FAEE;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
}

.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.service-content {
	padding: 1.5rem;
}

/* Benefits Section */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.benefit-item {
	text-align: center;
	padding: 2rem;
	background-color: #F1FAEE;
	border-radius: 1rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item img {
	max-width: 80px;
	margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-slider {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.testimonial-card {
	background-color: #F1FAEE;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-author {
	font-weight: 600;
	display: flex;
	align-items: center;
}

.testimonial-author img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 1rem;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	border-radius: 0.5rem;
	overflow: hidden;
}

.faq-question {
	background-color: #F1FAEE;
	padding: 1rem;
	cursor: pointer;
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	font-weight: 500;
}

.faq-checkbox {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: #fff;
	padding: 0 1rem;
}

.faq-checkbox:checked~.faq-content {
	max-height: 500px;
	padding: 1rem;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-checkbox:checked~.faq-question::after {
	transform: translateY(-50%) rotate(45deg);
}

/* Contact Section */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-item img {
	width: 24px;
}

.map-container {
	border-radius: 1rem;
	overflow: hidden;
	height: 300px;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Form Section */
.form-section {
	background-color: #1D3557;
	color: #F1FAEE;
	padding: 5rem 0;
	position: relative;
}

form a,
footer a {
	color: #0aff68;
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 2.5rem;
	border-radius: 1rem;
	backdrop-filter: blur(5px);
}

.form-container h2 {
	color: #F1FAEE;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-control {
	width: 100%;
	padding: 1rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.1);
	color: #F1FAEE;
}

.form-control::placeholder {
	color: rgba(241, 250, 238, 0.7);
}

select.form-control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F1FAEE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

select.form-control option {
	background-color: #1D3557;
	color: #F1FAEE;
	padding: 10px;
}

select.form-control option:hover,
select.form-control option:focus,
select.form-control option:active,
select.form-control option:checked {
	background-color: #E63946;
	color: #F1FAEE;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.checkbox-group input {
	margin-right: 0.5rem;
	margin-top: 0.3rem;
}

.form-btn {
	width: 100%;
}

/* Thank You Page */
.gracias-container {
	margin: 10rem auto 5rem;
	max-width: 600px;
	text-align: center;
	padding: 3rem;
	border: 2px solid #1D3557;
	border-radius: 1rem;
}

/* Policy Pages */
.policy-container {
	max-width: 800px;
	margin: 5rem auto;
	padding: 3rem;
	border: 1px solid #1D3557;
	border-radius: 1rem;
}

.policy-container h1 {
	font-size: 2rem;
}

/* Footer */
footer {
	background-color: #1D3557;
	color: #F1FAEE;
	padding: 3rem 0 1.5rem;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-logo {
	font-family: 'Rubik', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #F1FAEE;
	margin-bottom: 1rem;
}

.footer-about p {
	margin-bottom: 1rem;
}

.footer-links h3,
.footer-contact h3 {
	color: #F1FAEE;
	margin-bottom: 1.5rem;
}

.footer-links ul {
	list-style: none;
}

.footer-links ul li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #F1FAEE;
}

.footer-contact p {
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
}

.footer-contact img {
	width: 20px;
	margin-right: 0.5rem;
}

.footer-bottom {
	text-align: center;
	border-top: 1px solid rgba(241, 250, 238, 0.2);
	padding-top: 1.5rem;
}

/* Cookie Consent */
.cookie-consent {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background-color: #1D3557;
	color: #F1FAEE;
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: bottom 0.5s ease;
	z-index: 9999;
}

.cookie-consent.show {
	bottom: 0;
}

.cookie-text {
	margin-right: 2rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

.cookie-btn {
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	cursor: pointer;
}

.accept-cookies {
	background-color: #E63946;
	color: #F1FAEE;
	border: none;
}

.reject-cookies {
	background-color: transparent;
	border: 1px solid #F1FAEE;
	color: #F1FAEE;
}

/* Mobile Menu */
@media (max-width: 768px) {
	.hamburger {
		display: block;
		cursor: pointer;
		position: relative;
		z-index: 1001;
		width: 30px;
		height: 20px;
	}

	.hamburger span {
		display: block;
		width: 100%;
		height: 2px;
		background-color: #1D3557;
		margin: 6px 0;
		transition: all 0.3s ease;
	}

	.menu-toggle {
		display: block;
		position: absolute;
		opacity: 0;
		cursor: pointer;
		height: 0;
		width: 0;
	}

	.menu-toggle:checked~.hamburger span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.menu-toggle:checked~.hamburger span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked~.hamburger span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -8px);
	}

	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		height: 100vh;
		background-color: #FDF9F3;
		padding: 5rem 2rem;
		transition: right 0.3s ease;
	}

	.menu-toggle:checked~nav {
		right: 0;
	}

	nav ul {
		flex-direction: column;
	}

	nav ul li {
		margin: 0 0 2rem 0;
	}

	.contact-grid,
	.about-grid {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 2rem;
	}
}