* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Colors */
	--tf-bg-primary: #0d1117;
	--tf-bg-secondary: #161b22;
	--tf-accent-blue: #4e9eff;
	--tf-accent-amber: #ffb800;
	--tf-divider: #2c313a;
	--tf-text-primary: #e6e9ef;
	--tf-text-secondary: #9ba1a6;
	--tf-text-heading: #ffffff;

	/* Fonts */
	--tf-font-main: 'Inter', sans-serif;
	--tf-font-heading: 'Rajdhani', sans-serif;

	/* Transitions */
	--tf-transition: 0.4s ease-in-out;

	/* Spacing */
	--tf-spacing-xs: 8px;
	--tf-spacing-sm: 16px;
	--tf-spacing-md: 24px;
	--tf-spacing-lg: 32px;
	--tf-spacing-xl: 48px;
	--tf-spacing-xxl: 64px;

	/* Shadows */
	--tf-shadow-sm: 0 2px 8px rgba(78, 158, 255, 0.1);
	--tf-shadow-md: 0 4px 16px rgba(78, 158, 255, 0.15);
	--tf-shadow-lg: 0 8px 32px rgba(78, 158, 255, 0.2);
	--tf-glow-blue: 0 0 20px rgba(78, 158, 255, 0.5);
	--tf-glow-amber: 0 0 20px rgba(255, 184, 0, 0.5);
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--tf-font-main);
	background-color: var(--tf-bg-primary);
	color: var(--tf-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--tf-transition);
}

ul,
ol {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

/* ====================================
   2. TYPOGRAPHY
   ==================================== */
.tf-heading-xl {
	font-family: var(--tf-font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 600;
	color: var(--tf-text-heading);
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.tf-heading-lg {
	font-family: var(--tf-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	color: var(--tf-text-heading);
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.tf-heading-md {
	font-family: var(--tf-font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: var(--tf-text-heading);
	line-height: 1.3;
}

.tf-heading-sm {
	font-family: var(--tf-font-heading);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 600;
	color: var(--tf-text-heading);
	line-height: 1.4;
}

.tf-text-lg {
	font-size: clamp(1.125rem, 1.5vw, 1.25rem);
	color: var(--tf-text-primary);
	line-height: 1.7;
}

.tf-text-md {
	font-size: clamp(1rem, 1.2vw, 1.125rem);
	color: var(--tf-text-primary);
	line-height: 1.6;
}

.tf-text-sm {
	font-size: clamp(0.875rem, 1vw, 1rem);
	color: var(--tf-text-secondary);
	line-height: 1.5;
}

.tf-text-accent-blue {
	color: var(--tf-accent-blue);
}

.tf-text-accent-amber {
	color: var(--tf-accent-amber);
}

/* ====================================
   3. LAYOUT UTILITIES
   ==================================== */
.tf-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--tf-spacing-md);
}

.tf-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--tf-spacing-md);
}

.tf-section {
	padding: var(--tf-spacing-xxl) 0;
}

.tf-section-sm {
	padding: var(--tf-spacing-xl) 0;
}

.tf-grid {
	display: grid;
	gap: var(--tf-spacing-md);
}

.tf-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tf-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.tf-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tf-flex {
	display: flex;
	gap: var(--tf-spacing-md);
}

.tf-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.tf-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ====================================
   4. HEADER STYLES
   ==================================== */
.tf-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1360px;
	background: var(--tf-bg-secondary);
	border-bottom: 2px solid var(--tf-accent-blue);
	padding: 1rem 20px;
	z-index: 1000;
	border-radius: 12px;
	box-shadow: var(--tf-shadow-lg);
	transition: var(--tf-transition);
}
/* 
.tf-header-scrolled {
	top: 0;
	width: 100%;
	max-width: none;
	border-radius: 0;
} */

.tf-header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tf-logo {
	font-family: var(--tf-font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--tf-text-heading);
}

.tf-logo-accent {
	color: var(--tf-accent-amber);
}

.tf-nav-menu {
	display: flex;
	gap: 1.8rem;
	align-items: center;
}

.tf-nav-link {
	color: var(--tf-text-primary);
	font-weight: 500;
	position: relative;
	padding: 8px 0;
	transition: var(--tf-transition);
}

.tf-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--tf-accent-blue);
	transition: var(--tf-transition);
}

