:root {
	/* Color Palette */
	--fm-bg-primary: #0b0f17;
	--fm-bg-secondary: #131822;
	--fm-bg-tertiary: #1c222f;
	--fm-accent-primary: #1de9b6;
	--fm-accent-secondary: #ffc400;
	--fm-text-primary: #eceff1;
	--fm-text-secondary: #b0bec5;
	--fm-text-muted: #78909c;
	--fm-overlay-light: rgba(255, 255, 255, 0.05);
	--fm-overlay-medium: rgba(255, 255, 255, 0.1);
	--fm-overlay-dark: rgba(0, 0, 0, 0.5);

	/* Gradients */
	--fm-gradient-primary: linear-gradient(135deg, #1de9b6 0%, #1dc4e9 100%);
	--fm-gradient-secondary: linear-gradient(135deg, #ffc400 0%, #ff9800 100%);
	--fm-gradient-dark: linear-gradient(135deg, #131822 0%, #0b0f17 100%);

	/* Shadows */
	--fm-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
	--fm-shadow-md: 0 6px 12px rgba(0, 0, 0, 0.4);
	--fm-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);

	/* Animations */
	--fm-transition-fast: 0.2s ease;
	--fm-transition-normal: 0.3s ease;
	--fm-transition-slow: 0.5s ease;

	/* Layout */
	--fm-border-radius-sm: 4px;
	--fm-border-radius-md: 8px;
	--fm-border-radius-lg: 16px;
	--fm-header-height: 80px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%; /* 10px = 1rem */
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: var(--fm-accent-primary) var(--fm-bg-secondary);
}

body {
	font-family: 'Montserrat', 'Roboto', sans-serif;
	font-size: 1.6rem;
	line-height: 1.7;
	color: var(--fm-text-primary);
	background-color: var(--fm-bg-primary);
	overflow-x: hidden;
	min-height: 100vh;
}

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background-color: var(--fm-bg-secondary);
}

::-webkit-scrollbar-thumb {
	background-color: var(--fm-accent-primary);
	border-radius: 4px;
}

a {
	color: var(--fm-accent-primary);
	text-decoration: none;
	transition: color var(--fm-transition-fast);
}

a:hover,
a:focus {
	color: var(--fm-accent-secondary);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 2rem;
	color: var(--fm-text-primary);
}

h1 {
	font-size: 5.2rem;
}

h2 {
	font-size: 4rem;
}

h3 {
	font-size: 2.8rem;
}

h4 {
	font-size: 2.4rem;
}

h5 {
	font-size: 2rem;
}

h6 {
	font-size: 1.6rem;
}

p {
	margin-bottom: 2rem;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

input,
textarea,
select,
button {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	outline: none;
}

.fm-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.fm-section {
	padding: 10rem 0;
	position: relative;
}

.fm-section-title {
	position: relative;
	margin-bottom: 6rem;
	text-align: center;
}

.fm-section-title h2 {
	display: inline-block;
	font-size: 4rem;
	background: var(--fm-gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.fm-section-title::after {
	content: '';
	position: absolute;
	bottom: -1.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 8rem;
	height: 4px;
	background: var(--fm-gradient-primary);
	border-radius: 2px;
}

/* ======= UTILITY CLASSES ======= */
.fm-text-accent {
	color: var(--fm-accent-primary);
}

.fm-text-accent-2 {
	color: var(--fm-accent-secondary);
}

.fm-text-center {
	text-align: center;
}

.fm-text-right {
	text-align: right;
}

.fm-text-left {
	text-align: left;
}

.fm-mb-1 {
	margin-bottom: 1rem;
}

.fm-mb-2 {
	margin-bottom: 2rem;
}

.fm-mb-3 {
	margin-bottom: 3rem;
}

.fm-mb-4 {
	margin-bottom: 4rem;
}

.fm-mb-5 {
	margin-bottom: 5rem;
}

.fm-mt-1 {
	margin-top: 1rem;
}

.fm-mt-2 {
	margin-top: 2rem;
}

.fm-mt-3 {
	margin-top: 3rem;
}

.fm-mt-4 {
	margin-top: 4rem;
}

.fm-mt-5 {
	margin-top: 5rem;
}

.fm-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--fm-overlay-dark);
	z-index: -1;
}

.fm-bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231DE9B6' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
	z-index: -1;
	opacity: 0.3;
}

/* ======= BUTTONS ======= */
.fm-btn {
	display: inline-block;
	padding: 1.2rem 3rem;
	border: none;
	border-radius: var(--fm-border-radius-md);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all var(--fm-transition-normal);
	position: relative;
	overflow: hidden;
	z-index: 1;
	text-align: center;
}

.fm-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	z-index: -1;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--fm-transition-normal);
}

