/********** Template CSS **********/
:root {
	--primary: #6b7280;
	--secondary: #9ca3af;
	--accent: #f59e0b;
	--light: #f9fafb;
	--dark: #111827;
	--text-primary: #374151;
	--text-secondary: #6b7280;
	--border: #e5e7eb;
	--success: #10b981;
	--warning: #f59e0b;
	--error: #ef4444;
	--gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-semi-bold {
	font-weight: 600 !important;
}

.error-message {
	color: var(--error);
	font-size: 0.875rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
	min-height: 1.2rem;
	display: block;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
	opacity: 1;
}

.form-control.error {
	border-color: var(--error) !important;
	box-shadow: 0 0 0 0.2rem rgba(239, 68, 68, 0.15) !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0.5s;
	z-index: 99999;
}

#spinner.show {
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/*** Button ***/
.btn {
	font-weight: 500;
	text-transform: uppercase;
	transition: all 0.3s ease;
	border-radius: 8px;
	padding: 12px 24px;
	font-size: 14px;
	letter-spacing: 0.5px;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #ffffff;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-radius: 8px;
}

/* Header Styles */
.new-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-sm);
}

.new-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.new-logo a {
	font-family: 'Playfair Display', serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

.new-logo a:hover {
	color: var(--accent);
	transform: scale(1.05);
}

.new-nav ul {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.new-nav ul li a {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.new-nav ul li a:hover {
	color: var(--accent);
}

.new-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}

.new-nav ul li a:hover::after {
	width: 100%;
}

.new-menu-icon {
	display: none;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
}

.new-menu-icon span {
	width: 25px;
	height: 3px;
	background: var(--dark);
	transition: all 0.3s ease;
	border-radius: 2px;
}

#new-menu-toggle {
	display: none;
}

@media (max-width: 992px) {
	.new-menu-icon {
		display: flex;
	}

	.new-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		padding: 1rem;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		box-shadow: var(--shadow-lg);
	}

	#new-menu-toggle:checked + .new-menu-icon + .new-nav {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.new-nav ul {
		flex-direction: column;
		gap: 1rem;
	}

	.new-nav ul li a {
		display: block;
		padding: 0.75rem 0;
		border-bottom: 1px solid var(--border);
	}

	.new-nav ul li a:hover {
		background: var(--light);
		padding-left: 1rem;
	}
}

/* Footer Styles */
.footer-bright {
	background: var(--dark);
	color: white;
	padding: 4rem 0 2rem;
	margin-top: 4rem;
}

.footer-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand {
	max-width: 400px;
}

.footer-logo {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 700;
	color: white;
	text-decoration: none;
	display: block;
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}

.footer-logo:hover {
	color: var(--accent);
}

.footer-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
	color: white;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--accent);
}

.footer-contact p {
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	text-align: center;
	color: var(--text-secondary);
}