.tf-nav-link:hover {
	color: var(--tf-accent-blue);
}

.tf-nav-link:hover::after {
	width: 100%;
}

.tf-nav-link.tf-active {
	color: var(--tf-accent-blue);
}

.tf-nav-link.tf-active::after {
	width: 100%;
}

/* Mobile Menu Toggle */
.tf-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 8px;
}

.tf-menu-toggle-bar {
	width: 28px;
	height: 3px;
	background: var(--tf-text-heading);
	border-radius: 2px;
	transition: var(--tf-transition);
}

.tf-menu-toggle.tf-active .tf-menu-toggle-bar:nth-child(1) {
	transform: rotate(45deg) translateY(9px);
}

.tf-menu-toggle.tf-active .tf-menu-toggle-bar:nth-child(2) {
	opacity: 0;
}

.tf-menu-toggle.tf-active .tf-menu-toggle-bar:nth-child(3) {
	transform: rotate(-45deg) translate(3px, -14px);
}

/* ====================================
   5. FOOTER STYLES
   ==================================== */
.tf-footer {
	background: var(--tf-bg-primary);
	border-top: 1px solid var(--tf-divider);
	padding: var(--tf-spacing-xxl) 0 var(--tf-spacing-md);
}

.tf-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--tf-spacing-xl);
	margin-bottom: var(--tf-spacing-xl);
}

.tf-footer-column h3 {
	font-family: var(--tf-font-heading);
	font-size: 1.25rem;
	color: var(--tf-text-heading);
	margin-bottom: var(--tf-spacing-sm);
}

.tf-footer-text {
	color: var(--tf-text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: var(--tf-spacing-sm);
}

.tf-footer-links {
	display: flex;
	flex-direction: column;
	gap: var(--tf-spacing-xs);
}

.tf-footer-link {
	color: var(--tf-text-secondary);
	font-size: 0.95rem;
	transition: var(--tf-transition);
}

.tf-footer-link:hover {
	color: var(--tf-accent-blue);
	padding-left: 4px;
}

.tf-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: var(--tf-spacing-xs);
	margin-bottom: var(--tf-spacing-xs);
	color: var(--tf-text-secondary);
	font-size: 0.95rem;
}

.tf-footer-contact-item i {
	color: var(--tf-accent-blue);
	margin-top: 4px;
	font-size: 1rem;
}

.tf-footer-bottom {
	text-align: center;
	padding-top: var(--tf-spacing-md);
	border-top: 1px solid var(--tf-divider);
	color: var(--tf-text-secondary);
	font-size: 0.9rem;
}

/* ====================================
   6. BUTTONS
   ==================================== */
.tf-btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	transition: var(--tf-transition);
	cursor: pointer;
	border: 2px solid transparent;
}

.tf-btn-primary {
	background: var(--tf-accent-blue);
	color: var(--tf-text-heading);
	box-shadow: var(--tf-shadow-md);
}

.tf-btn-primary:hover {
	background: transparent;
	border-color: var(--tf-accent-blue);
	color: var(--tf-accent-blue);
	box-shadow: var(--tf-glow-blue);
	transform: translateY(-2px);
}

.tf-btn-secondary {
	background: transparent;
	border-color: var(--tf-accent-amber);
	color: var(--tf-accent-amber);
}

.tf-btn-secondary:hover {
	background: var(--tf-accent-amber);
	color: var(--tf-bg-primary);
	box-shadow: var(--tf-glow-amber);
	transform: translateY(-2px);
}

.tf-btn-outline {
	background: transparent;
	border-color: var(--tf-text-primary);
	color: var(--tf-text-primary);
}

.tf-btn-outline:hover {
	background: var(--tf-text-primary);
	color: var(--tf-bg-primary);
	transform: translateY(-2px);
}

/* ====================================
   7. CARDS
   ==================================== */
.tf-card {
	background: var(--tf-bg-secondary);
	border-radius: 12px;
	padding: var(--tf-spacing-lg);
	border: 1px solid var(--tf-divider);
	transition: var(--tf-transition);
	height: 100%;
}

