* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

:root {
	--accent-1: #ff6a3d;
	--accent-2: #22d3ee;
	--accent-3: #7c3aed;
	--text-primary: #e5e7eb;
	--bg-primary: #0e1116;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #0e1116;
	color: #e5e7eb;
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e5e7eb;
}

h1 {
	font-size: 2.5rem;
	line-height: 1.2;
}

h2 {
	font-size: 2rem;
	line-height: 1.3;
}

h3 {
	font-size: 1.5rem;
	line-height: 1.4;
}

p {
	margin-bottom: 1rem;
	color: #d1d5db;
}

a {
	color: #22d3ee;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #0891b2;
}

img {
	max-width: 100%;
	height: auto;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.frl-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.frl-btn {
	display: inline-block;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	font-weight: 500;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	text-decoration: none;
}

.frl-btn-primary {
	background: linear-gradient(135deg, #ff6a3d, #e55527);
	color: #ffffff;
}

.frl-btn-primary:hover {
	background: linear-gradient(135deg, #e55527, #d94413);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 106, 61, 0.3);
}

.frl-btn-secondary {
	background: linear-gradient(135deg, #22d3ee, #0891b2);
	color: #ffffff;
}

.frl-btn-secondary:hover {
	background: linear-gradient(135deg, #0891b2, #0e7490);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(34, 211, 238, 0.3);
}

.frl-btn-outline {
	background: transparent;
	color: #22d3ee;
	border: 2px solid #22d3ee;
}

.frl-btn-outline:hover {
	background: #22d3ee;
	color: #0e1116;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes frl-fade-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes frl-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes frl-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes frl-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.frl-fade-in {
	animation: frl-fade-in 0.8s ease-out;
}

.frl-slide-in-left {
	animation: frl-slide-in-left 0.8s ease-out;
}

.frl-slide-in-right {
	animation: frl-slide-in-right 0.8s ease-out;
}

.frl-animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.frl-animate-on-scroll.frl-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===================================
   READING PROGRESS BAR
   =================================== */

.frl-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff6a3d, #22d3ee);
	z-index: 9999;
	transition: width 0.25s ease;
}

/* ===================================
   HEADER STYLES
   =================================== */

.frl-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(21, 26, 33, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(229, 231, 235, 0.1);
	transition: all 0.3s ease;
}

.frl-header.frl-scrolled {
	background: rgba(21, 26, 33, 0.98);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.frl-header-utility {
	background: rgba(14, 17, 22, 0.8);
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(229, 231, 235, 0.05);
}

.frl-header-utility-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
	color: #9ca3af;
}

.frl-header-time {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.frl-header-social {
	display: flex;
	gap: 1rem;
}

.frl-header-social a {
	color: #9ca3af;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.frl-header-social a:hover {
	color: #22d3ee;
}

.frl-header-main {
	padding: 1rem 0;
}

.frl-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.frl-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: #e5e7eb;
	text-decoration: none;
}

.frl-logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #ff6a3d, #22d3ee);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.25rem;
}

.frl-nav {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.frl-nav-link {
	color: #d1d5db;
	font-weight: 500;
	padding: 0.5rem 0;
	position: relative;
	transition: color 0.3s ease;
}

.frl-nav-link:hover,
.frl-nav-link.frl-active {
	color: #22d3ee;
}

.frl-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ff6a3d, #22d3ee);
	transition: width 0.3s ease;
}

.frl-nav-link:hover::after,
.frl-nav-link.frl-active::after {
	width: 100%;
}

.frl-mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.frl-mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #e5e7eb;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.frl-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(14, 17, 22, 0.98);
	backdrop-filter: blur(20px);
	z-index: 1005;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transform: translateY(-100%);
	transition: transform 0.5s ease;
}

.frl-mobile-menu.frl-active {
	transform: translateY(0);
}

.frl-mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	text-align: center;
}

.frl-mobile-nav-link {
	color: #e5e7eb;
	font-size: 1.5rem;
	font-weight: 600;
	padding: 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.frl-mobile-nav-link:hover {
	background: rgba(34, 211, 238, 0.1);
	color: #22d3ee;
}

.frl-mobile-menu-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: none;
	border: none;
	color: #e5e7eb;
	font-size: 2rem;
	cursor: pointer;
}

/* ===================================
   HERO SECTION
   =================================== */

.frl-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	background: linear-gradient(
			135deg,
			rgba(14, 17, 22, 0.9),
			rgba(21, 26, 33, 0.8)
		),
		url('assets/frl-hero.webp');
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
	overflow: hidden;
}