@media (max-width: 768px) {
	.footer-top {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-brand,
	.footer-links,
	.footer-contact {
		text-align: center;
	}
}

/* Cookie Banner */
.cookie-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	box-shadow: var(--shadow-xl);
	z-index: 9999;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-wrapper.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.cookie-header {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.cookie-header i {
	font-size: 2rem;
	color: var(--accent);
}

.cookie-header h3 {
	margin: 0;
	font-size: 1.25rem;
}

.cookie-text {
	flex: 1;
}

.cookie-text p {
	margin: 0;
	color: var(--text-secondary);
}

.cookie-text a {
	color: var(--accent);
	text-decoration: none;
}

.cookie-text a:hover {
	text-decoration: underline;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

.cookie-button {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-button.accept {
	background: var(--accent);
	color: white;
}

.cookie-button.accept:hover {
	background: #d97706;
	transform: translateY(-2px);
}

.cookie-button.decline {
	background: transparent;
	color: var(--text-secondary);
	border: 1px solid var(--border);
}

.cookie-button.decline:hover {
	background: var(--light);
	color: var(--text-primary);
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: center;
	}
}

/* Hero Section */
.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: var(--gradient-primary);
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('./img/bg.avif') center/cover;
	opacity: 0.1;
}

.hero-bg {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	min-height: 100vh;
}

.hero-content {
	color: white;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	line-height: 1.6;
}

.brand-name {
	color: var(--accent);
	font-weight: 600;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-btn {
	padding: 1rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.hero-btn.primary {
	background: var(--accent);
	color: white;
}

.hero-btn.primary:hover {
	background: #d97706;
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.hero-btn.secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.hero-btn.secondary:hover {
	background: white;
	color: var(--dark);
	transform: translateY(-2px);
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-image {
	width: 100%;
	max-width: 500px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.hero-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

@media (max-width: 992px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 6rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-buttons {
		justify-content: center;
	}
}

/* Features Section */
.features-section {
	padding: 6rem 0;
	background: white;
}

.features-header {
	text-align: center;
	margin-bottom: 4rem;
}

.features-heading {
	font-size: 2.5rem;
	color: var(--dark);
	margin-bottom: 1rem;
}

.features-subtitle {
	font-size: 1.125rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: white;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	text-align: center;
	border: 1px solid var(--border);
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: var(--accent);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.feature-title {
	font-size: 1.25rem;
	color: var(--dark);
	margin-bottom: 1rem;
}

.feature-text {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* About Section */
.about-section {
	padding: 6rem 0;
	background: var(--light);
}

.about-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.about-title {
	font-size: 2.5rem;
	color: var(--dark);
	margin-bottom: 1.5rem;
}

.about-description {
	font-size: 1.125rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.about-brand {
	color: var(--accent);
	font-weight: 600;
}

.about-points {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.about-point {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--text-primary);
	font-weight: 500;
}

.about-point i {
	color: var(--accent);
	font-size: 1.25rem;
}

.about-visual {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.about-visual img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.about-offers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.about-offer-card {
	background: white;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	border: 1px solid var(--border);
}

.about-offer-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

.about-offer-title {
	font-size: 1.25rem;
	color: var(--dark);
	margin-bottom: 1.5rem;
}

.about-offer-list {
	list-style: none;
	padding: 0;
}

.about-offer-list li {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	color: var(--text-secondary);
}

.about-offer-list i {
	color: var(--accent);
	font-size: 1.125rem;
}

@media (max-width: 992px) {
	.about-intro {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.about-points {
		align-items: center;
	}
}

/* Meditation Section */
.meditation-section {
	padding: 6rem 0;
	background: white;
}

.meditation-header {
	text-align: center;
	margin-bottom: 4rem;
}

.meditation-heading {
	font-size: 2.5rem;
	color: var(--dark);
	margin-bottom: 1rem;
}

.meditation-subtitle {
	font-size: 1.125rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.meditation-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.meditation-card {
	background: white;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	text-align: center;
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden;
}

.meditation-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-secondary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.meditation-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.meditation-card:hover::before {
	transform: scaleX(1);
}

.meditation-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.meditation-card h3 {
	font-size: 1.25rem;
	color: var(--dark);
	margin-bottom: 1rem;
}

.meditation-card p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.meditation-duration {
	background: var(--accent);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Contact Section */
.contact-section {
	padding: 6rem 0;
	background: var(--light);
}

.contact-wrapper {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.contact-title {
	font-size: 2.5rem;
	color: var(--dark);
	margin-bottom: 2rem;
}

.contact-form {
	background: white;
	padding: 3rem;
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.contact-field {
	width: 100%;
	padding: 1rem;
	border: 2px solid var(--border);
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: white;
}

.contact-field:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.message-field {
	grid-column: 1 / -1;
	resize: vertical;
	min-height: 120px;
}

.contact-button {
	width: 100%;
	padding: 1rem 2rem;
	background: var(--accent);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 1rem;
}

.contact-button:hover {
	background: #d97706;
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-form {
		padding: 2rem;
	}
}

/* Pricing Section */
.pricing-section {
	padding: 6rem 0;
	background: white;
}

.pricing-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.pricing-heading {
	font-size: 2.5rem;
	color: var(--dark);
	text-align: center;
	margin-bottom: 4rem;
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.pricing-item {
	background: white;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	border: 2px solid var(--border);
	position: relative;
	text-align: center;
}

.pricing-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.pricing-item.featured {
	border-color: var(--accent);
	transform: scale(1.05);
}

.pricing-item.featured:hover {
	transform: scale(1.05) translateY(-8px);
}

.featured-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
}

.pricing-name {
	font-size: 1.5rem;
	color: var(--dark);
	margin-bottom: 1rem;
}

.pricing-price {
	font-size: 3rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 2rem;
}

.pricing-price span {
	font-size: 1rem;
	color: var(--text-secondary);
	font-weight: 400;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.pricing-features li {
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border);
	color: var(--text-secondary);
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-button {
	width: 100%;
	padding: 1rem 2rem;
	background: var(--accent);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.pricing-button:hover {
	background: #d97706;
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.pricing-button.featured {
	background: var(--dark);
}

.pricing-button.featured:hover {
	background: #374151;
}

@media (max-width: 768px) {
	.pricing-cards {
		grid-template-columns: 1fr;
	}

	.pricing-item.featured {
		transform: none;
	}

	.pricing-item.featured:hover {
		transform: translateY(-8px);
	}
}