.tf-card:hover {
	border-color: var(--tf-accent-blue);
	box-shadow: var(--tf-shadow-lg);
	transform: translateY(-4px);
}

.tf-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--tf-accent-blue),
		var(--tf-accent-amber)
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	color: var(--tf-text-heading);
	margin-bottom: var(--tf-spacing-sm);
}

.tf-card-title {
	font-family: var(--tf-font-heading);
	font-size: 1.25rem;
	color: var(--tf-text-heading);
	margin-bottom: var(--tf-spacing-xs);
}

.tf-card-text {
	color: var(--tf-text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ====================================
   8. HERO SECTIONS
   ==================================== */
.tf-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--tf-spacing-xxl) 0;
	overflow: hidden;
}

.tf-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

	z-index: 0;
}

.tf-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		var(--tf-bg-primary) 0%,
		rgba(13, 17, 23, 0.8) 50%,
		var(--tf-bg-primary) 100%
	);
	z-index: 1;
}

.tf-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 var(--tf-spacing-md);
}

.tf-hero-title {
	margin-bottom: var(--tf-spacing-md);
	animation: tf-fade-up 1s ease-out;
}

.tf-hero-subtitle {
	font-size: clamp(1.125rem, 1.5vw, 1.5rem);
	color: var(--tf-text-secondary);
	margin-bottom: var(--tf-spacing-lg);
	animation: tf-fade-up 1s ease-out 0.2s both;
}

.tf-hero-cta {
	animation: tf-fade-up 1s ease-out 0.4s both;
}

/* ====================================
   9. FORMS
   ==================================== */
.tf-form {
	max-width: 600px;
	margin: 0 auto;
}

.tf-form-group {
	margin-bottom: var(--tf-spacing-md);
}

.tf-form-label {
	display: block;
	font-weight: 600;
	color: var(--tf-text-heading);
	margin-bottom: var(--tf-spacing-xs);
}

.tf-form-input,
.tf-form-textarea {
	width: 100%;
	padding: 14px 18px;
	background: var(--tf-bg-primary);
	border: 2px solid var(--tf-divider);
	border-radius: 8px;
	color: var(--tf-text-primary);
	font-family: var(--tf-font-main);
	font-size: 1rem;
	transition: var(--tf-transition);
}

.tf-form-input:focus,
.tf-form-textarea:focus {
	outline: none;
	border-color: var(--tf-accent-blue);
	box-shadow: var(--tf-shadow-md);
}

.tf-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.tf-form-error {
	color: #ff4444;
	font-size: 0.875rem;
	margin-top: var(--tf-spacing-xs);
	display: none;
}

.tf-form-group.tf-error .tf-form-error {
	display: block;
}

.tf-form-group.tf-error .tf-form-input,
.tf-form-group.tf-error .tf-form-textarea {
	border-color: #ff4444;
}

/* ====================================
   10. TABS
   ==================================== */
.tf-tabs {
	margin: var(--tf-spacing-lg) 0;
}

.tf-tabs-nav {
	display: flex;
	gap: var(--tf-spacing-sm);
	border-bottom: 2px solid var(--tf-divider);
	margin-bottom: var(--tf-spacing-lg);
	flex-wrap: wrap;
}

.tf-tab-btn {
	padding: 14px 24px;
	color: var(--tf-text-secondary);
	font-weight: 600;
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: var(--tf-transition);
	cursor: pointer;
}

.tf-tab-btn:hover {
	color: var(--tf-accent-blue);
}

.tf-tab-btn.tf-active {
	color: var(--tf-accent-blue);
	border-bottom-color: var(--tf-accent-blue);
}

.tf-tab-content {
	display: none;
	animation: tf-fade-in 0.5s ease-out;
}

.tf-tab-content.tf-active {
	display: block;
}

/* ====================================
   11. ACCORDIONS
   ==================================== */
.tf-accordion {
	margin: var(--tf-spacing-lg) 0;
}

.tf-accordion-item {
	background: var(--tf-bg-secondary);
	border: 1px solid var(--tf-divider);
	border-radius: 8px;
	margin-bottom: var(--tf-spacing-sm);
	overflow: hidden;
}

.tf-accordion-header {
	width: 100%;
	padding: var(--tf-spacing-md);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: var(--tf-transition);
}