.frl-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 40%,
			rgba(255, 106, 61, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 60%,
			rgba(34, 211, 238, 0.1) 0%,
			transparent 50%
		);
}

.frl-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
	padding: 6rem 0 2rem;
}

.frl-hero-text h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #e5e7eb, #22d3ee);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.frl-hero-text p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #d1d5db;
	line-height: 1.7;
}

.frl-hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.frl-hero-widget {
	background: rgba(21, 26, 33, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(34, 211, 238, 0.2);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.frl-hero-widget h3 {
	color: #22d3ee;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.frl-checklist {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.frl-checklist li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.frl-checklist li:hover {
	background: rgba(124, 58, 237, 0.1);
}

.frl-checklist li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: #10b981;
	background: rgba(16, 185, 129, 0.2);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	flex-shrink: 0;
}

/* ===================================
   SECTION STYLES
   =================================== */

.frl-section {
	padding: 4rem 0;
	position: relative;
}

.frl-section-dark {
	background: #151a21;
}

.frl-section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.frl-section-title h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #e5e7eb, #22d3ee);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.frl-section-title p {
	font-size: 1.2rem;
	color: #9ca3af;
	max-width: 600px;
	margin: 0 auto;
}

/* ===================================
   CARD STYLES
   =================================== */

.frl-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.frl-card {
	background: rgba(21, 26, 33, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.frl-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff6a3d, #22d3ee);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.frl-card:hover::before {
	transform: scaleX(1);
}

.frl-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: rgba(34, 211, 238, 0.3);
}

.frl-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff6a3d, #e55527);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: #ffffff;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.frl-card:hover .frl-card-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, #22d3ee, #0891b2);
}

.frl-card h3 {
	margin-bottom: 1rem;
	color: #e5e7eb;
}

.frl-card p {
	color: #d1d5db;
	line-height: 1.6;
}

/* ===================================
   TABS STYLES
   =================================== */

.frl-tabs {
	margin: 3rem 0;
}

.frl-tabs-nav {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 2rem;
	background: rgba(21, 26, 33, 0.5);
	border-radius: 12px;
	padding: 0.5rem;
	overflow-x: auto;
}

.frl-tab-button {
	padding: 0.75rem 1.5rem;
	background: transparent;
	border: none;
	color: #9ca3af;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.frl-tab-button.frl-active,
.frl-tab-button:hover {
	background: linear-gradient(135deg, #ff6a3d, #22d3ee);
	color: #ffffff;
}

.frl-tab-content {
	display: none;
	animation: frl-fade-in 0.5s ease-out;
}

.frl-tab-content.frl-active {
	display: block;
}

.frl-tab-panel {
	background: rgba(21, 26, 33, 0.8);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	padding: 2rem;
	backdrop-filter: blur(10px);
}

/* ===================================
   FORM STYLES
   =================================== */

.frl-form {
	background: rgba(21, 26, 33, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(34, 211, 238, 0.2);
	border-radius: 16px;
	padding: 2rem;
}

.frl-form-group {
	margin-bottom: 1.5rem;
}

.frl-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #e5e7eb;
	font-weight: 500;
}

.frl-form-input,
.frl-form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: rgba(14, 17, 22, 0.8);
	border: 2px solid rgba(229, 231, 235, 0.1);
	border-radius: 8px;
	color: #e5e7eb;
	font-family: inherit;
	transition: all 0.3s ease;
}

.frl-form-input:focus,
.frl-form-textarea:focus {
	outline: none;
	border-color: #22d3ee;
	box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.frl-form-input.frl-error,
.frl-form-textarea.frl-error {
	border-color: #ef4444;
}

.frl-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.frl-form-error.frl-show {
	display: block;
}

.frl-form-textarea {
	resize: vertical;
	min-height: 120px;
}

/* ===================================
   ACCORDION STYLES
   =================================== */

.frl-accordion {
	background: rgba(21, 26, 33, 0.8);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	overflow: hidden;
	margin: 1rem 0;
}

.frl-accordion-item {
	border-bottom: 1px solid rgba(229, 231, 235, 0.1);
}

.frl-accordion-item:last-child {
	border-bottom: none;
}

.frl-accordion-header {
	padding: 1.5rem;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	color: #e5e7eb;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.frl-accordion-header:hover {
	background: rgba(34, 211, 238, 0.05);
	color: #22d3ee;
}

.frl-accordion-icon {
	transition: transform 0.3s ease;
}

.frl-accordion-item.frl-active .frl-accordion-icon {
	transform: rotate(180deg);
}

.frl-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.frl-accordion-item.frl-active .frl-accordion-content {
	max-height: 1000px;
}

.frl-accordion-body {
	padding: 1.5rem 1.5rem 1.5rem;
	color: #d1d5db;
	line-height: 1.6;
}

/* ===================================
   FOOTER STYLES
   =================================== */

.frl-footer {
	background: #0e1116;
	border-top: 1px solid rgba(229, 231, 235, 0.1);
	padding: 3rem 0 1rem;
}

.frl-footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.frl-footer-section h3 {
	color: #22d3ee;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.frl-footer-slogan {
	font-size: 1.1rem;
	color: #9ca3af;
	line-height: 1.6;
}

.frl-footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 0.5rem;
	list-style: none;
}

.frl-footer-link {
	color: #d1d5db;
	padding: 0.5rem 0;
	transition: color 0.3s ease;
}

.frl-footer-link:hover {
	color: #22d3ee;
}

.frl-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.frl-footer-contact p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	color: #d1d5db;
	font-size: 0.95rem;
}

