* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Color Palette */
	--nfa-bg-primary: #0a0e14;
	--nfa-bg-secondary: #121823;
	--nfa-accent-green: #14e956;
	--nfa-accent-blue: #007dff;
	--nfa-divider: #1e2632;
	--nfa-text-primary: #e9ecf3;
	--nfa-text-secondary: #9ba5b5;
	--nfa-text-heading: #ffffff;
	--nfa-header-bg: #121823;
	--nfa-footer-bg: #0d131c;

	/* Typography */
	--nfa-font-body: 'Poppins', sans-serif;
	--nfa-font-heading: 'Rajdhani', sans-serif;

	/* Transitions */
	--nfa-transition: 0.4s ease-in-out;

	/* Spacing */
	--nfa-section-padding: 80px 0;
	--nfa-container-padding: 0 20px;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--nfa-font-body);
	background-color: var(--nfa-bg-primary);
	color: var(--nfa-text-primary);
	line-height: 1.7;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--nfa-transition);
}

ul {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
	transition: var(--nfa-transition);
}

/* ========================================
   2. TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--nfa-font-heading);
	color: var(--nfa-text-heading);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
}

h1 {
	font-size: 3.5rem;
	letter-spacing: 2px;
	text-transform: uppercase;
}

h2 {
	font-size: 2.8rem;
	letter-spacing: 1.5px;
}

h3 {
	font-size: 2rem;
	letter-spacing: 1px;
}

h4 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 15px;
	color: var(--nfa-text-secondary);
	font-size: 1.05rem;
}

.nfa-text-accent-green {
	color: var(--nfa-accent-green);
}

.nfa-text-accent-blue {
	color: var(--nfa-accent-blue);
}

/* ========================================
   3. LAYOUT CONTAINERS
   ======================================== */

.nfa-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: var(--nfa-container-padding);
}

.nfa-section {
	padding: var(--nfa-section-padding);
	position: relative;
}

.nfa-section-dark {
	background-color: var(--nfa-bg-secondary);
}

.nfa-section-title {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}

.nfa-section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--nfa-accent-green),
		var(--nfa-accent-blue)
	);
	margin: 20px auto 0;
	border-radius: 2px;
}

/* ========================================
   4. HEADER STYLES
   ======================================== */

.nfa-header {
	background-color: var(--nfa-header-bg);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 2px solid var(--nfa-accent-green);
	box-shadow: 0 4px 20px rgba(20, 233, 86, 0.15);
}

.nfa-header-top {
	background-color: var(--nfa-bg-primary);
	padding: 12px 0;
	border-bottom: 1px solid var(--nfa-divider);
}

.nfa-header-top-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	font-size: 0.9rem;
}

.nfa-header-top-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--nfa-text-secondary);
}

.nfa-header-top-item i {
	color: var(--nfa-accent-green);
	font-size: 1rem;
}

.nfa-header-main {
	padding: 20px 0;
}

.nfa-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nfa-logo {
	font-family: var(--nfa-font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--nfa-text-heading);
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	text-shadow: 0 0 20px rgba(20, 233, 86, 0.5);
}

.nfa-logo span {
	color: var(--nfa-accent-green);
}

.nfa-nav {
	display: flex;
	gap: 40px;
	align-items: center;
}

.nfa-nav-link {
	color: var(--nfa-text-primary);
	font-weight: 500;
	font-size: 1rem;
	position: relative;
	padding: 5px 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nfa-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--nfa-accent-green);
	transition: width var(--nfa-transition);
}

.nfa-nav-link:hover::after,
.nfa-nav-link.active::after {
	width: 100%;
}

.nfa-nav-link:hover {
	color: var(--nfa-accent-green);
	text-shadow: 0 0 10px rgba(20, 233, 86, 0.6);
}

.nfa-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 10px;
}

.nfa-menu-toggle span {
	width: 30px;
	height: 3px;
	background-color: var(--nfa-accent-green);
	transition: var(--nfa-transition);
	border-radius: 2px;
}

/* ========================================
   5. HERO SECTION
   ======================================== */

.nfa-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(135deg, var(--nfa-bg-primary) 0%, #0d1419 100%);
}

