/* 
   Main Stylesheet for Domain
   Color Palette:
   - Gradient: #F8E8A6 → #E2B0FF
   - Accents: #9F0D7F, #2C2E43, #FFE69A
   - Text: #1B1B2F, #4E4E50
*/

/* ===== GLOBAL 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: Arial, Helvetica, sans-serif;
	line-height: 1.6;
	color: #1B1B2F;
	background: linear-gradient(135deg, #F8E8A6 0%, #E2B0FF 100%);
	background-attachment: fixed;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	color: #2C2E43;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #9F0D7F;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #2C2E43;
}

img {
	max-width: 100%;
	height: auto;
}

section {
	padding: 4rem 0;
}

/* ===== BUTTONS ===== */
.cta-button {
	display: inline-block;
	padding: 12px 30px;
	background-color: #9F0D7F;
	color: white;
	border-radius: 30px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
	background-color: #2C2E43;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.text-button {
	display: inline-block;
	font-weight: bold;
	color: #9F0D7F;
	padding-bottom: 2px;
	border-bottom: 2px solid #9F0D7F;
	transition: all 0.3s ease;
}

.text-button:hover {
	color: #2C2E43;
	border-color: #2C2E43;
}

.submit-button {
	display: inline-block;
	padding: 12px 30px;
	background-color: #9F0D7F;
	color: white;
	border: none;
	border-radius: 30px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: 100%;
}

.submit-button:hover {
	background-color: #2C2E43;
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ===== HEADER ===== */
.site-header {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.logo a {
	font-size: 1.8rem;
	font-weight: bold;
	color: #9F0D7F;
	text-transform: lowercase;
}

.menu-toggle {
	display: none;
}

.menu-button {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
}

.menu-button span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: #9F0D7F;
	transition: all 0.3s ease;
}

.main-nav ul {
	display: flex;
	align-items: center;
	list-style: none;
}

.main-nav li {
	margin-left: 1.5rem;
}

.main-nav a {
	color: #2C2E43;
	font-weight: 500;
}

.main-nav a:hover {
	color: #9F0D7F;
}

.main-nav a.cta-button {
	color: white;
}

/* ===== HERO SECTION ===== */
.hero-section {
	background: url('./img/YNpYw.jpg') no-repeat center center;
	background-size: cover;
	padding: 7rem 0;
	position: relative;
}

.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(44, 46, 67, 0.7);
}

.hero-content {
	position: relative;
	text-align: center;
	color: white;
	max-width: 800px;
	margin: 0 auto;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: white;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

/* ===== ABOUT SECTION ===== */
.about-content {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.about-image {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
}

.about-text {
	flex: 1;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
	height: 200px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-content {
	padding: 1.5rem;
	text-align: center;
	flex: 1;
}

.service-card h3 {
	margin-bottom: 1rem;
	color: #9F0D7F;
}

.service-card p {
	margin-bottom: 1.5rem;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.benefit-item {
	background: white;
	border-left: 4px solid #9F0D7F;
	padding: 1.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item h3 {
	color: #9F0D7F;
	margin-bottom: 0.5rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.testimonial-card {
	background: white;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
	position: relative;
	padding: 0 0 1rem 0;
}

.testimonial-content::before {
	content: " ";
	font-size: 4rem;
	position: absolute;
	top: -20px;
	left: -10px;
	color: rgba(159, 13, 127, 0.1);
}

.testimonial-author {
	border-top: 1px solid #eee;
	padding-top: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
}

.form-container {
	max-width: 700px;
	margin: 0 auto;
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: #9F0D7F;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
}

.checkbox-group input {
	width: auto;
	margin-right: 10px;
	margin-top: 5px;
}

.required {
	color: #9F0D7F;
}

.form-note {
	font-size: 0.9rem;
	margin-top: 1rem;
	text-align: center;
}

/* ===== FAQ SECTION ===== */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 5px;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-toggle {
	display: none;
}

.faq-question {
	position: relative;
	display: block;
	padding: 1.5rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.faq-toggle:checked+.faq-question::after {
	content: '-';
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-toggle:checked+.faq-question+.faq-answer {
	max-height: 500px;
}

.faq-toggle:checked+.faq-question {
	background: rgba(159, 13, 127, 0.05);
}

.faq-answer p {
	padding: 1.5rem;
	border-top: 1px solid #eee;
}

/* ===== FOOTER ===== */
.site-footer {
	background: #2C2E43;
	color: white;
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.site-footer h3 {
	color: #FFE69A;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.footer-info p {
	opacity: 0.8;
}

.footer-contact address {
	font-style: normal;
	opacity: 0.8;
}

.footer-contact a {
	color: white;
}

.footer-contact a:hover {
	color: #FFE69A;
}

.footer-links ul,
.footer-legal ul {
	list-style: none;
}

.footer-links li,
.footer-legal li {
	margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
	color: white;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
	color: #FFE69A;
	opacity: 1;
}

.copyright {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	font-size: 0.9rem;
	opacity: 0.6;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #2C2E43;
	color: white;
	z-index: 9999;
	box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.cookie-content p {
	margin: 0;
	padding-right: 20px;
}

.cookie-content a {
	color: #FFE69A;
}

.cookie-content button {
	background: #9F0D7F;
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 20px;
	cursor: pointer;
	font-weight: bold;
	white-space: nowrap;
}

/* ===== POLICY PAGES ===== */
.policy-section {
	padding: 4rem 0;
}

.policy-content {
	background: white;
	border-radius: 10px;
	padding: 3rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	max-width: 900px;
	margin: 0 auto;
}

.policy-date {
	font-style: italic;
	color: #4E4E50;
	margin-bottom: 2rem;
}

.policy-text h2 {
	font-size: 1.5rem;
	text-align: left;
	margin-top: 2rem;
}

.policy-text ul,
.policy-text ol {
	margin-left: 2rem;
	margin-bottom: 1.5rem;
}

.policy-text li {
	margin-bottom: 0.5rem;
}

.cookie-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5rem;
}

.cookie-table th,
.cookie-table td {
	border: 1px solid #ddd;
	padding: 10px;
	text-align: left;
}

.cookie-table th {
	background: #f5f5f5;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 200px);
}

.thank-you-content {
	background: white;
	border-radius: 10px;
	padding: 3rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 700px;
	margin: 10rem auto 5rem;
	border: 2px solid #9F0D7F;
}

.thank-you-content h1 {
	color: #9F0D7F;
	margin-bottom: 1.5rem;
}

.thank-you-content p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.buttons-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
	}

	.about-image {
		margin-bottom: 2rem;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.hero-content h1 {
		font-size: 2.2rem;
	}

	.menu-button {
		display: flex;
	}

	.menu-toggle {
		display: none;
	}

	.menu-toggle:not(:checked)+.menu-button+.main-nav {
		display: none;
	}

	.menu-toggle:checked+.menu-button+.main-nav {
		display: block;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}

	.main-nav ul {
		flex-direction: column;
		padding: 20px;
	}

	.main-nav li {
		margin: 0;
		margin-bottom: 15px;
	}

	.main-nav li:last-child {
		margin-bottom: 0;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-content p {
		padding-right: 0;
		margin-bottom: 15px;
	}

	.policy-content {
		padding: 2rem;
	}
}

@media (max-width: 480px) {
	section {
		padding: 3rem 0;
	}

	.hero-section {
		padding: 5rem 0;
	}

	.hero-content h1 {
		font-size: 1.8rem;
	}

	.cta-button {
		padding: 10px 20px;
	}

	.thank-you-content {
		padding: 2rem;
		margin: 5rem auto 3rem;
	}
}