.tf-accordion-header:hover {
	background: rgba(78, 158, 255, 0.05);
}

.tf-accordion-title {
	font-family: var(--tf-font-heading);
	font-size: 1.125rem;
	color: var(--tf-text-heading);
	font-weight: 600;
	text-align: left;
}

.tf-accordion-icon {
	font-size: 1.25rem;
	color: var(--tf-accent-blue);
	transition: var(--tf-transition);
}

.tf-accordion-item.tf-active .tf-accordion-icon {
	transform: rotate(180deg);
}

.tf-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-in-out;
}

.tf-accordion-content-inner {
	padding: 1rem var(--tf-spacing-md) var(--tf-spacing-md);
	color: var(--tf-text-secondary);
	line-height: 1.6;
}

/* ====================================
   12. TESTIMONIALS
   ==================================== */
.tf-testimonial {
	background: var(--tf-bg-secondary);
	border-radius: 12px;
	padding: var(--tf-spacing-lg);
	border: 1px solid var(--tf-divider);
	position: relative;
}

.tf-testimonial-quote {
	font-size: 3rem;
	color: var(--tf-accent-blue);
	opacity: 0.2;
	position: absolute;
	top: 20px;
	left: 20px;
}

.tf-testimonial-text {
	color: var(--tf-text-primary);
	font-style: italic;
	margin-bottom: var(--tf-spacing-md);
	position: relative;
	z-index: 1;
}

.tf-testimonial-author {
	display: flex;
	align-items: center;
	gap: var(--tf-spacing-sm);
}

.tf-testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--tf-accent-blue);
}

.tf-testimonial-info h4 {
	font-family: var(--tf-font-heading);
	color: var(--tf-text-heading);
	margin-bottom: 4px;
}

.tf-testimonial-info p {
	color: var(--tf-text-secondary);
	font-size: 0.9rem;
}

/* ====================================
   13. COOKIE POPUP
   ==================================== */
.tf-cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 600px;
	width: calc(100% - 40px);
	background: var(--tf-bg-secondary);
	border: 2px solid var(--tf-accent-blue);
	border-radius: 12px;
	padding: var(--tf-spacing-md);
	box-shadow: var(--tf-shadow-lg);
	z-index: 9999;
	display: none;
	animation: tf-slide-up 0.5s ease-out;
}

.tf-cookie-popup.tf-show {
	display: block;
}

.tf-cookie-content {
	display: flex;
	flex-direction: column;
	gap: var(--tf-spacing-sm);
}

.tf-cookie-text {
	color: var(--tf-text-primary);
	font-size: 0.95rem;
	line-height: 1.5;
}

.tf-cookie-link {
	color: var(--tf-accent-blue);
	text-decoration: underline;
}

.tf-cookie-actions {
	display: flex;
	gap: var(--tf-spacing-sm);
}

/* ====================================
   14. MAP
   ==================================== */
.tf-map {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.tf-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.tf-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.tf-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.tf-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;
}

/* ====================================
   15. TABLE
   ==================================== */
.tf-table-wrapper {
	overflow-x: auto;
	margin: var(--tf-spacing-lg) 0;
}

.tf-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--tf-bg-secondary);
	border-radius: 12px;
	overflow: hidden;
}

.tf-table thead {
	background: rgba(78, 158, 255, 0.1);
}

.tf-table th {
	padding: var(--tf-spacing-sm) var(--tf-spacing-md);
	text-align: left;
	font-family: var(--tf-font-heading);
	color: var(--tf-accent-blue);
	font-weight: 600;
	border-bottom: 2px solid var(--tf-divider);
}

.tf-table td {
	padding: var(--tf-spacing-sm) var(--tf-spacing-md);
	color: var(--tf-text-primary);
	border-bottom: 1px solid var(--tf-divider);
}

.tf-table tbody tr:hover {
	background: rgba(78, 158, 255, 0.05);
}

/* ====================================
   16. ANIMATIONS
   ==================================== */
@keyframes tf-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes tf-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tf-slide-up {
	from {
		transform: translateX(-50%) translateY(100px);
		opacity: 0;
	}
	to {
		transform: translateX(-50%) translateY(0);
		opacity: 1;
	}
}

