/* 
ZENVANA Flow - Main Stylesheet
==================================
Colors:
- Primary: #F49D37 (Bright Saffron)
- Accent: #2D9CDB (Rich Azure)
- Background: #E6F0ED (Light Mint)
- Text: #333333 (Graphite Gray)
- White: #FFFFFF
*/

/* ===== CSS Reset & Base Styles ===== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333333;
	background-color: #ffffff;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: #2d9cdb;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #f49d37;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 1rem;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	position: relative;
	padding-bottom: 0.5rem;
	margin-bottom: 2rem;
}

h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: #f49d37;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

ul,
ol {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

section {
	padding: 5rem 0;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* ===== Buttons ===== */
.btn {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	background-color: #f49d37;
	color: #ffffff;
	font-weight: 600;
	border-radius: 50px;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	box-shadow: 0 4px 10px rgba(244, 157, 55, 0.2);
}

.btn:hover {
	background-color: #e58d27;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(244, 157, 55, 0.3);
	color: #ffffff;
}

.btn-primary {
	background-color: #f49d37;
	color: #ffffff;
}

.btn-secondary {
	background-color: #2d9cdb;
	color: #ffffff;
	box-shadow: 0 4px 10px rgba(45, 156, 219, 0.2);
}

.btn-secondary:hover {
	background-color: #2389c5;
	box-shadow: 0 6px 15px rgba(45, 156, 219, 0.3);
}

.btn-small {
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}

/* ===== Header & Navigation ===== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 0.5rem 0;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	max-height: 60px;
}

.main-nav ul {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.main-nav ul li {
	margin-left: 2rem;
}

.main-nav ul li a {
	color: #333333;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.main-nav ul li a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #f49d37;
	transition: width 0.3s ease;
}

.main-nav ul li a:hover {
	color: #f49d37;
}

.main-nav ul li a:hover::after {
	width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
}

.menu-button {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 2000;
}

.menu-button span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #333333;
	position: absolute;
	left: 0;
	transition: all 0.3s ease;
}

.menu-button span:nth-child(1) {
	top: 0;
}

.menu-button span:nth-child(2) {
	top: 10px;
}

.menu-button span:nth-child(3) {
	top: 20px;
}

/* Main Content */
main {
	padding-top: 80px; /* Account for fixed header */
}

/* ===== Hero Section ===== */
.hero {
	background-color: #e6f0ed;
	position: relative;
	overflow: hidden;
	padding: 8rem 0;
	text-align: center;
}

.hero::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background-color: rgba(244, 157, 55, 0.1);
	border-radius: 50%;
	z-index: 1;
}

.hero::after {
	content: "";
	position: absolute;
	bottom: -100px;
	left: -100px;
	width: 300px;
	height: 300px;
	background-color: rgba(45, 156, 219, 0.1);
	border-radius: 50%;
	z-index: 1;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: #333333;
}

.hero p {
	font-size: 1.25rem;
	max-width: 700px;
	margin: 0 auto 2rem;
}

/* ===== About Section ===== */
.about {
	background-color: #ffffff;
}

.about-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem;
}

.about-text {
	flex: 1;
	min-width: 300px;
}

