:root {
	--color-primary: #1a1f2c;
	--color-secondary: #9b87f5;
	--color-accent: #f97316;
	--color-white: #ffffff;
	--color-text: #221f26;
	--gradient-primary: linear-gradient(135deg, #1a1f2c 0%, #2a3f65 100%);
	--gradient-secondary: linear-gradient(135deg, #9b87f5 0%, #7c67d6 100%);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: var(--color-text);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.main-nav {
	background-color: var(--color-primary);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
	padding: 1rem;
}

.logo {
	color: var(--color-white);
	font-size: 1.5rem;
	font-weight: bold;
	text-decoration: none;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	color: var(--color-white);
	text-decoration: none;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--color-secondary);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background-color: var(--color-accent);
	color: var(--color-white);
}

.btn-primary:hover {
	background-color: #e65d00;
}

.btn-secondary {
	background-color: var(--color-secondary);
	color: var(--color-white);
}

/* Hero Section */
.hero {
	position: relative;
	background: url('assets/hero.jpg') no-repeat center center;
	background-size: cover;
	min-height: 90vh;
	display: flex;
	align-items: center;
	color: var(--color-white);
	padding: 8rem 0 4rem;
	text-align: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(26, 31, 44, 0.85);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin: 2rem 0;
}

.stat-item {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-accent);
}

.stat-label {
	font-size: 1rem;
	opacity: 0.9;
}

/* News Section */
.news {
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	padding: 6rem 0;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--color-primary);
}

.news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	padding: 2rem 0;
}

.news-card {
	background: var(--color-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.news-card:hover {
	transform: translateY(-5px);
}

.news-card.featured {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
}

.news-image {
	position: relative;
	height: 240px;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-position: top;
	object-fit: cover;
}

.news-tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--color-accent);
	color: var(--color-white);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
}

.news-content {
	padding: 1.5rem;
}

.news-meta {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	font-size: 0.875rem;
	color: #666;
}

/* Markets and Strategies Section */
.markets-strategies {
	background: var(--gradient-primary);
	color: var(--color-white);
	padding: 6rem 0;
}

.markets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.market-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease;
}

.market-card:hover {
	transform: translateY(-5px);
}

.market-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.market-features {
	list-style: none;
	margin-top: 1.5rem;
	text-align: left;
}

.market-features li {
	margin: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.market-features li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--color-accent);
}

/* Case Studies Section */
.case-studies {
	background: #f8f9fa;
	padding: 6rem 0;
}

.studies-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.study-card {
	background: var(--color-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.study-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.study-content {
	padding: 1.5rem;
}

.study-stats {
	display: flex;
	justify-content: space-between;
	margin-top: 1rem;
	font-size: 0.875rem;
	color: #666;
}

/* Contact Section */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	padding: 4rem 0;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
}

/* Map Section */
.map {
	height: 100%;
	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.map {
		height: 400px;
	}
}

.contact-map {
	position: relative;
	/* height: 400px; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.contact-maps {
	/* margin-top: 20px; */
	/* height: 300px; */
	position: relative;
	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}
.iti {
	width: 100%;
}

/* .iti__country-list {
	background: var(--dark-color) !important;
} */

.iti input,
.iti input[type='text'],
.iti input[type='tel'] {
	width: 100%;
}

/* Footer */
.footer {
	background: var(--gradient-primary);
	color: var(--color-white);
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.footer h4 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: var(--color-accent);
}

.footer-info p {
	margin: 0.5rem 0;
	opacity: 0.9;
}

.footer-links ul,
.footer-legal ul {
	list-style: none;
}

.footer-links a,
.footer-legal a {
	color: var(--color-white);
	text-decoration: none;
	opacity: 0.9;
	transition: opacity 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover {
	opacity: 1;
	color: var(--color-accent);
}

.footer-risk {
	text-align: center;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.news-card.featured {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Cookie Consent */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--color-primary);
	color: var(--color-white);
	padding: 1rem;
	display: none;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
}

/* Mobile Menu */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

.mobile-menu-btn span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--color-white);
	margin: 5px 0;
}

@media (max-width: 768px) {
	.mobile-menu-btn {
		display: block;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--color-primary);
		flex-direction: column;
		padding: 1rem;
	}

	.nav-links.active {
		display: flex;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}
}