@keyframes tf-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes tf-rotate-in {
	from {
		opacity: 0;
		transform: rotate(-10deg) scale(0.8);
	}
	to {
		opacity: 1;
		transform: rotate(0) scale(1);
	}
}

.tf-animate-fade-in {
	animation: tf-fade-in 0.8s ease-out;
}

.tf-animate-fade-up {
	animation: tf-fade-up 0.8s ease-out;
}

.tf-animate-zoom-in {
	animation: tf-zoom-in 0.8s ease-out;
}

.tf-animate-rotate-in {
	animation: tf-rotate-in 0.8s ease-out;
}

/* Scroll animations */
.tf-scroll-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.tf-scroll-animate.tf-in-view {
	opacity: 1;
	transform: translateY(0);
}

/* ====================================
   17. SPECIFIC SECTIONS
   ==================================== */

/* Section with background accent */
.tf-section-accent {
	background: linear-gradient(
		135deg,
		rgba(78, 158, 255, 0.05) 0%,
		rgba(255, 184, 0, 0.05) 100%
	);
	position: relative;
}

.tf-section-accent::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--tf-accent-blue) 50%,
		transparent 100%
	);
}

/* Section header */
.tf-section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto var(--tf-spacing-xl);
}

.tf-section-title {
	font-family: var(--tf-font-heading);
	font-size: clamp(2rem, 4vw, 2.5rem);
	color: var(--tf-text-heading);
	margin-bottom: var(--tf-spacing-sm);
}

.tf-section-subtitle {
	color: var(--tf-text-secondary);
	font-size: clamp(1rem, 1.2vw, 1.125rem);
	line-height: 1.6;
}

/* Feature block */
.tf-feature {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--tf-spacing-md);
	padding: var(--tf-spacing-md);
	background: var(--tf-bg-secondary);
	border-radius: 12px;
	border: 1px solid var(--tf-divider);
	transition: var(--tf-transition);
}

.tf-feature:hover {
	border-color: var(--tf-accent-blue);
	transform: translateX(8px);
}

.tf-feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--tf-accent-blue),
		var(--tf-accent-amber)
	);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tf-text-heading);
	font-size: 1.5rem;
}

.tf-feature-content h3 {
	font-family: var(--tf-font-heading);
	color: var(--tf-text-heading);
	margin-bottom: var(--tf-spacing-xs);
}

.tf-feature-content p {
	color: var(--tf-text-secondary);
	line-height: 1.6;
}

/* Contact info block */
.tf-contact-info {
	background: var(--tf-bg-secondary);
	border-radius: 12px;
	padding: var(--tf-spacing-lg);
	border: 1px solid var(--tf-divider);
}

.tf-contact-item {
	display: flex;
	align-items: flex-start;
	gap: var(--tf-spacing-sm);
	padding: var(--tf-spacing-sm) 0;
	border-bottom: 1px solid var(--tf-divider);
}

.tf-contact-item:last-child {
	border-bottom: none;
}

.tf-contact-icon {
	width: 40px;
	height: 40px;
	background: rgba(78, 158, 255, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tf-accent-blue);
	font-size: 1.25rem;
}

.tf-contact-details h4 {
	font-family: var(--tf-font-heading);
	color: var(--tf-text-heading);
	margin-bottom: 4px;
	font-size: 1rem;
}

.tf-contact-details p {
	color: var(--tf-text-secondary);
	font-size: 0.95rem;
}

/* ====================================
   18. UTILITIES
   ==================================== */
.tf-mt-xs {
	margin-top: var(--tf-spacing-xs);
}
.tf-mt-sm {
	margin-top: var(--tf-spacing-sm);
}
.tf-mt-md {
	margin-top: var(--tf-spacing-md);
}
.tf-mt-lg {
	margin-top: var(--tf-spacing-lg);
}
.tf-mt-xl {
	margin-top: var(--tf-spacing-xl);
}

.tf-mb-xs {
	margin-bottom: var(--tf-spacing-xs);
}
.tf-mb-sm {
	margin-bottom: var(--tf-spacing-sm);
}
.tf-mb-md {
	margin-bottom: var(--tf-spacing-md);
}
.tf-mb-lg {
	margin-bottom: var(--tf-spacing-lg);
}
.tf-mb-xl {
	margin-bottom: var(--tf-spacing-xl);
}