.nfa-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

	z-index: 0;
}

.nfa-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(10, 14, 20, 0.9) 0%,
		rgba(18, 24, 35, 0.85) 100%
	);
	z-index: 1;
}

.nfa-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 40px 20px;
	animation: nfa-fade-in-up 1s ease-out;
}

.nfa-hero-title {
	font-size: 4.5rem;
	margin-bottom: 25px;
	text-shadow: 0 0 30px rgba(20, 233, 86, 0.4);
	animation: nfa-zoom-in 1.2s ease-out;
}

.nfa-hero-subtitle {
	font-size: 1.4rem;
	color: var(--nfa-text-secondary);
	margin-bottom: 40px;
	line-height: 1.8;
	animation: nfa-fade-in 1.5s ease-out;
}

.nfa-hero-cta {
	display: inline-block;
	padding: 18px 50px;
	background: linear-gradient(
		135deg,
		var(--nfa-accent-green),
		var(--nfa-accent-blue)
	);
	color: var(--nfa-bg-primary);
	font-weight: 700;
	font-size: 1.1rem;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	box-shadow: 0 10px 30px rgba(20, 233, 86, 0.3);
	animation: nfa-fade-in 1.8s ease-out;
}

.nfa-hero-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(20, 233, 86, 0.5);
}

/* ========================================
   6. BUTTON STYLES
   ======================================== */

.nfa-btn {
	display: inline-block;
	padding: 14px 35px;
	font-weight: 600;
	border-radius: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: var(--nfa-transition);
}

.nfa-btn-primary {
	background: linear-gradient(
		135deg,
		var(--nfa-accent-green),
		var(--nfa-accent-blue)
	);
	color: var(--nfa-bg-primary);
	box-shadow: 0 8px 20px rgba(20, 233, 86, 0.25);
}

.nfa-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(20, 233, 86, 0.4);
}

.nfa-btn-outline {
	border: 2px solid var(--nfa-accent-green);
	color: var(--nfa-accent-green);
	background: transparent;
}

.nfa-btn-outline:hover {
	background: var(--nfa-accent-green);
	color: var(--nfa-bg-primary);
	box-shadow: 0 0 20px rgba(20, 233, 86, 0.5);
}

/* ========================================
   7. CARD STYLES
   ======================================== */

.nfa-card {
	background-color: var(--nfa-bg-secondary);
	border-radius: 12px;
	padding: 35px;
	border: 1px solid var(--nfa-divider);
	transition: var(--nfa-transition);
	position: relative;
	overflow: hidden;
}

.nfa-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(20, 233, 86, 0.05),
		rgba(0, 125, 255, 0.05)
	);
	opacity: 0;
	transition: var(--nfa-transition);
}

.nfa-card:hover {
	transform: translateY(-8px);
	border-color: var(--nfa-accent-green);
	box-shadow: 0 15px 40px rgba(20, 233, 86, 0.2);
}

.nfa-card:hover::before {
	opacity: 1;
}

.nfa-card-icon {
	font-size: 3rem;
	color: var(--nfa-accent-green);
	margin-bottom: 20px;
	transition: var(--nfa-transition);
}

.nfa-card:hover .nfa-card-icon {
	transform: scale(1.1);
	text-shadow: 0 0 20px rgba(20, 233, 86, 0.6);
}

.nfa-card-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--nfa-text-heading);
}

.nfa-card-text {
	color: var(--nfa-text-secondary);
	line-height: 1.7;
}

/* ========================================
   8. GRID LAYOUTS
   ======================================== */

.nfa-grid {
	display: grid;
	gap: 30px;
}

.nfa-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.nfa-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.nfa-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   9. TWO-COLUMN LAYOUTS
   ======================================== */

.nfa-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.nfa-two-col-reverse {
	direction: rtl;
}

.nfa-two-col-reverse > * {
	direction: ltr;
}

.nfa-col-content h2 {
	margin-bottom: 25px;
}

.nfa-col-content p {
	margin-bottom: 20px;
}

.nfa-col-image {
	height: 100%;
}

.nfa-col-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	border: 2px solid var(--nfa-divider);
}