/* Page Headers */
.page-header {
	background: var(--gradient-primary);
	color: var(--color-white);
	padding: 6rem 2rem 4rem;
	text-align: center;
}

.page-header h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-header p {
	font-size: 1.2rem;
	opacity: 0.9;
}

/* News Page Styles */
.news-page {
	padding: 4rem 0;
	background: #f8f9fa;
}

.news-filters {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

.filter-btn {
	padding: 0.5rem 1.5rem;
	border: 1px solid var(--color-primary);
	border-radius: 20px;
	background: transparent;
	color: var(--color-primary);
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

.news-grid-extended {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.page-number {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.page-number.active {
	background: var(--color-primary);
	color: var(--color-white);
}

/* Analysis Page Styles */
.analysis-content {
	padding: 4rem 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.analysis-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
}

/* Enhanced Analysis Cards */
.analysis-card {
	background: var(--color-white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(155, 135, 245, 0.2);
}

.analysis-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 20px rgba(155, 135, 245, 0.2);
}

.analysis-header {
	padding: 2rem;
	background: var(--gradient-secondary);
	color: var(--color-white);
}

.analysis-chart {
	/* padding: 1rem; */
	background: #f8f9fa;
}

.analysis-chart img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.analysis-details {
	padding: 2rem;
}

.analysis-metrics {
	display: flex;
	justify-content: space-between;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.analysis-metrics span {
	padding: 0.5rem 1rem;
	background: rgba(155, 135, 245, 0.1);
	border-radius: 20px;
	font-size: 0.875rem;
	color: var(--color-primary);
}
/* About Page Styles */
.about-content {
	padding: 4rem 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.about-text h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--color-primary);
}

.about-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-section {
	text-align: center;
	margin-top: 4rem;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.team-member {
	text-align: center;
}

.team-member img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin-bottom: 1rem;
	object-fit: cover;
}

/* Enhanced FAQ Styles */
.faq-content {
	padding: 4rem 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-category {
	margin-bottom: 3rem;
}

.faq-category h2 {
	font-size: 1.8rem;
	margin-bottom: 2rem;
	color: var(--color-primary);
	position: relative;
	padding-left: 1rem;
}

.faq-category h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 24px;
	background: var(--color-secondary);
	border-radius: 2px;
}

.faq-item {
	background: var(--color-white);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(155, 135, 245, 0.2);
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
	color: var(--color-primary);
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: rgba(155, 135, 245, 0.05);
}

.faq-icon {
	font-size: 1.5rem;
	color: var(--color-secondary);
	transition: transform 0.3s ease;
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background: rgba(155, 135, 245, 0.05);
	color: var(--color-text);
	line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
	.about-grid {
		grid-template-columns: 1fr;
	}

	.analysis-grid {
		grid-template-columns: 1fr;
	}

	.team-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.news-filters {
		flex-wrap: wrap;
	}

	.page-header h1 {
		font-size: 1.5rem;
	}

	.news-grid-extended {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.news-grid {
		grid-template-columns: 1fr;
	}
}

/* Legal Pages Styles */
.legal-page {
	padding: 6rem 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.legal-title {
	font-size: 2.5rem;
	color: var(--color-primary);
	margin-bottom: 3rem;
	text-align: center;
	font-weight: 700;
}

.legal-content {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.legal-section {
	margin-bottom: 2.5rem;
}

.legal-section h2 {
	color: var(--color-primary);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.legal-section p {
	margin-bottom: 1rem;
	line-height: 1.6;
	color: #4a5568;
}

.legal-list {
	list-style: disc;
	margin-left: 1.5rem;
	margin-top: 0.5rem;
}

.legal-list li {
	margin-bottom: 0.5rem;
	color: #4a5568;
}

.legal-address {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	margin: 1rem 0;
	line-height: 1.6;
	color: #4a5568;
}

@media (max-width: 768px) {
	.legal-title {
		font-size: 1.5rem;
	}

	.legal-content {
		padding: 1.5rem;
		margin: 0 1rem;
	}

	.legal-section h2 {
		font-size: 1.25rem;
	}

	.studies-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.section-title {
		font-size: 1.5rem;
	}
}