.tf-text-center {
	text-align: center;
}
.tf-text-left {
	text-align: left;
}
.tf-text-right {
	text-align: right;
}

/* ====================================
   20. PRINT STYLES
   ==================================== */
@media print {
	.tf-header,
	.tf-footer,
	.tf-cookie-popup,
	.tf-menu-toggle {
		display: none;
	}

	body {
		background: white;
		color: black;
	}

	.tf-card,
	.tf-testimonial {
		border: 1px solid #ccc;
	}
}

/* ====================================
   22. LOADING STATES
   ==================================== */
.tf-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(78, 158, 255, 0.3);
	border-radius: 50%;
	border-top-color: var(--tf-accent-blue);
	animation: tf-spin 1s linear infinite;
}

@keyframes tf-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ====================================
   23. CUSTOM SCROLLBAR
   ==================================== */
::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: var(--tf-bg-primary);
}

::-webkit-scrollbar-thumb {
	background: var(--tf-accent-blue);
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--tf-accent-amber);
}

/* Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--tf-accent-blue) var(--tf-bg-primary);
}

/* ====================================
   19. RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 768px) {
	/* Header mobile */
	.tf-header {
		top: 10px;
		width: calc(100% - 20px);
	}

	.tf-menu-toggle {
		display: flex;
	}

	.tf-nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: var(--tf-bg-secondary);
		flex-direction: column;
		padding: 80px 30px 30px;
		gap: var(--tf-spacing-md);
		transition: var(--tf-transition);
		box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
		border-left: 2px solid var(--tf-accent-blue);
	}

	.tf-nav-menu.tf-active {
		right: 0;
	}

	.tf-nav-link {
		width: 100%;
		padding: 12px 0;
		font-size: 1.125rem;
	}

	/* Grid adjustments */
	.tf-grid-2,
	.tf-grid-3,
	.tf-grid-4 {
		grid-template-columns: 1fr;
	}

	/* Footer */
	.tf-footer-grid {
		grid-template-columns: 1fr;
	}

	/* Tabs */
	.tf-tabs-nav {
		flex-direction: column;
		flex-wrap: nowrap;
	}

	.tf-tab-btn {
		white-space: nowrap;
	}

	/* Cookie popup */
	.tf-cookie-actions {
		flex-direction: column;
	}

	/* Hero */
	.tf-hero {
		min-height: 80vh;
	}

	/* Spacing adjustments */
	.tf-section {
		padding: var(--tf-spacing-xl) 0;
	}

	/* Feature blocks */
	.tf-feature {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 14px;
	}

	.tf-btn {
		width: 100%;
		padding: 12px 24px;
	}

	.tf-hero {
		min-height: 70vh;
	}
}

.tf-legal-container {
	max-width: 1200px;
	margin: 140px auto;
	background-color: #161b22;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(78, 158, 255, 0.1);
	overflow: hidden;
	position: relative;
}

.tf-legal-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #4e9eff 0%, #ffb800 100%);
	z-index: 10;
}

/* === HEADER SECTION === */
.tf-legal-header {
	padding: 60px 60px 40px;
	background: linear-gradient(
		135deg,
		rgba(78, 158, 255, 0.05) 0%,
		rgba(255, 184, 0, 0.05) 100%
	);
	border-bottom: 2px solid #2c313a;
	position: relative;
}