/* ========================================
   10. FEATURE BLOCKS
   ======================================== */

.nfa-feature-block {
	display: flex;
	gap: 25px;
	padding: 30px;
	background-color: var(--nfa-bg-secondary);
	border-radius: 10px;
	border-left: 4px solid var(--nfa-accent-green);
	transition: var(--nfa-transition);
}

.nfa-feature-block:hover {
	transform: translateX(10px);
	box-shadow: -5px 0 20px rgba(20, 233, 86, 0.2);
}

.nfa-feature-icon {
	font-size: 2.5rem;
	color: var(--nfa-accent-green);
	flex-shrink: 0;
}

.nfa-feature-content h3 {
	font-size: 1.4rem;
	margin-bottom: 12px;
}

/* ========================================
   11. TEAM CARDS
   ======================================== */

.nfa-team-card {
	background-color: var(--nfa-bg-secondary);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--nfa-divider);
	transition: var(--nfa-transition);
	text-align: center;
}

.nfa-team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(20, 233, 86, 0.15);
	border-color: var(--nfa-accent-green);
}

.nfa-team-photo {
	width: 100%;
	height: 300px;
	background: linear-gradient(
		135deg,
		var(--nfa-divider),
		var(--nfa-bg-primary)
	);
	border-bottom: 3px solid var(--nfa-accent-green);
}

.nfa-team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nfa-team-info {
	padding: 25px;
}

.nfa-team-name {
	font-size: 1.4rem;
	margin-bottom: 8px;
	color: var(--nfa-text-heading);
}

.nfa-team-role {
	color: var(--nfa-accent-green);
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 12px;
}

.nfa-team-location {
	color: var(--nfa-text-secondary);
	font-size: 0.95rem;
}

/* ========================================
   12. FORM STYLES
   ======================================== */

.nfa-form {
	background-color: var(--nfa-bg-secondary);
	padding: 40px;
	border-radius: 12px;
	border: 1px solid var(--nfa-divider);
}

.nfa-form-group {
	margin-bottom: 25px;
}

.nfa-form-label {
	display: block;
	margin-bottom: 8px;
	color: var(--nfa-text-primary);
	font-weight: 500;
	font-size: 1rem;
}

.nfa-form-input,
.nfa-form-textarea {
	width: 100%;
	padding: 14px 18px;
	background-color: var(--nfa-bg-primary);
	border: 2px solid var(--nfa-divider);
	border-radius: 8px;
	color: var(--nfa-text-primary);
	font-family: var(--nfa-font-body);
	font-size: 1rem;
	transition: var(--nfa-transition);
}

.nfa-form-input:focus,
.nfa-form-textarea:focus {
	outline: none;
	border-color: var(--nfa-accent-green);
	box-shadow: 0 0 15px rgba(20, 233, 86, 0.2);
}

.nfa-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.nfa-form-error {
	color: #ff4444;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.nfa-form-error.active {
	display: block;
}

.nfa-form-submit {
	width: 100%;
	padding: 16px;
	background: linear-gradient(
		135deg,
		var(--nfa-accent-green),
		var(--nfa-accent-blue)
	);
	color: var(--nfa-bg-primary);
	font-weight: 700;
	font-size: 1.1rem;
	border-radius: 8px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: var(--nfa-transition);
}

.nfa-form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(20, 233, 86, 0.4);
}

/* ========================================
   13. MAP CONTAINER
   ======================================== */

.nfa-map-container {
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	border: 2px solid var(--nfa-divider);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nfa-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.nfa-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.nfa-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.nfa-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}
/* ========================================
   14. CONTACT INFO
   ======================================== */

.nfa-contact-info {
	display: grid;
	gap: 20px;
	margin-bottom: 40px;
}

.nfa-contact-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 20px;
	background-color: var(--nfa-bg-secondary);
	border-radius: 10px;
	border-left: 4px solid var(--nfa-accent-blue);
}

.nfa-contact-icon {
	font-size: 2rem;
	color: var(--nfa-accent-green);
	flex-shrink: 0;
}

.nfa-contact-details h4 {
	font-size: 1.2rem;
	margin-bottom: 8px;
	color: var(--nfa-text-heading);
}

