:root {
	--primary: #6c3bf1;
	--primary-dark: #4a1db8;
	--secondary: #00d4aa;
	--accent: #f72585;
	--bg-dark: #0a0a1a;
	--bg-card: rgba(255, 255, 255, 0.05);
	--glass: rgba(255, 255, 255, 0.08);
	--glass-border: rgba(255, 255, 255, 0.12);
	--text: #e8e8f0;
	--text-muted: #9898b0;
	--radius: 20px;
	--shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

html {
	direction: rtl;
	scroll-behavior: smooth;
}

body {
	font-family: 'Cairo', sans-serif;
	background: var(--bg-dark);
	color: var(--text);
	overflow-x: hidden;
	line-height: 1.7;
}

::selection {
	background: var(--primary);
	color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: 100px 0;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-tag {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #fff;
	padding: 6px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 16px;
	letter-spacing: 1px;
}

.section-title {
	font-size: 42px;
	font-weight: 900;
	margin-bottom: 16px;
	line-height: 1.3;
}

.section-desc {
	font-size: 18px;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto;
}

.gradient-text {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0;
	transition: all 0.4s ease;
}

.navbar.scrolled {
	background: rgba(10, 10, 26, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding: 10px 0;
}

.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar-brand img {
	height: 50px;
	transition: all 0.3s ease;
}

.scrolled .navbar-brand img {
	height: 40px;
}

.navbar-nav {
	display: flex;
	list-style: none;
	gap: 4px;
}

.navbar-nav a {
	color: var(--text-muted);
	text-decoration: none;
	padding: 8px 18px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
}

.navbar-nav a:hover,
.navbar-nav a.active {
	color: #fff;
	background: var(--glass);
}

.navbar-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
}

.navbar-toggle span {
	width: 28px;
	height: 2.5px;
	background: var(--text);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.active span:nth-child(2) {
	opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 120px 0 80px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% -20%, rgba(108, 59, 241, 0.3), transparent),
		radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0, 212, 170, 0.15), transparent),
		radial-gradient(ellipse 50% 40% at 20% 60%, rgba(247, 37, 133, 0.1), transparent);
	z-index: 0;
}

.hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.hero-badge {
	display: inline-block;
	background: var(--glass);
	border: 1px solid var(--glass-border);
	padding: 8px 24px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

.hero-title {
	font-size: clamp(36px, 6vw, 64px);
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 20px;
}

.hero-desc {
	font-size: clamp(16px, 2vw, 20px);
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto 32px;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	box-shadow: 0 4px 20px rgba(108, 59, 241, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(108, 59, 241, 0.5);
}

.btn-outline {
	background: var(--glass);
	border: 1px solid var(--glass-border);
	color: var(--text);
	backdrop-filter: blur(10px);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
}

.stat-num {
	display: block;
	font-size: 36px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--secondary), var(--primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.stat-label {
	font-size: 14px;
	color: var(--text-muted);
	font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.mouse {
	width: 26px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	position: relative;
}

.mouse::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 8px;
	background: var(--secondary);
	border-radius: 2px;
	animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
	0% { transform: translateX(-50%) translateY(0); opacity: 1; }
	100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.service-card {
	background: var(--bg-card);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius);
	padding: 40px 32px;
	text-align: center;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.service-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(108, 59, 241, 0.3);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, rgba(108, 59, 241, 0.2), rgba(0, 212, 170, 0.2));
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--secondary);
	transition: all 0.4s ease;
}

.service-card:hover .card-icon {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #fff;
	transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.service-card p {
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.7;
}

/* Why Us */
.why-us {
	background: linear-gradient(180deg, var(--bg-dark), rgba(108, 59, 241, 0.05), var(--bg-dark));
	overflow: hidden;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	position: relative;
	z-index: 1;
}

.why-card {
	background: var(--glass);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius);
	padding: 40px 32px;
	text-align: center;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.why-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	opacity: 0;
	transition: all 0.4s ease;
}

.why-card:hover::before {
	opacity: 1;
}

.why-card:hover {
	transform: translateY(-8px) scale(1.02);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: var(--shadow);
}

.why-num {
	position: absolute;
	top: 16px;
	left: 20px;
	font-size: 48px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.04);
	line-height: 1;
}

.why-card i {
	font-size: 40px;
	color: var(--primary);
	margin-bottom: 20px;
	transition: all 0.4s ease;
}

.why-card:hover i {
	color: var(--secondary);
	transform: scale(1.15);
}

.why-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.why-card p {
	color: var(--text-muted);
	font-size: 15px;
}

.why-decoration {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
}

.shape-1 {
	width: 400px;
	height: 400px;
	background: var(--primary);
	top: -100px;
	right: -100px;
	animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
	width: 300px;
	height: 300px;
	background: var(--secondary);
	bottom: -50px;
	left: -50px;
	animation: floatShape 10s ease-in-out infinite reverse;
}