.fm-btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.fm-btn-primary {
	background: var(--fm-gradient-primary);
	color: var(--fm-bg-primary);
	box-shadow: 0 4px 15px rgba(29, 233, 182, 0.4);
}

.fm-btn-primary:hover {
	box-shadow: 0 6px 20px rgba(29, 233, 182, 0.6);
	transform: translateY(-2px);
}

.fm-btn-secondary {
	background: var(--fm-gradient-secondary);
	color: var(--fm-bg-primary);
	box-shadow: 0 4px 15px rgba(255, 196, 0, 0.4);
}

.fm-btn-secondary:hover {
	box-shadow: 0 6px 20px rgba(255, 196, 0, 0.6);
	transform: translateY(-2px);
}

.fm-btn-outline {
	background: transparent;
	border: 2px solid var(--fm-accent-secondary);
	color: var(--fm-accent-secondary);
}

.fm-btn-outline:hover {
	background: var(--fm-accent-secondary);
	color: var(--fm-bg-primary);
}

.fm-btn-link {
	background: transparent;
	padding: 1rem 0;
	position: relative;
	color: var(--fm-accent-primary);
	letter-spacing: 1px;
	font-weight: 600;
}

.fm-btn-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--fm-accent-primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--fm-transition-normal);
}

.fm-btn-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.fm-btn-link i {
	margin-left: 0.8rem;
	transition: transform var(--fm-transition-fast);
}

.fm-btn-link:hover i {
	transform: translateX(5px);
}

.fm-btn-group {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

/* ======= LAYOUT COMPONENTS ======= */

/* Grid System */
.fm-row {
	display: flex;
	flex-wrap: wrap;
	margin: -1.5rem;
}

.fm-col {
	padding: 1.5rem;
	flex-grow: 1;
}

.fm-col-1 {
	width: 8.333%;
}
.fm-col-2 {
	width: 16.666%;
}
.fm-col-3 {
	width: 25%;
}
.fm-col-4 {
	width: 33.333%;
}
.fm-col-5 {
	width: 41.666%;
}
.fm-col-6 {
	width: 50%;
}
.fm-col-7 {
	width: 58.333%;
}
.fm-col-8 {
	width: 66.666%;
}
.fm-col-9 {
	width: 75%;
}
.fm-col-10 {
	width: 83.333%;
}
.fm-col-11 {
	width: 91.666%;
}
.fm-col-12 {
	width: 100%;
}

/* Card Component */
.fm-card {
	background: var(--fm-bg-secondary);
	border-radius: var(--fm-border-radius-md);
	overflow: hidden;
	box-shadow: var(--fm-shadow-md);
	transition: transform var(--fm-transition-normal),
		box-shadow var(--fm-transition-normal);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.fm-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(29, 233, 182, 0.1) 0%,
		transparent 100%
	);
	opacity: 0;
	transition: opacity var(--fm-transition-normal);
	pointer-events: none;
}

.fm-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--fm-shadow-lg);
}

.fm-card:hover::before {
	opacity: 1;
}

.fm-card-img {
	position: relative;
	overflow: hidden;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	height: 0;
}

.fm-card-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--fm-transition-normal);
}

.fm-card:hover .fm-card-img img {
	transform: scale(1.05);
}

