@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
	--primary: #ffd700;
	--secondary: #6c63ff;
	/* --accent: #6b63ff98; */
	--accent: #1c1b2a98;
	/* --dark-accent:#1c1b2a98; */
	--dark: #1c1b2a;
	--darker: #161527;
	--light: #ffffff;
	--gray: #d3d3d3;
	--border: #ffd700;
	/* --secondary:#6C63FF; */
	/* --secondary:#6b63ff98; */
}

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

body {
	font-family: "Space Grotesk", sans-serif;
	background: var(--dark);
	/* background: rgb(46, 39, 0); */
	color: var(--light);
	overflow-x: hidden;
	line-height: 1.6;
}

/* Animated Background */
.animated-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	/* background: radial-gradient(circle at 20% 50%, var(--accent) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, var(--accent) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%); */
	background: radial-gradient(
			circle at 20% 50%,
			rgba(255, 215, 0, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 215, 0, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 80%,
			rgba(255, 215, 0, 0.08) 0%,
			transparent 50%
		);
	animation: bgShift 15s ease-in-out infinite;
}

@keyframes bgShift {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(-20px, -20px) rotate(1deg);
	}
	66% {
		transform: translate(20px, -10px) rotate(-1deg);
	}
}

/* Header */
header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	padding: 1rem 0;
	/* background: rgba(28, 27, 42, 0.9); */
	/* background: var(--secondary); */
	background: var(--accent);

	backdrop-filter: blur(40px);
	border-bottom: 1px solid var(--border);
}
.bars-wrapper {
	cursor: pointer;
	display: none;
}
.fa-bars {
	display: none;
}
.mobile-menu {
	display: none;
}
.display-menu {
	max-height: unset !important;
}
.logo-img {
	width: 75px;
}
.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
	flex-wrap: wrap;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* .logo-symbol {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--dark);
            position: relative;
            overflow: hidden;
        } */

/* .logo-symbol::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: logoShine 3s infinite;
        } */

@keyframes logoShine {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary);
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-menu a {
	color: var(--light);
	text-decoration: none;
	font-weight: 400;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
	color: var(--primary);
	transform: translateY(-2px);
}

.login-btn {
	background: var(--primary);
	color: var(--dark);
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	width: 100px;
}

.login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-content {
	max-width: 800px;
	padding: 0 2rem;
	z-index: 2;
}

.hero-title {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 2rem;
	color: var(--primary);
}

.hero-subtitle {
	font-size: 1.3rem;
	color: var(--light);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Sections */
.section {
	padding: 6rem 0;
	position: relative;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

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

.section-badge {
	display: inline-block;
	background: rgba(255, 215, 0, 0.1);
	color: var(--primary);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.section-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary);
}

.section-description {
	font-size: 1.2rem;
	color: var(--light);
	max-width: 600px;
	margin: 0 auto;
}

/* Why Us Grid */
.why-us-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.why-item {
	/* background: rgba(28, 27, 42, 0.8); */
	background: var(--accent);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
}

/* .why-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary);
        } */

.why-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
	border-color: var(--primary);
}
.why-icon {
	display: block;
}
.why-icon img {
	width: 72px;
	height: 72px;
	margin-bottom: 0.5rem;
	user-select: none;
}
.service-content .why-icon img {
	height: 56px;
	width: 56px;
}
#sports img {
	width: 72px;
	height: 72px;
}
.why-item h3 {
	color: var(--primary);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.why-item p {
	color: var(--light);
}

/* Services Layout */
.services-container {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: start;
}

.services-nav {
	position: sticky;
	top: 120px;
}

.service-nav-item {
	display: block;
	padding: 1.5rem;
	margin-bottom: 1rem;
	/* background: rgba(28, 27, 42, 0.5); */
	background: var(--accent);
	border: 1px solid var(--border);
	border-radius: 12px;
	color: var(--light);
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.service-nav-item:hover,
.service-nav-item.active {
	background: rgba(255, 215, 0, 0.1);
	border-color: var(--primary);
	transform: translateX(10px);
}

.service-nav-item h3 {
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.services-content {
	/* background: rgba(28, 27, 42, 0.8); */
	background: var(--accent);
	border-radius: 20px;
	padding: 3rem;
	border: 1px solid var(--border);
	backdrop-filter: blur(20px);
}

.service-content {
	display: none;
}

.service-content.active {
	display: block;
	animation: slideIn 0.5s ease;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.service-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary), var(--primary));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 2rem;
}

.service-content h3 {
	color: var(--primary);
	font-size: 2rem;
	margin-bottom: 1rem;
}

.service-content p {
	color: var(--light);
	margin-bottom: 1.5rem;
}

.service-content ul {
	list-style: none;
	color: var(--light);
}

.service-content ul li {
	margin-bottom: 0.5rem;
	padding-left: 1rem;
	position: relative;
}

.service-content ul li::before {
	content: "•";
	color: var(--primary);
	position: absolute;
	left: 0;
}

/* Transparent Section */
.transparent-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.transparent-item {
	/* background: rgba(28, 27, 42, 0.8); */
	background: var(--accent);
	border: 1px solid var(--border);
	border-radius: 20px;
	/* padding: 2.5rem; */
	text-align: center;
	transition: all 0.3s ease;
	overflow: hidden;
	backdrop-filter: blur(20px);
}
.transparent-item-text {
	padding: 2.5rem;
}
.transparent-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
}