.about-image {
	flex: 1;
	min-width: 300px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== Benefits Section ===== */
.benefits {
	background-color: #e6f0ed;
	position: relative;
	overflow: hidden;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.benefit-card {
	background-color: #ffffff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.benefit-card h3 {
	padding: 1.5rem 1.5rem 0.5rem;
	color: #333333;
}

.benefit-card p {
	padding: 0 1.5rem 1.5rem;
}

/* ===== Programs Section ===== */
.programs {
	background-color: #ffffff;
}

.programs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.program-card {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border: 1px solid #e6f0ed;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	text-align: center;
	position: relative;
}

.program-card.featured {
	border-color: #f49d37;
	box-shadow: 0 10px 30px rgba(244, 157, 55, 0.15);
}

.program-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-card h3 {
	color: #333333;
	margin-bottom: 1rem;
}

.program-card ul {
	text-align: left;
	list-style-position: inside;
	margin-bottom: 1.5rem;
}

.program-card .price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #f49d37;
	margin-bottom: 1.5rem;
}

/* ===== Gallery Section ===== */
.gallery {
	background-color: #e6f0ed;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-auto-rows: 250px;
	gap: 1rem;
}

.gallery-item {
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.03);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

/* ===== Testimonials Section ===== */
.testimonials {
	background-color: #ffffff;
}

.testimonials-slider {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.testimonial {
	flex: 1;
	min-width: 300px;
	background-color: #e6f0ed;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
}

.testimonial::before {
	content: '"';
	position: absolute;
	top: 10px;
	left: 20px;
	font-size: 5rem;
	color: rgba(244, 157, 55, 0.2);
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial p {
	position: relative;
	z-index: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	margin-top: 1.5rem;
}

.testimonial-author img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-right: 1rem;
	border: 3px solid #ffffff;
}

.testimonial-author h4 {
	margin-bottom: 0.25rem;
	color: #333333;
}

.testimonial-author p {
	font-size: 0.875rem;
	color: #777777;
}

/* ===== FAQ Section ===== */
.faq {
	background-color: #e6f0ed;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.faq-item {
	background-color: #ffffff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
	color: #333333;
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
}

/* ===== Order Form Section ===== */
.order-form {
	background-color: #ffffff;
}

.program-form {
	max-width: 800px;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid #e6f0ed;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus {
	border-color: #2d9cdb;
	outline: none;
}

.program-selection {
	margin-top: 2rem;
}

.program-option {
	margin-bottom: 1rem;
	padding: 1rem;
	border: 2px solid #e6f0ed;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.program-option:hover {
	border-color: #f49d37;
}

.program-option input[type="radio"] {
	display: none;
}

.program-option label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.program-option input[type="radio"]:checked + label {
	color: #f49d37;
	font-weight: 600;
}

.program-option input[type="radio"]:checked + label .program-price {
	color: #f49d37;
}

.program-option input[type="radio"]:checked ~ .program-option {
	border-color: #f49d37;
	background-color: rgba(244, 157, 55, 0.05);
}

.program-name {
	font-size: 1.1rem;
}

.program-price {
	font-weight: 600;
}

.selected-program-price {
	margin-top: 1.5rem;
	padding: 1rem;
	background-color: #e6f0ed;
	border-radius: 5px;
	font-weight: 500;
}

.consent-checkboxes {
	margin-top: 2rem;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
	margin-right: 0.5rem;
	margin-top: 0.25rem;
}

.program-form button[type="submit"] {
	width: 100%;
	padding: 1rem;
	margin-top: 1.5rem;
}

/* ===== Thank You Page ===== */
.thankyou {
	background-color: #e6f0ed;
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.thankyou-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 3rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
	margin: 2rem auto;
}

.thankyou-message {
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.next-steps {
	text-align: left;
	margin: 2rem 0;
	background-color: #e6f0ed;
	padding: 1.5rem;
	border-radius: 10px;
}

.next-steps h2 {
	margin-bottom: 1rem;
}

.next-steps ol {
	margin-left: 1.5rem;
}

.thankyou-buttons {
	margin-top: 2rem;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	padding: 1rem 0;
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.cookie-banner .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.cookie-banner p {
	margin: 0;
	flex: 1;
}

.cookie-banner form {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.cookie-learn-more {
	font-size: 0.875rem;
	color: #777777;
	text-decoration: underline;
}

/* ===== Footer ===== */
.site-footer {
	background-color: #333333;
	color: #ffffff;
	padding: 4rem 0 2rem;
}

.footer-top {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer-col {
	flex: 1;
	min-width: 250px;
}

.footer-logo {
	margin-bottom: 1.5rem;
}

.footer-logo img {
	max-height: 60px;
}

.footer-about {
	opacity: 0.8;
	font-size: 0.9rem;
}

.footer-col h3 {
	color: #ffffff;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.footer-col h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: #f49d37;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: #ffffff;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.footer-links a:hover {
	opacity: 1;
	color: #f49d37;
}

.footer-contact {
	font-style: normal;
	opacity: 0.8;
	font-size: 0.9rem;
}

.footer-contact p {
	margin-bottom: 0.75rem;
}

.footer-contact a {
	color: #ffffff;
	transition: color 0.3s ease;
}

.footer-contact a:hover {
	color: #f49d37;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.875rem;
	opacity: 0.6;
}

/* ===== Legal Pages ===== */
.legal-page {
	padding: 4rem 0;
	background-color: #ffffff;
}

.legal-page h1 {
	text-align: center;
	margin-bottom: 2rem;
}

.legal-content {
	max-width: 900px;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 2.5rem;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
	color: #333333;
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-content h3 {
	font-size: 1.25rem;
	margin-top: 1.5rem;
	color: #333333;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
	margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
	padding-left: 1.5rem;
}

.legal-content li {
	margin-bottom: 0.5rem;
}

.legal-content a {
	color: #2d9cdb;
	text-decoration: underline;
}

.legal-content a:hover {
	color: #f49d37;
}

@media (max-width: 768px) {
	.legal-content {
		padding: 1.5rem;
	}
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
	h1 {
		font-size: 2.25rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	section {
		padding: 4rem 0;
	}

	.hero {
		padding: 6rem 0;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 15px;
	}

	.menu-button {
		display: block;
	}

	.main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background-color: #ffffff;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease;
		z-index: 1500;
		padding: 6rem 2rem 2rem;
	}

	.menu-toggle:checked ~ .main-nav {
		right: 0;
	}

	.menu-toggle:checked ~ .menu-button span:nth-child(1) {
		transform: rotate(45deg);
		top: 10px;
	}

	.menu-toggle:checked ~ .menu-button span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked ~ .menu-button span:nth-child(3) {
		transform: rotate(-45deg);
		top: 10px;
	}

	.main-nav ul {
		flex-direction: column;
	}

	.main-nav ul li {
		margin: 0 0 1.5rem;
	}

	.about-content,
	.testimonials-slider {
		flex-direction: column;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		grid-auto-rows: 200px;
	}

	.cookie-banner .container {
		flex-direction: column;
		align-items: flex-start;
	}

	.program-form {
		padding: 1.5rem;
	}
}

@media (max-width: 576px) {
	html {
		font-size: 14px;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	section {
		padding: 3rem 0;
	}

	.hero {
		padding: 4rem 0;
	}

	.benefits-grid,
	.programs-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		grid-auto-rows: 150px;
	}

	.thankyou-content {
		padding: 2rem 1.5rem;
	}
}