.fm-card-body {
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.fm-card-title {
	font-size: 2.4rem;
	margin-bottom: 1.5rem;
}

.fm-card-title a {
	color: var(--fm-text-primary);
	transition: color var(--fm-transition-fast);
	position: relative;
	display: inline-block;
}

.fm-card-title a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--fm-accent-primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--fm-transition-normal);
}

.fm-card-title a:hover {
	color: var(--fm-accent-primary);
}

.fm-card-title a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.fm-card-text {
	color: var(--fm-text-secondary);
	margin-bottom: 2rem;
	flex-grow: 1;
}

.fm-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	border-top: 1px solid var(--fm-overlay-light);
}

.fm-card-meta {
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	color: var(--fm-text-muted);
}

.fm-card-meta i {
	margin-right: 0.5rem;
	color: var(--fm-accent-primary);
}

.fm-card-meta span + i {
	margin-left: 1.5rem;
}

/* Rating Component */
.fm-rating {
	display: inline-flex;
	align-items: center;
}

.fm-stars {
	display: flex;
}

.fm-stars i {
	color: var(--fm-accent-secondary);
	margin-right: 2px;
}

.fm-stars i.far {
	color: var(--fm-text-muted);
}

.fm-rating-value {
	margin-left: 1rem;
	font-weight: 600;
	color: var(--fm-accent-secondary);
}

/* ======= HEADER & NAV ======= */
.fm-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--fm-header-height);
	background: rgba(11, 15, 23, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 1000;
	transition: background var(--fm-transition-normal),
		box-shadow var(--fm-transition-normal);
}

.fm-header.scrolled {
	background: rgba(11, 15, 23, 0.95);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.fm-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.fm-logo {
	display: flex;
	align-items: center;
}

.fm-logo-text {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--fm-text-primary);
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all var(--fm-transition-fast);
}

.fm-logo-text::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		var(--fm-accent-primary),
		var(--fm-accent-secondary)
	);
	opacity: 0;
	transition: opacity var(--fm-transition-fast);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	z-index: -1;
}

.fm-logo-text span {
	color: var(--fm-accent-primary);
}

.fm-logo:hover .fm-logo-text::before {
	opacity: 1;
}

.fm-nav {
	display: flex;
	align-items: center;
}

.fm-nav-list {
	display: flex;
	list-style: none;
}

.fm-nav-item {
	margin-left: 4rem;
	position: relative;
}

.fm-nav-link {
	color: var(--fm-text-primary);
	font-weight: 600;
	font-size: 1.6rem;
	padding: 1rem 0;
	display: inline-block;
	position: relative;
	transition: color var(--fm-transition-fast);
}

.fm-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--fm-accent-primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--fm-transition-normal);
}

.fm-nav-link:hover,
.fm-nav-link.active {
	color: var(--fm-accent-primary);
}

.fm-nav-link:hover::after,
.fm-nav-link.active::after {
	transform: scaleX(1);
	transform-origin: left;
}

.fm-nav-toggle {
	display: none;
	background: transparent;
	border: none;
	color: var(--fm-text-primary);
	font-size: 2.4rem;
	cursor: pointer;
	transition: color var(--fm-transition-fast);
}

.fm-nav-toggle:hover {
	color: var(--fm-accent-primary);
}

.fm-nav-toggle i {
	pointer-events: none;
}

/* ======= HERO SECTION ======= */
.fm-hero {
	height: 100vh;
	min-height: 700px;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: var(--fm-header-height);
	background: linear-gradient(
		135deg,
		rgba(11, 15, 23, 0.9) 0%,
		rgba(11, 15, 23, 0.7) 100%
	);
	overflow: hidden;
}

.fm-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('assets/fm-hero.webp');
	background-size: cover;
	background-position: center;
	z-index: -2;
	opacity: 0.5;
}

