/* 
==============================================
TABLE OF CONTENTS
==============================================
1. General Styles
2. Typography
3. Layout & Grid
4. Header
5. Hero Section
6. Section Styles
7. Card Components
8. Form Styles
9. Testimonials Carousel
10. FAQ Accordion
11. Footer
12. Cookie Consent
13. Policy Pages
14. Thank You Page
15. Media Queries
==============================================
*/

/* 1. General Styles
========================================== */
:root {
	--primary-color: #005BAC;
	--secondary-color: #FF4081;
	--accent-color: #00B894;
	--text-color: #1D1E22;
	--light-text: #4A4A4A;
	--background: #F4F8FD;
	--white: #FFFFFF;
	--grey-100: #F5F5F5;
	--grey-200: #EEEEEE;
	--grey-300: #E0E0E0;
	--grey-400: #BDBDBD;
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	font-family: 'Arial', sans-serif;
	color: var(--text-color);
	background-color: var(--background);
	line-height: 1.6;
}

section {
	padding: 60px 0;
}

section[id] {
	scroll-margin-top: 80px;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* 2. Typography
========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 0.5em;
	font-weight: 700;
	line-height: 1.3;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 0.7em;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1.2em;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--secondary-color);
}

.section-title {
	text-align: center;
	margin-bottom: 2.5rem;
	position: relative;
	font-size: 2.2rem;
}

.section-title:after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: var(--primary-color);
	margin: 15px auto 0;
}

ul {
	list-style-position: inside;
	margin-bottom: 1.2em;
}