.nfa-contact-details p {
	margin-bottom: 5px;
	color: var(--nfa-text-secondary);
}

/* ========================================
   15. FOOTER STYLES
   ======================================== */

.nfa-footer {
	background-color: var(--nfa-footer-bg);
	border-top: 2px solid var(--nfa-accent-green);
	padding-top: 60px;
}

.nfa-footer-main {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--nfa-divider);
}

.nfa-footer-col h3 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	color: var(--nfa-accent-green);
}

.nfa-footer-col p {
	margin-bottom: 15px;
	color: var(--nfa-text-secondary);
	line-height: 1.8;
}

.nfa-footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nfa-footer-link {
	color: var(--nfa-text-secondary);
	transition: var(--nfa-transition);
	display: inline-block;
}

.nfa-footer-link:hover {
	color: var(--nfa-accent-green);
	transform: translateX(5px);
}

.nfa-footer-contact-item {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--nfa-text-secondary);
}

.nfa-footer-contact-item i {
	color: var(--nfa-accent-green);
	margin-top: 3px;
}

.nfa-footer-bottom {
	padding: 25px 0;
	text-align: center;
	color: var(--nfa-text-secondary);
	font-size: 0.95rem;
}

/* ========================================
   16. COOKIE POPUP
   ======================================== */

.nfa-cookie-popup {
	position: fixed;
	display: none;
	bottom: -200px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--nfa-bg-secondary);
	border: 2px solid var(--nfa-accent-green);
	border-radius: 12px;
	padding: 25px 35px;
	max-width: 600px;
	width: 90%;
	z-index: 10000;
	box-shadow: 0 -10px 40px rgba(20, 233, 86, 0.3);
	transition: bottom 0.5s ease-out;
}

.nfa-cookie-popup.active {
	bottom: 30px;
	display: block;
}

.nfa-cookie-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.nfa-cookie-text {
	color: var(--nfa-text-secondary);
	line-height: 1.6;
}

.nfa-cookie-text a {
	color: var(--nfa-accent-green);
	text-decoration: underline;
}

.nfa-cookie-actions {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
}

.nfa-cookie-btn {
	padding: 10px 25px;
	border-radius: 6px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: var(--nfa-transition);
}

.nfa-cookie-accept {
	background: linear-gradient(
		135deg,
		var(--nfa-accent-green),
		var(--nfa-accent-blue)
	);
	color: var(--nfa-bg-primary);
}

.nfa-cookie-accept:hover {
	box-shadow: 0 5px 20px rgba(20, 233, 86, 0.4);
}

/* ========================================
   17. ANIMATIONS
   ======================================== */

@keyframes nfa-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes nfa-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes nfa-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes nfa-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes nfa-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Scroll Animation Classes */
.nfa-fade-in-scroll {
	opacity: 0;
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.nfa-fade-in-scroll.visible {
	opacity: 1;
}

.nfa-slide-up-scroll {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.nfa-slide-up-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   18. CONTENT BLOCKS
   ======================================== */

.nfa-intro-section {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 60px;
}

.nfa-intro-title {
	font-size: 3rem;
	margin-bottom: 25px;
}

.nfa-intro-text {
	font-size: 1.15rem;
	line-height: 1.9;
	color: var(--nfa-text-secondary);
}

.nfa-content-block {
	margin-bottom: 50px;
}

.nfa-content-block h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: var(--nfa-accent-green);
}

.nfa-content-block p {
	margin-bottom: 18px;
	line-height: 1.8;
}

.nfa-content-block ul {
	list-style: none;
	margin: 20px 0;
}

.nfa-content-block li {
	padding: 12px 0 12px 30px;
	position: relative;
	color: var(--nfa-text-secondary);
}

.nfa-content-block li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--nfa-accent-green);
	font-size: 1.2rem;
}

/* ========================================
   19. ACCORDION STYLES
   ======================================== */

.nfa-accordion {
	margin: 30px 0;
}

.nfa-accordion-item {
	background-color: var(--nfa-bg-secondary);
	border: 1px solid var(--nfa-divider);
	border-radius: 8px;
	margin-bottom: 15px;
	overflow: hidden;
	transition: var(--nfa-transition);
}