.fm-hero-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.fm-hero-title {
	font-size: 6rem;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 3rem;
	background: linear-gradient(
		135deg,
		var(--fm-accent-primary) 0%,
		var(--fm-accent-secondary) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.fm-hero-subtitle {
	font-size: 2.4rem;
	font-weight: 400;
	margin-bottom: 4rem;
	color: var(--fm-text-primary);
}

.fm-hero-btn-group {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.fm-hero-svg {
	position: absolute;
	bottom: -10%;
	left: 0;
	width: 100%;
	z-index: -1;
	opacity: 0.5;
}

/* ======= TRENDING SECTION ======= */
.fm-trending {
	position: relative;
	background: var(--fm-bg-secondary);
}

.fm-trending-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

/* ======= TOP PICKS SECTION ======= */
.fm-top-picks {
	position: relative;
}

.fm-picks-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 3rem;
}

/* ======= INSIGHTS SECTION ======= */
.fm-insights {
	position: relative;
	background: var(--fm-bg-secondary);
}

.fm-insights-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}

.fm-insight-item {
	display: flex;
	gap: 2.5rem;
	background: var(--fm-bg-tertiary);
	border-radius: var(--fm-border-radius-md);
	padding: 3rem;
	transition: transform var(--fm-transition-normal),
		box-shadow var(--fm-transition-normal);
}

.fm-insight-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--fm-shadow-md);
}

.fm-insight-icon {
	flex-shrink: 0;
	width: 6rem;
	height: 6rem;
	background: var(--fm-overlay-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fm-accent-primary);
	font-size: 2.4rem;
}

.fm-insight-content {
	flex-grow: 1;
}

.fm-insight-title {
	margin-bottom: 1.5rem;
}

.fm-insight-text {
	color: var(--fm-text-secondary);
	margin-bottom: 1.5rem;
}

/* ======= HIGHLIGHTS SECTION ======= */
.fm-highlights {
	position: relative;
}

.fm-highlights-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.fm-gallery-item {
	position: relative;
	border-radius: var(--fm-border-radius-md);
	overflow: hidden;
	height: 40rem;
	cursor: pointer;
}

.fm-gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--fm-transition-normal);
}

.fm-gallery-item:hover .fm-gallery-img {
	transform: scale(1.05);
}

.fm-gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(
		to top,
		rgba(11, 15, 23, 0.9) 0%,
		transparent 100%
	);
	padding: 3rem;
	transform: translateY(20%);
	opacity: 0;
	transition: transform var(--fm-transition-normal),
		opacity var(--fm-transition-normal);
}

.fm-gallery-item:hover .fm-gallery-overlay {
	transform: translateY(0);
	opacity: 1;
}

.fm-gallery-title {
	font-size: 2.4rem;
	margin-bottom: 1rem;
}

.fm-gallery-desc {
	color: var(--fm-text-secondary);
}

/* ======= CONTACT SECTION ======= */
.fm-contact {
	position: relative;
	background: var(--fm-bg-secondary);
}

.fm-contact-row {
	display: flex;
	gap: 5rem;
}

.fm-contact-form-col {
	flex: 1;
}

.fm-contact-form {
	background: var(--fm-bg-tertiary);
	border-radius: var(--fm-border-radius-lg);
	padding: 4rem;
	box-shadow: var(--fm-shadow-md);
}

.fm-form-group {
	margin-bottom: 2.5rem;
}

.fm-form-label {
	display: block;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--fm-text-secondary);
}

.fm-form-control {
	width: 100%;
	padding: 1.5rem 2rem;
	background: var(--fm-bg-primary);
	border: 1px solid var(--fm-overlay-light);
	border-radius: var(--fm-border-radius-md);
	transition: border var(--fm-transition-fast),
		box-shadow var(--fm-transition-fast);
	color: var(--fm-text-primary);
}

.fm-form-control:focus {
	border-color: var(--fm-accent-primary);
	box-shadow: 0 0 0 3px rgba(29, 233, 182, 0.2);
}

.fm-form-control::placeholder {
	color: var(--fm-text-muted);
}

.fm-form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231DE9B6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 2rem center;
}

textarea.fm-form-control {
	min-height: 15rem;
	resize: vertical;
}

.fm-map-container {
	height: 100%;
}

.fm-contact-map-col {
	flex: 1;
}

