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

body {
	font-family: "Cairo", sans-serif;
	background-color: #fcf5ed;
	color: #2f422e;
	overflow: hidden;
	height: 100vh;
	direction: rtl;
}


.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.slider-dots {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 1500;
}

.slider-dots .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(47, 66, 46, 0.6);
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.slider-dots .dot.active {
	background-color: #2f422e;
}

.slider-dots .dot:hover {
	background-color: #c3c182;
}

.logo {
    position: fixed;
    top: 40px;
    left: 40px;
    width: 250px;
    z-index: 1000;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo:hover {
	opacity: 1;
}

.menu-btn {
	position: fixed;
	top: 40px;
	right: 40px;
	width: 50px;
	height: 50px;
	background-color: #2f422e;
	color: #fcf5ed;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.menu-btn:hover {
	background-color: #c3c182;
	color: #2f422e;
}

.drawer {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100%;
	background-color: #fff;
	box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 1500;
	padding-top: 100px;
	direction: rtl;
	max-height: 100vh;
	overflow-y: auto;
}

.drawer.open {
	right: 0;
}

.close-btn {
	position: absolute;
	top: 20px;
	left: 20px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #2f422e;
}

.menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-list li {
	margin: 10px 0;
}

.menu-list a {
	display: block;
	padding: 15px 20px;
	color: #2f422e;
	text-decoration: none;
	font-family: "Cairo", sans-serif;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.menu-list a:hover {
	background-color: #c3c182;
	color: #2f422e;
}

.drawer-language-switcher {
	padding: 20px;
	border-top: 1px solid #eee;
	display: flex;
	gap: 10px;
	justify-content: center;
}

.drawer-language-switcher .lang-btn {
	padding: 10px 20px;
	border: 1px solid #c3c182;
	background: none;
	color: #2f422e;
	border-radius: 5px;
	cursor: pointer;
	font-family: "Cairo", sans-serif;
	transition: background-color 0.3s ease;
}

.drawer-language-switcher .lang-btn:hover {
	background-color: #c3c182;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-color: #2f422e;
	color: #fcf5ed;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: #c3c182;
	color: #2f422e;
	transform: translateY(-2px);
}

/* Animations */
@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fade-in-left {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fade-in-right {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scale-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.animate-fade-in-up,
.animate-fade-in-left,
.animate-fade-in-right,
.animate-scale-in {
	opacity: 0;
}

.slide.active .animate-fade-in-up {
	animation: fade-in-up 1s ease-out forwards;
}

.slide.active .animate-fade-in-left {
	animation: fade-in-left 1s ease-out forwards;
}

.slide.active .animate-fade-in-right {
	animation: fade-in-right 1s ease-out forwards;
}

.slide.active .animate-scale-in {
	animation: scale-in 1s ease-out forwards;
}

.slide.active .delay-200 {
	animation-delay: 0.2s;
}

.slide.active .delay-400 {
	animation-delay: 0.4s;
}

.slide.active .delay-600 {
	animation-delay: 0.6s;
}

.slide.active .delay-800 {
	animation-delay: 0.8s;
}

.slide.active .delay-1000 {
	animation-delay: 1s;
}

.slide.active .delay-1200 {
	animation-delay: 1.2s;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateX(100px);
	transition: opacity 1.5s ease, transform 1.5s ease;
	pointer-events: none;
}

.slide.active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.content {
	text-align: center;
	max-width: 800px;
	padding: 2rem;
}

.content h1 {
	font-size: 4rem;
	margin-bottom: 1rem;
	color: #2f422e;
}

.content h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #2f422e;
}

.content p {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	font-family: "Cairo", sans-serif;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn.primary {
	background-color: #c3c182;
	color: #2f422e;
}

.btn.primary:hover {
	background-color: #2f422e;
	color: #fcf5ed;
	transform: translateY(-2px);
}

.btn.secondary {
	background-color: transparent;
	color: #2f422e;
	border: 2px solid #2f422e;
}

.btn.secondary:hover {
	background-color: #2f422e;
	color: #fcf5ed;
}

.steps {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 2rem 0;
}

.shared-steps {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 2rem 0;
}

.step {
	background-color: #c3c182;
	padding: 1.5rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step h3 {
	color: #2f422e;
	margin-bottom: 0.5rem;
}

.step p {
	color: #2f422e;
	font-size: 1rem;
	margin-bottom: 0px;
}

.paths {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin: 2rem 0;
}

.path {
	background-color: #c3c182;
	padding: 1.5rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.path h3 {
	color: #2f422e;
	margin-bottom: 0.5rem;
}

.path p {
	color: #2f422e;
	font-size: 1rem;
	margin-bottom: 0px;
}

.general-steps p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	color: #2f422e;
}

.process-paths {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	margin: 2rem 0;
}

.path-section h3 {
	color: #2f422e;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	text-align: center;
}

.highlight {
	font-size: 1.5rem;
	font-weight: bold;
	color: #2f422e;
	margin-top: 2rem;
}

.placeholder {
	margin-top: 2rem;
	padding: 2rem;
	background-color: #c3c182;
	border-radius: 12px;
	color: #2f422e;
}

.app-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 20px 0;
}

.feature {
	background-color: #fabfd3;
	padding: 1rem;
	border-radius: 8px;
	text-align: center;
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.feature p {
	margin-bottom: 0;
}

.stories {
	position: relative;
	height: 150px;
	margin: 10px 0;
}

.story {
	position: absolute;
	width: 100%;
	background-color: #fabfd3;
	padding: 1rem;
	border-radius: 8px;
	text-align: center;
	display: none;
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.story.active {
	display: block;
}

.app-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
}

.app-link {
	display: inline-block;
	padding: 1rem 2rem;
	background-color: #2f422e;
	color: #fcf5ed;
	text-decoration: none;
	border-radius: 8px;
	font-weight: bold;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.app-link:hover {
	background-color: #c3c182;
	color: #2f422e;
	transform: translateY(-2px);
}

#contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 400px;
	margin: 2rem auto 0;
}

#contact-form input,
#contact-form textarea {
	padding: 0.75rem;
	border: 1px solid #c3c182;
	border-radius: 4px;
	font-family: "Cairo", sans-serif;
	font-size: 1rem;
}

#contact-form button {
	padding: 0.75rem;
	background-color: #2f422e;
	color: #fcf5ed;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.3s ease;
}

form button {
	width: 100%;
}

#contact-form button:hover {
	background-color: #c3c182;
	color: #2f422e;
}

/* Tablet responsive */
@media (max-width: 1024px) {
	.content h1 {
		font-size: 3rem;
	}

	.content h2 {
		font-size: 2.2rem;
	}

}

/* Mobile responsive */
@media (max-width: 768px) {
	.content h1 {
		font-size: 2.5rem;
	}

	.content h2 {
		font-size: 1.5rem;
	}

	.content p {
		font-size: 1rem;
	}

	.content {
		padding: 0.5rem;
	}

	.step {
		padding: 1rem;
	}

	.process-paths {
		grid-template-columns: 1fr;
		gap: 0;
		margin: 0.5rem 0;
	}

	.path-section h3 {
		font-size: 1rem;
		margin-bottom: 0.3rem;
	}

	.path-section .steps {
		gap: 0.2rem;
	}

	.path-section .step {
		padding: 0.3rem;
		font-size: 0.8rem;
	}

	.process-paths {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.app-features {
		flex-direction: column;
		gap: 1rem;
	}

	.app-links {
		flex-direction: column;
		gap: 1rem;
	}

	.app-link {
		text-align: center;
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	#contact-form {
		max-width: 100%;
		padding: 0 1rem;
	}

	#contact-form input,
	#contact-form textarea {
		font-size: 0.9rem;
	}
}

/* Small mobile responsive */
@media (max-width: 480px) {
	.content h1 {
		font-size: 2rem;
	}

	.content h2 {
		font-size: 1.5rem;
	}

	.content p {
		font-size: 0.9rem;
	}

	.step h3 {
		font-size: 1rem;
	}

	.step p {
		font-size: 0.8rem;
	}

	.highlight {
		font-size: 1.2rem;
	}

	.slider-dots {
		bottom: 40px;
		gap: 12px;
	}

	.slider-dots .dot {
		width: 14px;
		height: 14px;
		background-color: rgba(47, 66, 46, 0.7);
	}
	.btn {
		width: 100%;
	}

	.logo {
	    width: 200px;
	    top: 20px;
	    left: 20px;
	}

	.menu-btn {
		top: 20px;
		right: 20px;
	}

	.back-to-top {
		width: 40px;
		height: 40px;
		bottom: 20px;
		right: 20px;
		border-radius: 6px;
	}

	.back-to-top svg {
		width: 20px;
		height: 20px;
	}

	.drawer {
		width: 100%;
		right: -100%;
	}

	.accordion {
		margin: 20px 0;
	}

	.accordion details {
		margin-bottom: 10px;
		border: 2px solid #c3c182;
		border-radius: 8px;
		background-color: #fabfd3;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	}

	.accordion summary {
		padding: 15px;
		cursor: pointer;
		font-weight: bold;
		color: #2f422e;
		background-color: #c3c182;
		border-radius: 6px 6px 0 0;
		transition: background-color 0.3s ease;
	}

	.accordion summary:hover {
		background-color: #2f422e;
		color: #c3c182;
	}

	.accordion details[open] summary {
		background-color: #2f422e;
		color: #c3c182;
		border-radius: 6px 6px 0 0;
	}

	.accordion p {
		padding: 15px;
		margin: 0;
		background-color: #fff;
		border-radius: 0 0 6px 6px;
	}
}