.nfa-accordion-item.active {
	border-color: var(--nfa-accent-green);
}

.nfa-accordion-header {
	padding: 20px 25px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--nfa-transition);
}

.nfa-accordion-header:hover {
	background-color: rgba(20, 233, 86, 0.05);
}

.nfa-accordion-title {
	font-size: 1.2rem;
	color: var(--nfa-text-heading);
	margin: 0;
}

.nfa-accordion-icon {
	font-size: 1.5rem;
	color: var(--nfa-accent-green);
	transition: transform var(--nfa-transition);
}

.nfa-accordion-item.active .nfa-accordion-icon {
	transform: rotate(180deg);
}

.nfa-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
}

.nfa-accordion-content-inner {
	padding: 1rem 25px 25px;
	color: var(--nfa-text-secondary);
	line-height: 1.8;
}

/* ========================================
   20. TABS STYLES
   ======================================== */

.nfa-tabs {
	margin: 40px 0;
}

.nfa-tabs-nav {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--nfa-divider);
	flex-wrap: wrap;
}

.nfa-tab-button {
	padding: 15px 30px;
	background: transparent;
	color: var(--nfa-text-secondary);
	border: none;
	border-bottom: 3px solid transparent;
	cursor: pointer;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--nfa-transition);
	margin-bottom: -2px;
}

.nfa-tab-button:hover {
	color: var(--nfa-accent-green);
}

.nfa-tab-button.active {
	color: var(--nfa-accent-green);
	border-bottom-color: var(--nfa-accent-green);
}

.nfa-tab-content {
	display: none;
	animation: nfa-fade-in 0.5s ease-out;
}

.nfa-tab-content.active {
	display: block;
}

/* ========================================
   21. LIST STYLES
   ======================================== */

.nfa-list-styled {
	list-style: none;
	margin: 25px 0;
}

.nfa-list-styled li {
	padding: 15px 0 15px 40px;
	position: relative;
	border-bottom: 1px solid var(--nfa-divider);
	color: var(--nfa-text-secondary);
	line-height: 1.7;
}

.nfa-list-styled li:last-child {
	border-bottom: none;
}

.nfa-list-styled li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: var(--nfa-accent-green);
	font-size: 1.1rem;
}

/* ========================================
   22. QUOTE/CALLOUT BOXES
   ======================================== */

.nfa-callout {
	background: linear-gradient(
		135deg,
		rgba(20, 233, 86, 0.1),
		rgba(0, 125, 255, 0.1)
	);
	border-left: 5px solid var(--nfa-accent-green);
	padding: 25px 30px;
	margin: 30px 0;
	border-radius: 8px;
}

.nfa-callout-icon {
	font-size: 2rem;
	color: var(--nfa-accent-green);
	margin-bottom: 15px;
}

.nfa-callout-title {
	font-size: 1.3rem;
	margin-bottom: 12px;
	color: var(--nfa-text-heading);
}

.nfa-callout-text {
	color: var(--nfa-text-secondary);
	line-height: 1.8;
}

/* ========================================
   23. IMAGE GALLERIES
   ======================================== */

.nfa-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin: 40px 0;
}

.nfa-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	border: 2px solid var(--nfa-divider);
	transition: var(--nfa-transition);
	height: 250px;
	background: linear-gradient(
		135deg,
		var(--nfa-divider),
		var(--nfa-bg-primary)
	);
}

.nfa-gallery-item:hover {
	transform: scale(1.05);
	border-color: var(--nfa-accent-green);
	box-shadow: 0 10px 30px rgba(20, 233, 86, 0.3);
}

/* ========================================
   24. STATISTICS SECTION
   ======================================== */

.nfa-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	text-align: center;
	margin: 50px 0;
}

.nfa-stat-item {
	padding: 30px;
	background-color: var(--nfa-bg-secondary);
	border-radius: 10px;
	border: 2px solid var(--nfa-divider);
	transition: var(--nfa-transition);
}

.nfa-stat-item:hover {
	border-color: var(--nfa-accent-green);
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(20, 233, 86, 0.2);
}

.nfa-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--nfa-accent-green);
	font-family: var(--nfa-font-heading);
}