/* Map Section */
.fm-map {
	height: 100%;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.fm-map {
		height: 400px;
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.fm-contact-map {
	position: relative;
	height: 100%;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.fm-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% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.fm-error-message {
	display: block;
	color: #ff4444;
	font-size: 1.4rem;
	margin-top: 0.5rem;
}
/* ======= FOOTER ======= */
.fm-footer {
	position: relative;
	background: var(--fm-bg-tertiary);
	padding: 8rem 0 0;
}

.fm-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 5rem;
	padding-bottom: 5rem;
}

.fm-footer-col h4 {
	font-size: 2rem;
	margin-bottom: 2.5rem;
	position: relative;
	padding-bottom: 1.5rem;
}

.fm-footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 5rem;
	height: 3px;
	background: var(--fm-accent-primary);
	border-radius: 2px;
}

.fm-footer-info p {
	color: var(--fm-text-secondary);
	margin-bottom: 3rem;
}

.fm-social-links {
	display: flex;
	gap: 1.5rem;
}

.fm-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	background: var(--fm-overlay-light);
	border-radius: 50%;
	color: var(--fm-text-primary);
	font-size: 1.8rem;
	transition: all var(--fm-transition-normal);
}

.fm-social-link:hover {
	background: var(--fm-accent-primary);
	color: var(--fm-bg-primary);
	transform: translateY(-3px);
}

.fm-footer-links li {
	margin-bottom: 1.5rem;
}

.fm-footer-link {
	color: var(--fm-text-secondary);
	transition: color var(--fm-transition-fast),
		transform var(--fm-transition-fast);
	display: inline-block;
}

.fm-footer-link:hover {
	color: var(--fm-accent-primary);
	transform: translateX(5px);
}

.fm-contact-info li {
	display: flex;
	margin-bottom: 2rem;
	color: var(--fm-text-secondary);
}

.fm-contact-icon {
	margin-right: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	background: var(--fm-overlay-light);
	border-radius: 50%;
	color: var(--fm-accent-primary);
	font-size: 1.8rem;
	flex-shrink: 0;
}

.fm-footer-bottom {
	background: rgba(0, 0, 0, 0.2);
	padding: 2.5rem 0;
	text-align: center;
	color: var(--fm-text-muted);
	font-size: 1.4rem;
}

/* ======= COOKIE CONSENT POPUP ======= */
.fm-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	background: var(--fm-bg-tertiary);
	box-shadow: var(--fm-shadow-lg);
	z-index: 1000;
	transition: bottom var(--fm-transition-normal);
	padding: 2.5rem 0;
}

.fm-cookie-popup.show {
	bottom: 0;
}

.fm-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
}

.fm-cookie-text {
	flex-grow: 1;
	color: var(--fm-text-secondary);
}

.fm-cookie-text h5 {
	color: var(--fm-text-primary);
	margin-bottom: 1rem;
}

.fm-cookie-text p {
	margin-bottom: 0;
}

.fm-cookie-actions {
	display: flex;
	gap: 1.5rem;
	flex-shrink: 0;
}

.fm-cookie-link {
	margin-left: 2rem;
	font-size: 1.4rem;
}

.fm-cookies-table {
	overflow-x: auto;
}

/* ======= INNER PAGES ======= */
/* Page Header */
.fm-page-header {
	position: relative;
	padding: 12rem 0 8rem;
	text-align: center;
	background: linear-gradient(
		135deg,
		rgba(11, 15, 23, 0.9) 0%,
		rgba(11, 15, 23, 0.7) 100%
	);
	overflow: hidden;
}

.fm-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('assets/page-header-bg.jpg');
	background-size: cover;
	background-position: center;
	z-index: -2;
	opacity: 0.15;
	filter: blur(3px);
}

.fm-page-title {
	font-size: 5rem;
	margin-bottom: 2rem;
	position: relative;
	display: inline-block;
}

.fm-page-subtitle {
	font-size: 2rem;
	color: var(--fm-text-secondary);
	max-width: 700px;
	margin: 0 auto;
}

/* Page Content */
.fm-page-content {
	padding: 8rem 0;
}

/* Article Styles */
.fm-article {
	background: var(--fm-bg-secondary);
	border-radius: var(--fm-border-radius-lg);
	overflow: hidden;
	box-shadow: var(--fm-shadow-md);
	margin-bottom: 5rem;
}