/* 3. Layout & Grid
========================================== */
.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.col {
	padding: 0 15px;
	flex-grow: 1;
	flex-basis: 100%;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

/* 4. Header
========================================== */
.site-header {
	background-color: var(--white);
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 10px 0;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo a {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

.main-nav ul {
	display: flex;
	align-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-nav li {
	margin-left: 30px;
}

.main-nav a {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.main-nav a:hover {
	color: var(--primary-color);
}

.btn-nav {
	background-color: var(--primary-color);
	color: var(--white) !important;
	padding: 8px 16px;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.btn-nav:hover {
	background-color: var(--secondary-color);
}

.menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	cursor: pointer;
}

.menu-icon .bar {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--text-color);
	margin: 5px 0;
	transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {
	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--white);
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.menu-toggle:checked~.main-nav {
		max-height: 360px;
	}

	.main-nav ul {
		flex-direction: column;
		padding: 10px 0;
	}

	.main-nav li {
		margin: 10px 20px;
	}

	.menu-icon {
		display: block;
	}

	.menu-toggle:checked~.menu-icon .bar:first-child {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

	.menu-toggle:checked~.menu-icon .bar:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked~.menu-icon .bar:last-child {
		transform: rotate(45deg) translate(-5px, -6px);
	}
}

/* 5. Hero Section
========================================== */
.hero-section {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/furbe.jpg') no-repeat center center;
	background-size: cover;
	color: var(--white);
	padding: 120px 0;
	text-align: center;
	position: relative;
}

.hero-container {
	max-width: 800px;
	margin: 0 auto;
}

.hero-section h1 {
	font-size: 2.8rem;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 40px;
	opacity: 0.9;
}

/* 6. Section Styles
========================================== */
.about-section {
	background-color: var(--white);
	padding: 80px 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.about-text {
	padding-right: 20px;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.feature {
	text-align: center;
	padding: 20px;
	background-color: var(--grey-100);
	border-radius: 8px;
}

.feature-icon {
	margin-bottom: 15px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon img {
	max-height: 60px;
	object-fit: contain;
}

.services-section {
	background-color: var(--grey-100);
	padding: 80px 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.benefits-section {
	background-color: var(--white);
	padding: 80px 0;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.testimonials-section {
	background-color: var(--grey-100);
	padding: 80px 0;
}

.contact-section {
	background-color: var(--white);
	padding: 80px 0;
}

.faq-section {
	background-color: var(--grey-100);
	padding: 80px 0;
}

/* 7. Card Components
========================================== */
.service-card {
	background-color: var(--white);
	border-radius: 8px;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
	height: 200px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card h3 {
	padding: 20px 20px 10px;
}

.service-card p {
	padding: 0 20px 20px;
}

.service-card .btn {
	margin: 0 20px 20px;
	display: inline-block;
}

.benefit-card {
	background-color: var(--white);
	border-radius: 8px;
	padding: 30px 20px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-5px);
}

.benefit-icon {
	margin-bottom: 20px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.benefit-icon img {
	max-height: 60px;
	object-fit: contain;
}

/* 8. Form Styles
========================================== */
.form-container {
	max-width: 800px;
	margin: 0 auto;
	background-color: var(--white);
	padding: 30px;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.form-group {
	flex: 1;
	min-width: 250px;
	padding: 0 10px;
}

.full-width {
	flex-basis: 100%;
}

label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--grey-300);
	border-radius: 4px;
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(0, 91, 172, 0.2);
	outline: none;
}

select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 16px;
	padding-right: 40px;
}

/* Custom select styles for option background */
select option {
	background-color: var(--white);
	padding: 10px;
}

.checkbox-container {
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
}

input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 5px;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background-color: var(--primary-color);
	color: var(--white);
}

.btn-primary:hover {
	background-color: #004c8c;
	color: var(--white);
}

.btn-secondary {
	background-color: var(--secondary-color);
	color: var(--white);
}

.btn-secondary:hover {
	background-color: #e03069;
	color: var(--white);
}

.btn-sm {
	padding: 8px 16px;
	font-size: 0.875rem;
}

.btn.full-width {
	display: block;
	width: 100%;
}

/* 9. Testimonials Carousel
========================================== */
.testimonial-carousel {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.testimonial-carousel input {
	display: none;
}

.testimonial-slides {
	position: relative;
	overflow: hidden;
	height: 300px;
}

.testimonial-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

#testimonial-1:checked~.testimonial-slides .testimonial-slide:nth-child(1),
#testimonial-2:checked~.testimonial-slides .testimonial-slide:nth-child(2),
#testimonial-3:checked~.testimonial-slides .testimonial-slide:nth-child(3) {
	opacity: 1;
}

.testimonial-content {
	background-color: var(--white);
	padding: 20px;
	border-radius: 8px;
	box-shadow: var(--shadow);
	text-align: center;
	max-width: 90%;
}

.testimonial-content p {
	font-style: italic;
	font-size: 1.1rem;
	margin-bottom: 20px;
}

.client-info h4 {
	margin-bottom: 5px;
}

.client-info p {
	font-size: 0.9rem;
	margin-bottom: 0;
}

.testimonial-controls {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.testimonial-controls label {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--grey-300);
	margin: 0 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

#testimonial-1:checked~.testimonial-controls label:nth-child(1),
#testimonial-2:checked~.testimonial-controls label:nth-child(2),
#testimonial-3:checked~.testimonial-controls label:nth-child(3) {
	background-color: var(--primary-color);
	transform: scale(1.2);
}

/* 10. FAQ Accordion
========================================== */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 15px;
	border: 1px solid var(--grey-300);
	border-radius: 8px;
	overflow: hidden;
}

.faq-toggle {
	display: none;
}

.faq-question {
	display: block;
	padding: 15px 20px;
	background-color: var(--white);
	color: var(--text-color);
	font-weight: 600;
	cursor: pointer;
	position: relative;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background-color: var(--grey-100);
}

.faq-question:after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	font-weight: 700;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: var(--white);
}

.faq-answer p,
.faq-answer ul {
	padding: 0 20px 20px;
}

.faq-toggle:checked~.faq-answer {
	max-height: 500px;
}

.faq-toggle:checked~.faq-question {
	background-color: var(--grey-100);
}

.faq-toggle:checked~.faq-question:after {
	content: '−';
}

/* 11. Footer
========================================== */
.site-footer {
	background-color: var(--text-color);
	color: var(--white);
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}

.footer-col h3 {
	margin-bottom: 20px;
	color: var(--white);
	font-size: 1.2rem;
}

.footer-logo a {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 15px;
	display: inline-block;
}

.footer-nav,
.contact-info,
.legal-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-nav li,
.legal-links li {
	margin-bottom: 10px;
}

.footer-nav a,
.legal-links a,
.contact-info a {
	color: var(--grey-300);
	transition: color 0.3s ease;
	text-decoration: none;
}

.footer-nav a:hover,
.legal-links a:hover,
.contact-info a:hover {
	color: var(--white);
}

.contact-info li {
	margin-bottom: 15px;
}

.contact-info span {
	display: block;
	color: var(--grey-400);
	margin-bottom: 3px;
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
	font-size: 0.9rem;
	color: var(--grey-400);
}

/* 12. Cookie Consent
========================================== */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(29, 30, 34, 0.9);
	color: var(--white);
	padding: 15px 0;
	z-index: 9999;
	display: none;
}

.cookie-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.cookie-content p {
	margin: 0;
	font-size: 0.9rem;
}

.cookie-content a {
	color: var(--accent-color);
	text-decoration: underline;
}

/* 13. Policy Pages
========================================== */
.policy-section {
	padding: 60px 0;
}

.policy-section a {

	word-break: break-word;
	overflow-wrap: break-word;
}

.policy-container {
	max-width: 900px;
	margin: 5rem auto;
	background-color: var(--white);
	padding: 40px;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.policy-container h1 {
	margin-bottom: 30px;
	text-align: center;
}

.policy-container h2 {
	margin-top: 30px;
	margin-bottom: 20px;
	font-size: 1.5rem;
	color: var(--primary-color);
}

.policy-container h3 {
	margin-top: 20px;
	font-size: 1.2rem;
}

.policy-container p,
.policy-container ul {
	margin-bottom: 15px;
}

.policy-container ul {
	padding-left: 20px;
}

.policy-container ul li {
	margin-bottom: 5px;
}

/* 14. Thank You Page
========================================== */
.thanks-section {
	padding: 80px 0;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.thanks-container {
	max-width: 700px;
	margin: 5rem auto;
	background-color: var(--white);
	padding: 50px;
	border-radius: 8px;
	box-shadow: var(--shadow);
	text-align: center;
}

.thanks-container h1 {
	color: var(--primary-color);
	margin-bottom: 20px;
}

.thanks-container p {
	margin-bottom: 30px;
	font-size: 1.1rem;
}

.thanks-container .btn {
	margin-top: 20px;
}

/* 15. Media Queries
========================================== */
@media screen and (max-width: 1024px) {
	.about-content {
		grid-template-columns: 1fr;
	}

	.about-text {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.hero-section h1 {
		font-size: 2.2rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}
}

@media screen and (max-width: 768px) {
	section {
		padding: 50px 0;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.services-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.testimonial-slides {
		height: 350px;
	}

	.policy-container {
		padding: 30px;
		margin: 3rem auto;
	}
}

@media screen and (max-width: 576px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.7rem;
	}

	h3 {
		font-size: 1.3rem;
	}

	.hero-section {
		padding: 80px 0;
	}

	.hero-section h1 {
		font-size: 1.8rem;
	}

	.form-group {
		padding: 0;
	}

	.form-row {
		margin-bottom: 10px;
	}

	.thanks-container {
		padding: 30px;
	}
}