@keyframes floatShape {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(30px, -30px); }
}

/* CTA Section */
.cta-section {
	padding: 80px 0;
}

.cta-box {
	background: linear-gradient(135deg, rgba(108, 59, 241, 0.1), rgba(0, 212, 170, 0.1));
	border: 1px solid rgba(108, 59, 241, 0.2);
	border-radius: 24px;
	padding: 60px 40px;
	text-align: center;
	backdrop-filter: blur(10px);
}

.cta-box h2 {
	font-size: 32px;
	font-weight: 900;
	margin-bottom: 12px;
}

.cta-box p {
	color: var(--text-muted);
	font-size: 18px;
	margin-bottom: 24px;
}

/* Steps Grid */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.step-card {
	background: var(--bg-card);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	padding: 28px 20px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.step-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 16px;
	border: 1px solid transparent;
	transition: all 0.4s ease;
}

.step-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(108, 59, 241, 0.3);
}

.step-card.highlight {
	background: linear-gradient(135deg, rgba(108, 59, 241, 0.15), rgba(0, 212, 170, 0.15));
	border-color: rgba(0, 212, 170, 0.3);
}

.step-card.highlight:hover {
	background: linear-gradient(135deg, rgba(108, 59, 241, 0.25), rgba(0, 212, 170, 0.25));
}

.step-num {
	width: 44px;
	height: 44px;
	margin: 0 auto 16px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 900;
	color: #fff;
}

.step-card i {
	font-size: 28px;
	color: var(--secondary);
	margin-bottom: 12px;
	display: block;
}

.step-card h3 {
	font-size: 16px;
	font-weight: 700;
}

/* Quote Section */
.quote-section {
	padding: 80px 0;
}

.quote-box {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	position: relative;
}

.quote-icon {
	font-size: 48px;
	color: var(--primary);
	opacity: 0.3;
	margin-bottom: 20px;
}

.quote-box blockquote {
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 600;
	line-height: 1.8;
	color: var(--text);
	margin-bottom: 24px;
	position: relative;
}

.quote-author span {
	color: var(--text-muted);
	font-size: 16px;
	font-weight: 600;
}

/* FAQ */
.faq {
	background: linear-gradient(0deg, var(--bg-dark), rgba(108, 59, 241, 0.03), var(--bg-dark));
}

.faq-grid {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: var(--bg-card);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active {
	border-color: rgba(108, 59, 241, 0.3);
	background: rgba(255, 255, 255, 0.06);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	user-select: none;
}

.faq-question i {
	font-size: 14px;
	color: var(--text-muted);
	transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
	color: var(--secondary);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	padding: 0 24px;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding: 0 24px 20px;
}

.faq-answer p {
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.8;
}

/* Contact */
.contact {}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: var(--bg-card);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	padding: 20px 24px;
	transition: all 0.3s ease;
}

.contact-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(108, 59, 241, 0.3);
	transform: translateX(-4px);
}

.contact-card i {
	font-size: 28px;
	color: var(--secondary);
	flex-shrink: 0;
	margin-top: 4px;
}

.contact-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
}

.contact-card p {
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.6;
}

.contact-map iframe {
	width: 100%;
	height: 380px;
	border-radius: 20px;
	border: none;
	filter: grayscale(0.3) brightness(0.7);
}

/* Footer */
.footer {
	background: rgba(0, 0, 0, 0.4);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 60px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
}

.footer-logo {
	height: 50px;
	margin-bottom: 16px;
}

.footer-about p {
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 12px;
}

.footer-reg {
	font-size: 13px !important;
	opacity: 0.7;
}

.footer h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

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

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.footer-links a::before {
	content: '';
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	transition: all 0.3s ease;
}

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

.footer-links a:hover::before {
	width: 20px;
}

.social-links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.social-links a {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--glass);
	border: 1px solid var(--glass-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	text-decoration: none;
	font-size: 18px;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #fff;
	border-color: transparent;
	transform: translateY(-3px);
}

.footer-bottom {
	margin-top: 40px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
}

.footer-bottom p {
	color: var(--text-muted);
	font-size: 14px;
}

.footer-bottom .fa-heart {
	color: var(--accent);
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 30px;
	}

	.navbar-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(10, 10, 26, 0.95);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 16px;
		gap: 4px;
		border-bottom: 1px solid var(--glass-border);
	}

	.navbar-nav.open {
		display: flex;
	}

	.navbar-toggle {
		display: flex;
	}

	.hero-stats {
		gap: 24px;
	}

	.stat-num {
		font-size: 28px;
	}

	.services-grid,
	.why-grid {
		grid-template-columns: 1fr;
	}

	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cta-box {
		padding: 40px 24px;
	}

	.cta-box h2 {
		font-size: 24px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.steps-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.step-card {
		padding: 20px 16px;
	}

	.step-card h3 {
		font-size: 14px;
	}

	.hero-title {
		font-size: 28px;
	}
}