.frl-footer-contact i {
	color: #22d3ee;
	width: 16px;
}

.frl-footer-bottom {
	border-top: 1px solid rgba(229, 231, 235, 0.1);
	padding-top: 1rem;
	text-align: center;
	color: #9ca3af;
	font-size: 0.9rem;
}

/* ===================================
   COOKIE POPUP
   =================================== */

.frl-cookie-popup {
	display: none;
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	background: rgba(21, 26, 33, 0.98);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(34, 211, 238, 0.3);
	border-radius: 16px;
	padding: 1.5rem;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.5s ease;
	max-width: 500px;
	margin: 0 auto;
}

.frl-cookie-popup.frl-show {
	transform: translateY(0);
	display: block;
	opacity: 1;
}

.frl-cookie-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.frl-cookie-text {
	color: #d1d5db;
	font-size: 0.9rem;
	line-height: 1.5;
}

.frl-cookie-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.frl-cookie-link {
	color: #22d3ee;
	font-size: 0.875rem;
}

.frl-cookie-accept {
	background: linear-gradient(135deg, #ff6a3d, #e55527);
	color: #ffffff;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.frl-cookie-accept:hover {
	background: linear-gradient(135deg, #e55527, #d94413);
}

/* ===================================
   PACKAGING PAGE SPECIFIC STYLES
   =================================== */

.frl-protection-levels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.frl-protection-card {
	background: rgba(21, 26, 33, 0.8);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.frl-protection-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #10b981, #059669);
}

.frl-protection-level {
	display: inline-block;
	background: linear-gradient(135deg, #10b981, #059669);
	color: #ffffff;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.frl-materials-list {
	list-style: none;
	margin: 1rem 0;
}

.frl-materials-list li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(229, 231, 235, 0.1);
}

.frl-materials-list li:last-child {
	border-bottom: none;
}

.frl-materials-list li::before {
	content: '\f1b2';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: #7c3aed;
	font-size: 0.9rem;
}

/* ===================================
   ROUTING PAGE SPECIFIC STYLES
   =================================== */

.frl-routing-timeline {
	position: relative;
	margin: 3rem 0;
}

.frl-routing-timeline::before {
	content: '';
	position: absolute;
	left: 30px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, #22d3ee, #ff6a3d);
}

.frl-timeline-item {
	position: relative;
	padding-left: 80px;
	margin-bottom: 3rem;
}

.frl-timeline-icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff6a3d, #22d3ee);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.5rem;
	z-index: 2;
}

.frl-timeline-content {
	background: rgba(21, 26, 33, 0.8);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	padding: 2rem;
	backdrop-filter: blur(10px);
}

.frl-city-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.frl-city-card {
	background: rgba(21, 26, 33, 0.8);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.frl-city-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.frl-city-name {
	color: #7c3aed;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.frl-city-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.frl-city-features li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: #d1d5db;
}

.frl-city-features li::before {
	content: '\f3c5';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: #22d3ee;
	font-size: 0.8rem;
}

/* ===================================
   SAFETY PAGE SPECIFIC STYLES
   =================================== */

.frl-safety-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.frl-safety-card {
	background: rgba(21, 26, 33, 0.8);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.frl-safety-card.frl-danger::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ef4444, #dc2626);
}

.frl-safety-card.frl-warning::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #f59e0b, #d97706);
}

.frl-safety-card.frl-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.frl-safety-level {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.frl-safety-level.frl-danger {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: #ffffff;
}

.frl-safety-level.frl-warning {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #ffffff;
}

.frl-safety-level.frl-info {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	color: #ffffff;
}

.frl-safety-steps {
	list-style: none;
	counter-reset: safety-counter;
}

.frl-safety-steps li {
	counter-increment: safety-counter;
	position: relative;
	padding-left: 3rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(229, 231, 235, 0.1);
}

.frl-safety-steps li:last-child {
	border-bottom: none;
}

.frl-safety-steps li::before {
	content: counter(safety-counter);
	position: absolute;
	left: 0;
	top: 0;
	width: 2rem;
	height: 2rem;
	background: linear-gradient(135deg, #ff6a3d, #e55527);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.9rem;
}

/* ===================================
   CONTACT PAGE SPECIFIC STYLES
   =================================== */

.frl-contact-hero {
	background: linear-gradient(
			135deg,
			rgba(14, 17, 22, 0.9),
			rgba(21, 26, 33, 0.8)
		),
		url('assets/frl-hero.webp') top/cover !important;
	background-attachment: fixed;
	padding: 8rem 0 4rem;
	text-align: center;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.frl-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.frl-contact-card {
	background: rgba(21, 26, 33, 0.8);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.frl-contact-card:hover {
	transform: translateY(-5px);
	border-color: rgba(34, 211, 238, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.frl-contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #22d3ee, #0891b2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: #ffffff;
	font-size: 2rem;
}

.frl-map-container {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	height: 100%;
}

/* Map Section */
.frl-map {
	height: 100%;
	min-height: 400px;
	filter: grayscale(20%) contrast(1.1);

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.frl-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.frl-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.frl-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;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
	.frl-container {
		padding: 0 1.5rem;
	}

	.frl-hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.frl-hero-text h1 {
		font-size: 2.5rem;
	}

	.frl-cards-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.5rem;
	}

	.frl-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.frl-hero {
		min-height: 125vh;
	}

	.frl-hero-buttons {
		justify-content: center;
	}
}

@media (max-width: 860px) {
	.frl-nav {
		display: none;
	}

	.frl-mobile-menu-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.frl-hero-text h1 {
		font-size: 2rem;
	}

	.frl-hero-text p {
		font-size: 1.1rem;
	}

	.frl-hero-buttons {
		justify-content: center;
	}

	.frl-section-title h2 {
		font-size: 2rem;
	}

	.frl-tabs-nav {
		flex-wrap: wrap;
	}

	.frl-cookie-popup {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}

	.frl-cookie-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.frl-hero {
		min-height: 135vh;
	}
}

@media (max-width: 480px) {
	.frl-container {
		padding: 0 1rem;
	}

	.frl-hero {
		min-height: 180vh;
	}

	.frl-hero-text h1 {
		font-size: 1.6rem;
	}

	.frl-hero-content {
		padding: 4rem 0 1rem;
	}

	.frl-section {
		padding: 3rem 0;
	}

	.frl-section-title h2 {
		font-size: 1.5rem;
	}

	.frl-card {
		padding: 1.5rem;
	}

	.frl-form {
		padding: 1.5rem;
	}

	.frl-hero-buttons {
		flex-direction: column;
	}

	.frl-btn {
		width: 100%;
	}

	.frl-timeline-item {
		padding-left: 66px;
	}

	.frl-timeline-content h3 {
		font-size: 1.2rem;
		word-wrap: break-word;
	}

	.frl-contact-info-grid,
	.frl-protection-levels,
	.frl-safety-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.frl-safety-card h3 {
		font-size: 1.2rem;
		word-wrap: break-word;
	}
}

.frl-contact-hero {
	background: linear-gradient(
		135deg,
		rgba(14, 17, 22, 0.9),
		rgba(21, 26, 33, 0.8)
	);
	padding: 8rem 0 4rem;
	text-align: center;
}

.frl-contact-hero-content h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #e5e7eb, #22d3ee);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.frl-contact-hero-content p {
	font-size: 1.3rem;
	color: #d1d5db;
	max-width: 700px;
	margin: 0 auto 3rem;
	line-height: 1.7;
}

.frl-contact-quick-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	max-width: 600px;
	margin: 0 auto;
}

.frl-quick-stat {
	text-align: center;
	padding: 1.5rem;
	background: rgba(21, 26, 33, 0.6);
	border-radius: 12px;
	border: 1px solid rgba(34, 211, 238, 0.2);
}

.frl-quick-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ff6a3d;
	margin-bottom: 0.5rem;
}

.frl-quick-stat-label {
	font-size: 1rem;
	color: #22d3ee;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.frl-quick-stat-desc {
	font-size: 0.9rem;
	color: #9ca3af;
}

.frl-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.frl-contact-card {
	background: rgba(21, 26, 33, 0.8);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.frl-contact-card:hover {
	transform: translateY(-5px);
	border-color: rgba(34, 211, 238, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.frl-contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #22d3ee, #0891b2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: #ffffff;
	font-size: 2rem;
	transition: all 0.3s ease;
}

.frl-contact-card:hover .frl-contact-icon {
	transform: scale(1.1);
	background: linear-gradient(135deg, #ff6a3d, #e55527);
}

.frl-contact-card h3 {
	color: #e5e7eb;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

.frl-contact-card p {
	color: #d1d5db;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.frl-contact-card a {
	color: #22d3ee;
	font-weight: 500;
}

.frl-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #22d3ee;
	font-weight: 500;
	transition: all 0.3s ease;
}

.frl-contact-link:hover {
	color: #ff6a3d;
}

.frl-contact-form-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.frl-contact-form-wrapper {
	background: rgba(21, 26, 33, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(34, 211, 238, 0.2);
	border-radius: 16px;
	padding: 3rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.frl-contact-form-content h2 {
	color: #e5e7eb;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.frl-contact-form-content p {
	color: #d1d5db;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.frl-contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.frl-contact-map-section {
	background: rgba(21, 26, 33, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.frl-contact-map-section h3 {
	color: #22d3ee;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.frl-map-container {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(34, 211, 238, 0.2);
}

.frl-map-description {
	color: #9ca3af;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.frl-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.frl-service-card {
	background: rgba(21, 26, 33, 0.8);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.frl-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #7c3aed, #a855f7);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.frl-service-card:hover::before {
	transform: scaleX(1);
}

.frl-service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: rgba(124, 58, 237, 0.3);
}

.frl-service-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #7c3aed, #a855f7);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: #ffffff;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.frl-service-card:hover .frl-service-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, #ff6a3d, #22d3ee);
}

.frl-service-card h3 {
	margin-bottom: 1rem;
	color: #e5e7eb;
}

.frl-service-card p {
	color: #d1d5db;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.frl-service-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #7c3aed;
	font-weight: 500;
	transition: all 0.3s ease;
}

.frl-service-link:hover {
	color: #22d3ee;
}

.frl-hours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.frl-hours-card {
	background: rgba(21, 26, 33, 0.8);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
}

.frl-hours-card:hover {
	transform: translateY(-5px);
	border-color: rgba(34, 211, 238, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.frl-hours-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff6a3d, #e55527);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: #ffffff;
	font-size: 1.5rem;
}

.frl-hours-card h3 {
	color: #e5e7eb;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.frl-hours-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.frl-hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(229, 231, 235, 0.1);
}

.frl-hours-item:last-child {
	border-bottom: none;
}

.frl-hours-item span:first-child {
	color: #d1d5db;
	font-weight: 500;
}

.frl-hours-item span:last-child {
	color: #22d3ee;
	font-weight: 600;
}

.frl-faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 1.5rem;
	margin: 3rem 0;
}

.frl-faq-item {
	background: rgba(21, 26, 33, 0.8);
	border: 1px solid rgba(229, 231, 235, 0.1);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.frl-faq-item:hover {
	border-color: rgba(34, 211, 238, 0.3);
}

.frl-faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 600;
	color: #e5e7eb;
	transition: all 0.3s ease;
}

.frl-faq-question:hover {
	background: rgba(34, 211, 238, 0.05);
	color: #22d3ee;
}

.frl-faq-question i {
	transition: transform 0.3s ease;
	color: #22d3ee;
}

.frl-faq-item.frl-active .frl-faq-question i {
	transform: rotate(90deg);
}

.frl-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: rgba(14, 17, 22, 0.5);
}

.frl-faq-item.frl-active .frl-faq-answer {
	max-height: 200px;
}

.frl-faq-answer p {
	padding: 1.5rem;
	color: #d1d5db;
	line-height: 1.6;
	margin: 0;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 1024px) {
	.frl-contact-form-section {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.frl-contact-hero-content h1 {
		font-size: 2.5rem;
	}

	.frl-quick-stat-number {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.frl-contact-hero-content h1 {
		font-size: 2rem;
		flex-direction: column;
		gap: 0.5rem;
	}

	.frl-contact-hero-content p {
		font-size: 1.1rem;
	}

	.frl-contact-quick-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.frl-contact-form-wrapper {
		padding: 2rem;
	}

	.frl-contact-map-section {
		padding: 1.5rem;
	}

	.frl-faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.frl-contact-hero-content h1 {
		font-size: 1.75rem;
	}

	.frl-contact-hero {
		height: 125vh;
	}

	.frl-hours-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.frl-contact-form-wrapper {
		padding: 1.5rem;
	}

	.frl-quick-stat {
		padding: 1rem;
	}

	.frl-quick-stat-number {
		font-size: 1.75rem;
	}
}

.frl-legal-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 150px 20px 60px;
	background: var(--bg-primary);
}

.frl-legal-header {
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 30px;
	border-bottom: 2px solid var(--accent-2);
}

.frl-legal-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.frl-legal-title i {
	color: var(--accent-1);
	font-size: 2.5rem;
}

.frl-legal-date {
	font-size: 1.1rem;
	color: var(--accent-2);
	font-weight: 500;
}

.frl-legal-content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.frl-legal-section {
	background: var(--bg-secondary);
	padding: 40px;
	border-radius: 15px;
	border-left: 5px solid var(--accent-1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.frl-legal-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--accent-1),
		var(--accent-2),
		var(--accent-3)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.frl-legal-section:hover::before {
	opacity: 1;
}

.frl-legal-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(255, 106, 61, 0.1);
}

.frl-legal-section-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--accent-1);
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.frl-legal-section-title i {
	color: var(--accent-2);
	font-size: 1.5rem;
}

.frl-legal-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-primary);
	margin-bottom: 20px;
	text-align: justify;
}

.frl-legal-text:last-child {
	margin-bottom: 0;
}

.frl-legal-contact {
	background: var(--bg-primary);
	padding: 30px;
	border-radius: 12px;
	border: 2px solid var(--accent-2);
	margin-top: 30px;
}

.frl-legal-contact-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--accent-2);
	margin-bottom: 20px;
}

.frl-legal-contact-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.frl-legal-contact-info p {
	font-size: 1.1rem;
	color: var(--text-primary);
	margin: 0;
}

.frl-legal-contact-info a {
	color: var(--accent-1);
	text-decoration: none;
	transition: color 0.3s ease;
}

.frl-legal-contact-info a:hover {
	color: var(--accent-2);
	text-decoration: underline;
}

/* Mobile Responsiveness for Legal Pages */
@media (max-width: 768px) {
	.frl-legal-title {
		font-size: 2.2rem;
		flex-direction: column;
		gap: 10px;
	}

	.frl-legal-title i {
		font-size: 2rem;
	}

	.frl-legal-date {
		font-size: 1rem;
	}

	.frl-legal-section {
		padding: 25px 20px;
	}

	.frl-legal-section-title {
		font-size: 1.5rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.frl-legal-text {
		font-size: 1rem;
		line-height: 1.7;
		text-align: left;
	}

	.frl-legal-contact {
		padding: 20px;
	}

	.frl-legal-contact-title {
		font-size: 1.2rem;
	}

	.frl-legal-contact-info p {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.frl-legal-title {
		font-size: 1.5rem;
	}

	.frl-legal-section {
		padding: 20px 15px;
	}

	.frl-legal-section-title {
		font-size: 1.3rem;
	}

	.frl-legal-text {
		font-size: 0.95rem;
	}
}