.tf-legal-title {
	font-size: 48px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
	text-transform: uppercase;
	background: linear-gradient(135deg, #ffffff 0%, #4e9eff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tf-legal-subtitle {
	font-size: 14px;
	color: #9ba1a6;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.tf-legal-accent-line {
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, #4e9eff 0%, #ffb800 100%);
	margin-top: 24px;
	border-radius: 2px;
	box-shadow: 0 0 20px rgba(78, 158, 255, 0.5);
}

/* === CONTENT SECTION === */
.tf-legal-content {
	padding: 40px 60px 60px;
}

.tf-legal-section {
	margin-bottom: 60px;
	position: relative;
	padding-left: 80px;
	animation: tf-legal-fade-in 0.6s ease-out;
}

@keyframes tf-legal-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tf-legal-section:last-child {
	margin-bottom: 0;
}

.tf-legal-section-number {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 56px;
	font-weight: 900;
	color: #2c313a;
	line-height: 1;
	user-select: none;
	background: linear-gradient(135deg, #4e9eff 0%, #ffb800 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.3;
}

.tf-legal-section-title {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
	letter-spacing: -0.3px;
	position: relative;
	padding-bottom: 12px;
}

.tf-legal-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: #4e9eff;
	border-radius: 2px;
}

.tf-legal-text {
	font-size: 16px;
	line-height: 1.8;
	color: #e6e9ef;
	text-align: justify;
	padding: 20px;
	background-color: rgba(44, 49, 58, 0.2);
	border-left: 3px solid #4e9eff;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.tf-legal-text:hover {
	background-color: rgba(44, 49, 58, 0.3);
	border-left-color: #ffb800;
	box-shadow: 0 4px 16px rgba(78, 158, 255, 0.1);
}

/* === FOOTER SECTION === */
.tf-legal-footer {
	padding: 40px 60px;
	background-color: #0d1117;
	border-top: 2px solid #2c313a;
}

.tf-legal-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.tf-legal-footer-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px;
	background-color: #161b22;
	border-radius: 8px;
	border: 1px solid #2c313a;
	transition: all 0.3s ease;
}

.tf-legal-footer-item:hover {
	border-color: #4e9eff;
	box-shadow: 0 4px 20px rgba(78, 158, 255, 0.15);
	transform: translateY(-2px);
}

.tf-legal-footer-label {
	font-size: 12px;
	font-weight: 600;
	color: #9ba1a6;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.tf-legal-footer-value {
	font-size: 16px;
	font-weight: 500;
	color: #e6e9ef;
	word-break: break-word;
}

/* === RESPONSIVE DESIGN === */
@media screen and (max-width: 1024px) {
	.tf-legal-header {
		padding: 50px 40px 35px;
	}

	.tf-legal-content {
		padding: 35px 40px 50px;
	}

	.tf-legal-footer {
		padding: 35px 40px;
	}

	.tf-legal-title {
		font-size: 40px;
	}

	.tf-legal-section {
		padding-left: 70px;
	}

	.tf-legal-section-number {
		font-size: 48px;
	}

	.tf-legal-section-title {
		font-size: 24px;
	}

	.tf-legal-container {
		margin: 140px 20px;
	}
}

@media screen and (max-width: 768px) {
	.tf-legal-body {
		padding: 20px 15px;
	}

	.tf-legal-container {
		border-radius: 8px;
	}

	.tf-legal-header {
		padding: 40px 30px 30px;
	}

	.tf-legal-content {
		padding: 30px 30px 40px;
	}

	.tf-legal-footer {
		padding: 30px;
	}

	.tf-legal-title {
		font-size: 2rem;
	}

	.tf-legal-section {
		padding-left: 0;
		margin-bottom: 50px;
	}

	.tf-legal-section-number {
		position: static;
		font-size: 40px;
		margin-bottom: 10px;
		display: block;
	}

	.tf-legal-section-title {
		font-size: 22px;
	}

	.tf-legal-text {
		font-size: 15px;
		padding: 16px;
		text-align: left;
	}

	.tf-legal-footer-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media screen and (max-width: 480px) {
	.tf-legal-body {
		padding: 15px 10px;
	}

	.tf-legal-header {
		padding: 30px 20px 25px;
	}

	.tf-legal-content {
		padding: 25px 20px 35px;
	}

	.tf-legal-footer {
		padding: 25px 20px;
	}

	.tf-legal-title {
		font-size: 1.3rem;
	}

	.tf-legal-subtitle {
		font-size: 12px;
	}

	.tf-legal-section-number {
		font-size: 36px;
	}

	.tf-legal-section-title {
		font-size: 20px;
	}

	.tf-legal-text {
		font-size: 14px;
		line-height: 1.7;
		padding: 14px;
	}

	.tf-legal-footer-item {
		padding: 16px;
	}

	.tf-legal-footer-value {
		font-size: 14px;
	}
}