.fm-article-img {
	width: 100%;
	height: 40rem;
	object-fit: cover;
}

.fm-article-body {
	padding: 4rem;
}

.fm-article-title {
	font-size: 3.2rem;
	margin-bottom: 2rem;
}

.fm-article-meta {
	display: flex;
	align-items: center;
	margin-bottom: 3rem;
	color: var(--fm-text-muted);
	font-size: 1.4rem;
}

.fm-article-meta > div {
	display: flex;
	align-items: center;
	margin-right: 2.5rem;
}

.fm-article-meta i {
	margin-right: 0.8rem;
	color: var(--fm-accent-primary);
}

.fm-article-content {
	color: var(--fm-text-secondary);
}

.fm-article-content p {
	margin-bottom: 2rem;
}

.fm-article-footer {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid var(--fm-overlay-light);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.fm-article-tags {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.fm-tag {
	display: inline-block;
	padding: 0.6rem 1.5rem;
	background: var(--fm-overlay-light);
	color: var(--fm-text-secondary);
	border-radius: 3rem;
	font-size: 1.3rem;
	transition: all var(--fm-transition-fast);
}

.fm-tag:hover {
	background: var(--fm-accent-primary);
	color: var(--fm-bg-primary);
}

.fm-article-share {
	display: flex;
	gap: 1rem;
}

.fm-share-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	background: var(--fm-overlay-light);
	border-radius: 50%;
	color: var(--fm-text-primary);
	font-size: 1.6rem;
	transition: all var(--fm-transition-normal);
}

.fm-share-link:hover {
	background: var(--fm-accent-primary);
	color: var(--fm-bg-primary);
}

/* Review Card */
.fm-review {
	background: var(--fm-bg-secondary);
	border-radius: var(--fm-border-radius-lg);
	overflow: hidden;
	box-shadow: var(--fm-shadow-md);
	margin-bottom: 5rem;
	display: flex;
	flex-direction: column;
}

.fm-review-header {
	position: relative;
	padding: 3rem;
	background: var(--fm-bg-tertiary);
	display: flex;
	align-items: flex-end;
	justify-content: right;
}

.fm-review-logo {
	max-width: 20rem;
	height: auto;
}

.fm-review-rating {
	text-align: right;
}

.fm-review-body {
	padding: 4rem;
	flex-grow: 1;
}

.fm-review-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin: 3rem 0;
}

.fm-feature-item {
	display: flex;
	align-items: center;
}

.fm-feature-icon {
	color: var(--fm-accent-primary);
	margin-right: 1.5rem;
	font-size: 1.8rem;
}

.fm-review-footer {
	padding: 2rem 4rem;
	background: var(--fm-bg-tertiary);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fm-review-verdict {
	display: flex;
	align-items: center;
}

.fm-verdict-icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: var(--fm-accent-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	margin-right: 1.5rem;
	color: var(--fm-bg-primary);
}

.fm-verdict-text {
	font-weight: 700;
	font-size: 1.8rem;
}

/* Policy Page */
.fm-policy-content {
	background: var(--fm-bg-secondary);
	border-radius: var(--fm-border-radius-lg);
	padding: 5rem;
	box-shadow: var(--fm-shadow-md);
}

.fm-policy-content h2 {
	font-size: 2.8rem;
	margin-top: 4rem;
	margin-bottom: 2rem;
}

.fm-policy-content h2:first-child {
	margin-top: 0;
}

.fm-policy-content p,
.fm-policy-content ul,
.fm-policy-content ol {
	color: var(--fm-text-secondary);
	margin-bottom: 2rem;
}

.fm-policy-content ul,
.fm-policy-content ol {
	padding-left: 2.5rem;
}

.fm-policy-content li {
	margin-bottom: 1rem;
}

.fm-policy-content a {
	color: var(--fm-accent-primary);
	text-decoration: underline;
}

.fm-policy-content a:hover {
	text-decoration: none;
}

/* Contact Page */
.fm-contact-page {
	padding: 8rem 0;
}

.fm-contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-bottom: 6rem;
}