.transparent-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	display: block;
}

.transparent-item h3 {
	color: var(--primary);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
.card-image-container img {
	width: 100%;
}
.card-image-container {
	border-radius: 10px;
	overflow: hidden;
}
.transparent-item p {
	color: var(--light);
}

/* FAQ Timeline */
.faq-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.faq-timeline::before {
	content: "";
	position: absolute;
	left: 30px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--primary);
}

.faq-item {
	display: flex;
	margin-bottom: 2rem;
	position: relative;
}

.faq-content {
	flex: 1;
	/* background: rgba(28, 27, 42, 0.8); */
	background: var(--accent);
	border-radius: 16px;
	padding: 2rem;
	margin-left: 4rem;
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.faq-content:hover {
	border-color: var(--primary);
	transform: translateX(10px);
}

.faq-number {
	position: absolute;
	left: 20px;
	top: 2rem;
	width: 20px;
	height: 20px;
	background: var(--primary);
	color: var(--dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.9rem;
	z-index: 2;
}

.faq-content h3 {
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.faq-content p {
	color: var(--light);
	margin: 0;
}

/* Ready Section */
.ready-section {
	/* background: rgba(28, 27, 42, 0.8); */
	background: var(--accent);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 4rem 2rem;
	text-align: center;
	margin: 4rem 0;
}

.ready-section h2 {
	color: var(--primary);
	font-size: 3rem;
	margin-bottom: 1rem;
}

.ready-section p {
	color: var(--light);
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.btn-primary {
	background: var(--primary);
	color: var(--dark);
	padding: 1rem 2rem;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	font-size: 1.1rem;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

/* Footer */
footer {
	/* background: var(--darker); */
	background: var(--accent);

	border-top: 1px solid var(--border);
	padding: 4rem 0 2rem;
	position: relative;
	backdrop-filter: blur(20px);
}
footer .logo-container {
	margin-bottom: 2rem;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

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

.footer-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--primary);
}

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

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

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

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

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	color: var(--light);
}

/* privacy policy */

.privacy-container {
	max-width: 900px;
	margin: 3rem auto;
	padding: 2rem;
	background: #161527d1;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(20px);
}

.privacy-container h1 {
	font-size: 2.2rem;
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.privacy-container h2 {
	font-size: 1.4rem;
	color: var(--primary);
	margin-top: 2rem;
}

.privacy-container ul {
	padding-left: 1.5rem;
}

.privacy-container li {
	margin-bottom: 0.5rem;
}

.privacy-container p {
	margin-bottom: 1rem;
}

.privacy-container .contact {
	/* background-color: #f1f3f6; */
	padding: 1rem;
	border-left: 4px solid var(--primary);
	border-radius: 6px;
}

@media (max-width: 600px) {
	.privacy-container {
		margin: 1rem;
		padding: 1.5rem;
	}

	.privacy-container h1 {
		font-size: 1.8rem;
	}

	.privacy-container h2 {
		font-size: 1.2rem;
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.services-container {
		grid-template-columns: 1fr;
	}

	.services-nav {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

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

@media (max-width: 768px) {
	.nav-menu {
		display: none;
		gap: 1rem;
	}

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

	.faq-timeline::before {
		left: 20px;
	}

	.faq-content {
		margin-left: 3rem;
	}

	.faq-number {
		left: 15px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
	/* menu mobile */
	.mobile-menu {
		display: flex;
		width: 100%;
		max-height: 0;
		/* background-color: #071027; */
		transition: all 0.5s ease;
		overflow: hidden;
		border-bottom-left-radius: 5px;
		border-bottom-right-radius: 5px;
		flex-direction: column;
		align-items: center;
		/* position: absolute;
                top: 75px;
                left: 0; */
	}
	.mm-list {
		flex-direction: column;
		list-style: none;
		margin: 0;
		padding: 16px;
	}
	.d-flex {
		display: flex !important;
	}
	.mm-item {
		color: white;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 20px;
		cursor: pointer;
	}
	.nav-links {
		display: none;
	}
	.login-btn-desktop {
		display: none;
	}
	.fa-bars {
		display: inline-block;
		/* text-align: right; */
		font-size: 30px;
	}
	.bars-wrapper {
		display: inline-block;
	}
}
@media (max-width: 380px) {
	.logo-img {
		width: 180px;
	}
	.why-item {
		width: 80vw;
		padding: 1.2rem;
	}
	.container {
		padding: 0 1.5rem;
	}
	.footer-bottom {
		padding-top: 2rem;
	}
	.ready-section h2,
	.hero-title {
		font-size: 2rem;
	}
	.transparent-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}