.nfa-stat-label {
	color: var(--nfa-text-secondary);
	font-size: 1.1rem;
	margin-top: 10px;
}

/* ========================================
   25. BREADCRUMB NAVIGATION
   ======================================== */

.nfa-breadcrumb {
	padding: 20px 0;
	background-color: var(--nfa-bg-secondary);
	border-bottom: 1px solid var(--nfa-divider);
}

.nfa-breadcrumb-list {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.nfa-breadcrumb-item {
	color: var(--nfa-text-secondary);
	font-size: 0.95rem;
}

.nfa-breadcrumb-item a {
	color: var(--nfa-accent-green);
	transition: var(--nfa-transition);
}

.nfa-breadcrumb-item a:hover {
	text-decoration: underline;
}

.nfa-breadcrumb-separator {
	color: var(--nfa-text-secondary);
}

/* ========================================
   27. UTILITY CLASSES
   ======================================== */

.nfa-text-center {
	text-align: center;
}

.nfa-mt-20 {
	margin-top: 20px;
}

.nfa-mt-40 {
	margin-top: 40px;
}

.nfa-mb-20 {
	margin-bottom: 20px;
}

.nfa-mb-40 {
	margin-bottom: 40px;
}

.nfa-hidden {
	display: none !important;
}

.nfa-visible {
	display: block !important;
}

/* ========================================
   28. PRINT STYLES
   ======================================== */

@media print {
	.nfa-header,
	.nfa-footer,
	.nfa-cookie-popup,
	.nfa-menu-toggle {
		display: none;
	}

	body {
		background: white;
		color: black;
	}

	.nfa-section {
		page-break-inside: avoid;
	}
}

/* ========================================
   30. LOADING STATES
   ======================================== */

.nfa-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(20, 233, 86, 0.3);
	border-top-color: var(--nfa-accent-green);
	border-radius: 50%;
	animation: nfa-spin 0.8s linear infinite;
}

@keyframes nfa-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ========================================
   26. RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1200px) {
	.nfa-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.nfa-footer-main {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	h1 {
		font-size: 2.8rem;
	}

	h2 {
		font-size: 2.2rem;
	}

	.nfa-hero-title {
		font-size: 3rem;
	}

	.nfa-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.nfa-two-col {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.nfa-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background-color: var(--nfa-bg-secondary);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 100px 30px 30px;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
		transition: right var(--nfa-transition);
		z-index: 999;
	}

	.nfa-nav.active {
		right: 0;
	}

	.nfa-menu-toggle {
		display: flex;
		z-index: 1001;
	}

	.nfa-menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nfa-menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nfa-menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(8px, -8px);
	}
}

@media (max-width: 768px) {
	:root {
		--nfa-section-padding: 60px 0;
	}

	.nfa-header-top {
		display: none;
	}

	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.nfa-hero-title {
		font-size: 2.5rem;
	}

	.nfa-hero-subtitle {
		font-size: 1.1rem;
	}

	.nfa-grid-2,
	.nfa-grid-3,
	.nfa-grid-4 {
		grid-template-columns: 1fr;
	}

	.nfa-footer-main {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.nfa-header-top-content {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

	.nfa-tabs-nav {
		flex-direction: column;
	}

	.nfa-tab-button {
		width: 100%;
		text-align: left;
	}

	.nfa-feature-block {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.8rem;
	}

	.nfa-hero-title {
		font-size: 2rem;
	}

	.nfa-logo {
		font-size: 1.4rem;
	}

	.nfa-intro-title {
		font-size: 2rem;
	}

	.nfa-cookie-popup {
		width: 95%;
		padding: 20px;
	}

	.nfa-cookie-actions {
		flex-direction: column;
	}

	.nfa-contact-info {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.nfa-contact-details p {
		word-break: break-all;
	}

	.nfa-contact-item {
		flex-direction: column;
	}

	.nfa-cookie-btn {
		width: 100%;
	}
}

.nfa-legal-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 20px;
	position: relative;
}

/* === Header Section === */
.nfa-legal-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 40px 30px;
	background: linear-gradient(135deg, #121823 0%, #1a2332 100%);
	border-radius: 16px;
	border: 1px solid #1e2632;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 1px rgba(20, 233, 86, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	position: relative;
	overflow: hidden;
}

.nfa-legal-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		#14e956 25%,
		#007dff 50%,
		#14e956 75%,
		transparent 100%
	);
	opacity: 0.6;
}