.fm-contact-card {
	background: var(--fm-bg-secondary);
	border-radius: var(--fm-border-radius-md);
	padding: 3rem;
	text-align: center;
	transition: transform var(--fm-transition-normal);
}

.fm-contact-card:hover {
	transform: translateY(-5px);
}

.fm-contact-card-icon {
	width: 7rem;
	height: 7rem;
	background: var(--fm-overlay-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: var(--fm-accent-primary);
	font-size: 2.8rem;
}

.fm-contact-card h4 {
	margin-bottom: 1.5rem;
}

.fm-contact-card p {
	color: var(--fm-text-secondary);
}

/* ======= RESPONSIVE STYLES ======= */

/* Large Devices (less than 1200px) */
@media (max-width: 1199px) {
	html {
		font-size: 60%;
	}

	.fm-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem;
	}
}

/* Medium Devices (less than 992px) */
@media (max-width: 991px) {
	html {
		font-size: 58%;
	}

	.fm-nav-toggle {
		display: block;
	}

	.fm-nav {
		position: fixed;
		top: var(--fm-header-height);
		right: -30rem;
		width: 30rem;
		height: calc(100vh - var(--fm-header-height));
		background: var(--fm-bg-tertiary);
		box-shadow: var(--fm-shadow-lg);
		padding: 4rem 2rem;
		transition: right var(--fm-transition-normal);
		z-index: 990;
	}

	.fm-nav.active {
		right: 0;
	}

	.fm-nav-list {
		flex-direction: column;
		width: 100%;
	}

	.fm-nav-item {
		margin-left: 0;
		margin-bottom: 2rem;
		width: 100%;
	}

	.fm-nav-link {
		width: 100%;
		padding: 1rem;
	}

	.fm-trending-cards,
	.fm-picks-grid,
	.fm-insights-list,
	.fm-highlights-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.fm-contact-row {
		flex-direction: column;
		gap: 3rem;
	}

	.fm-contact-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	[class*='fm-col-'] {
		width: 100%;
	}

	.fm-col-sm-6 {
		width: 50%;
	}

	.fm-hero-btn-group {
		flex-direction: column;
		align-items: center;
	}

	.fm-hero-btn-group .fm-btn {
		width: 100%;
		max-width: 25rem;
	}
}

/* Small Devices (less than 768px) */
@media (max-width: 767px) {
	html {
		font-size: 56%;
	}

	.fm-trending-cards,
	.fm-picks-grid,
	.fm-insights-list,
	.fm-highlights-gallery,
	.fm-contact-cards {
		grid-template-columns: 1fr;
	}

	.fm-insight-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.fm-insight-content {
		width: 100%;
	}

	.fm-footer-grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	.fm-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.fm-cookie-actions {
		flex-direction: column;
		width: 100%;
	}

	.fm-cookie-actions .fm-btn {
		width: 100%;
	}

	.fm-article-footer {
		flex-direction: column;
		gap: 2rem;
		align-items: flex-start;
	}

	.fm-review-header {
		flex-direction: column;
		gap: 2rem;
	}

	.fm-review-features {
		grid-template-columns: 1fr;
	}
}

/* Extra Small Devices (less than 576px) */
@media (max-width: 575px) {
	html {
		font-size: 54%;
	}

	.fm-logo-text {
		font-size: 2rem;
	}

	.fm-header {
		height: 7rem;
	}

	.fm-nav {
		top: 7rem;
		height: calc(100vh - 7rem);
	}

	.fm-hero-title {
		font-size: 4.5rem;
	}

	.fm-hero-subtitle {
		font-size: 2rem;
	}

	.fm-section {
		padding: 6rem 0;
	}

	.fm-section-title h2 {
		font-size: 3.5rem;
	}

	.fm-page-title {
		font-size: 4rem;
	}

	.fm-article-body,
	.fm-review-body,
	.fm-policy-content {
		padding: 2.5rem;
	}

	.fm-article-img {
		height: 25rem;
	}

	.fm-contact-form {
		padding: 2.5rem;
	}
}