.nfa-legal-title {
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
	text-shadow: 0 2px 20px rgba(20, 233, 86, 0.3);
	background: linear-gradient(135deg, #ffffff 0%, #e9ecf3 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nfa-legal-subtitle {
	font-size: 16px;
	color: #9ba5b5;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/* === Content Area === */
.nfa-legal-content {
	background: #121823;
	border-radius: 16px;
	padding: 50px 40px;
	border: 1px solid #1e2632;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
	position: relative;
}

.nfa-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 30%,
			rgba(20, 233, 86, 0.03) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(0, 125, 255, 0.03) 0%,
			transparent 50%
		);
	pointer-events: none;
	border-radius: 16px;
}

/* === Section Styles === */
.nfa-legal-section {
	margin-bottom: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid #1e2632;
	position: relative;
}

.nfa-legal-section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.nfa-legal-section::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #14e956 0%, transparent 100%);
	opacity: 0.4;
}

.nfa-legal-section-title {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 24px;
	letter-spacing: -0.3px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}

.nfa-legal-section-title::before {
	content: '';
	width: 4px;
	height: 28px;
	background: linear-gradient(180deg, #14e956 0%, #007dff 100%);
	border-radius: 2px;
	box-shadow: 0 0 12px rgba(20, 233, 86, 0.5);
}

/* === Text Styles === */
.nfa-legal-text {
	font-size: 16px;
	color: #e9ecf3;
	line-height: 1.8;
	margin-bottom: 20px;
	text-align: justify;
}

.nfa-legal-text:last-child {
	margin-bottom: 0;
}

.nfa-legal-text strong {
	color: #ffffff;
	font-weight: 600;
}

/* === Link Styles === */
.nfa-legal-link {
	color: #14e956;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(20, 233, 86, 0.3);
}

.nfa-legal-link:hover {
	color: #007dff;
	border-bottom-color: rgba(0, 125, 255, 0.5);
	text-shadow: 0 0 8px rgba(0, 125, 255, 0.4);
}

/* === Footer === */
.nfa-legal-footer {
	text-align: center;
	margin-top: 60px;
	padding: 30px 20px;
	border-top: 1px solid #1e2632;
	position: relative;
}

.nfa-legal-footer::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		#14e956 50%,
		transparent 100%
	);
	opacity: 0.5;
}

.nfa-legal-footer-text {
	font-size: 14px;
	color: #9ba5b5;
	margin: 8px 0;
	font-weight: 400;
}

/* === Responsive Design === */
@media screen and (max-width: 768px) {
	.nfa-legal-container {
		padding: 40px 16px;
	}

	.nfa-legal-header {
		padding: 30px 20px;
		margin-bottom: 40px;
	}

	.nfa-legal-title {
		font-size: 2rem;
		margin-bottom: 12px;
	}

	.nfa-legal-subtitle {
		font-size: 14px;
	}

	.nfa-legal-content {
		padding: 30px 24px;
		border-radius: 12px;
	}

	.nfa-legal-section {
		margin-bottom: 36px;
		padding-bottom: 36px;
	}

	.nfa-legal-section-title {
		font-size: 22px;
		margin-bottom: 18px;
	}

	.nfa-legal-section-title::before {
		width: 3px;
		height: 22px;
	}

	.nfa-legal-text {
		font-size: 15px;
		line-height: 1.7;
		text-align: left;
	}

	.nfa-legal-footer {
		margin-top: 40px;
		padding: 24px 16px;
	}
}

@media screen and (max-width: 480px) {
	.nfa-legal-body {
		font-size: 15px;
	}

	.nfa-legal-title {
		font-size: 1.3rem;
	}

	.nfa-legal-section-title {
		font-size: 20px;
	}

	.nfa-legal-text {
		font-size: 14px;
	}

	.nfa-legal-footer-text {
		font-size: 13px;
	}
}
