@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;600;700&display=swap');

/* ==================== CSS RESET ==================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #0f172a;
	color: #e2e8f0;
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

ul {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

/* ==================== UTILITY CLASSES ==================== */
.tn-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tn-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.tn-section {
	padding: 80px 0;
	position: relative;
}

.tn-section-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
	color: #f1f5f9;
	margin-bottom: 20px;
	text-align: center;
}

.tn-section-subtitle {
	font-size: 1.125rem;
	color: #94a3b8;
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
	line-height: 1.8;
}

.tn-btn {
	display: inline-block;
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.tn-btn-primary {
	background: linear-gradient(135deg, #14b8a6, #0d9488);
	color: #fff;
	box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3);
}

.tn-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(20, 184, 166, 0.5);
}

.tn-btn-secondary {
	background: linear-gradient(135deg, #f97316, #ea580c);
	color: #fff;
	box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.tn-btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(249, 115, 22, 0.5);
}

.tn-btn-outline {
	border: 2px solid #14b8a6;
	color: #14b8a6;
	background: transparent;
}

.tn-btn-outline:hover {
	background: rgba(20, 184, 166, 0.1);
	box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

/* ==================== HEADER ==================== */
.tn-header {
	background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
	border-bottom: 2px solid rgba(20, 184, 166, 0.3);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.tn-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.tn-logo {
	font-family: 'Poppins', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #14b8a6;
	text-shadow: 0 0 20px rgba(20, 184, 166, 0.6);
	position: relative;
}

.tn-logo::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #14b8a6, transparent);
}

.tn-nav {
	display: flex;
	gap: 40px;
	align-items: center;
}

.tn-nav-link {
	font-size: 1rem;
	color: #e2e8f0;
	position: relative;
	padding: 5px 0;
	transition: all 0.3s ease;
}

.tn-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: #14b8a6;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.tn-nav-link:hover {
	color: #14b8a6;
	text-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
}

.tn-nav-link:hover::after {
	width: 100%;
}

.tn-nav-link.active {
	color: #14b8a6;
}

.tn-header-cta {
	padding: 10px 24px;
	font-size: 0.95rem;
}

.tn-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.tn-mobile-toggle span {
	width: 28px;
	height: 3px;
	background: #14b8a6;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.tn-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	overflow: hidden;
}

.tn-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/tn-hero.webp') center/cover;
	opacity: 0.1;
	pointer-events: none;
}

.tn-hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 0 20px;
	animation: tn-fade-up 1s ease;
}

.tn-hero-title {
	font-family: 'Poppins', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: #f1f5f9;
	margin-bottom: 20px;
	text-shadow: 0 0 30px rgba(20, 184, 166, 0.3);
	line-height: 1.2;
}

.tn-hero-subtitle {
	font-size: 1.35rem;
	color: #94a3b8;
	margin-bottom: 40px;
	line-height: 1.8;
}

.tn-hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Map Animation Background */
.tn-map-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.1;
	background-image: repeating-linear-gradient(
			0deg,
			transparent,
			transparent 50px,
			rgba(20, 184, 166, 0.1) 50px,
			rgba(20, 184, 166, 0.1) 51px
		),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 50px,
			rgba(20, 184, 166, 0.1) 50px,
			rgba(20, 184, 166, 0.1) 51px
		);
	animation: tn-map-move 30s linear infinite;
}

@keyframes tn-map-move {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(50px, 50px);
	}
}

/* ==================== CARD STYLES ==================== */
.tn-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.tn-card {
	background: #1e293b;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.4s ease;
	border: 1px solid rgba(20, 184, 166, 0.1);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.tn-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
	border-color: #14b8a6;
}

.tn-card:hover::before {
	opacity: 1;
}

.tn-card-img {
	width: 100%;
	height: 220px;
	background: linear-gradient(135deg, #1e293b, #334155);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #475569;
	font-size: 3rem;
}

.tn-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tn-card-content {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.tn-card-content a {
	margin-top: auto;
}

.tn-card-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	color: #f1f5f9;
	margin-bottom: 12px;
	font-weight: 600;
}

.tn-card-text {
	color: #94a3b8;
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 20px;
}

.tn-card-link {
	color: #14b8a6;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.tn-card-link:hover {
	gap: 12px;
	text-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
}

/* ==================== REGIONS GRID ==================== */
.tn-regions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 50px;
}

.tn-region-card {
	background: linear-gradient(135deg, #1e293b, #334155);
	border-radius: 12px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

.tn-region-card:hover {
	border-color: #14b8a6;
	transform: scale(1.05);
	box-shadow: 0 10px 40px rgba(20, 184, 166, 0.3);
}

.tn-region-icon {
	font-size: 3rem;
	color: #14b8a6;
	margin-bottom: 20px;
}

.tn-region-name {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	color: #f1f5f9;
	font-weight: 600;
}

/* ==================== TWO COLUMN LAYOUT ==================== */
.tn-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.tn-two-col-img {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1e293b, #334155);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #475569;
	font-size: 4rem;
}

.tn-two-col-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tn-two-col-content h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.75rem;
	color: #f1f5f9;
	margin-bottom: 15px;
	font-weight: 600;
}

.tn-two-col-content p {
	color: #94a3b8;
	line-height: 1.8;
	margin-bottom: 15px;
}

.tn-list-styled {
	list-style: none;
	margin-top: 25px;
}

.tn-list-styled li {
	padding: 12px 0;
	padding-left: 30px;
	position: relative;
	color: #e2e8f0;
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.tn-list-styled li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: #14b8a6;
	font-size: 1.2rem;
}

/* ==================== RESEARCH SECTION ==================== */
.tn-research-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.tn-research-card {
	background: #1e293b;
	border-radius: 12px;
	padding: 35px;
	border-left: 4px solid #14b8a6;
	transition: all 0.2s ease;
}

.tn-research-card:hover {
	/* border-left-width: 8px; */
	transform: translateX(5px);
	box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
}

.tn-research-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	color: #f1f5f9;
	margin-bottom: 15px;
	font-weight: 600;
}

.tn-research-meta {
	color: #64748b;
	font-size: 0.9rem;
	flex-wrap: wrap;
	margin-bottom: 15px;
	display: flex;
	gap: 15px;
}

.tn-research-text {
	color: #94a3b8;
	line-height: 1.8;
	margin-bottom: 20px;
}

/* ==================== CONTACT FORM ==================== */
.tn-form-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-top: 50px;
}

.tn-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.tn-form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tn-form-label {
	color: #e2e8f0;
	font-weight: 500;
	font-size: 0.95rem;
}

.tn-form-input,
.tn-form-textarea {
	background: #1e293b;
	border: 2px solid rgba(148, 163, 184, 0.2);
	border-radius: 8px;
	padding: 14px 18px;
	color: #e2e8f0;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.tn-form-input:focus,
.tn-form-textarea:focus {
	outline: none;
	border-color: #14b8a6;
	box-shadow: 0 0 20px rgba(20, 184, 166, 0.2);
}

.tn-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.tn-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	display: none;
}

.tn-form-group.error .tn-form-error {
	display: block;
}

.tn-form-group.error .tn-form-input,
.tn-form-group.error .tn-form-textarea {
	border-color: #ef4444;
}

.tn-map-container {
	background: #1e293b;
	border-radius: 1rem;
	overflow: hidden;
	height: 100%;

	border: 2px solid rgba(20, 184, 166, 0.2);
}

.tn-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.tn-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.tn-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.tn-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;
}

.tn-map-placeholder {
	color: #475569;
	text-align: center;
}

.tn-map-placeholder i {
	font-size: 4rem;
	margin-bottom: 15px;
	display: block;
}

/* ==================== FOOTER ==================== */
.tn-footer {
	background: #1e293b;
	border-top: 2px solid rgba(20, 184, 166, 0.2);
	padding: 60px 0 30px;
}

.tn-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.tn-footer-col h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.25rem;
	color: #f1f5f9;
	margin-bottom: 20px;
	font-weight: 600;
}

.tn-footer-col p,
.tn-footer-col a {
	color: #94a3b8;
	font-size: 0.95rem;
	line-height: 1.8;
	display: block;
	margin-bottom: 10px;
}

.tn-footer-col a:hover {
	color: #14b8a6;
	padding-left: 5px;
}

.tn-footer-subscribe {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.tn-footer-subscribe input {
	flex: 1;
	background: #0f172a;
	border: 2px solid rgba(148, 163, 184, 0.2);
	border-radius: 6px;
	padding: 10px 15px;
	color: #e2e8f0;
	font-size: 0.95rem;
}

.tn-footer-subscribe button {
	padding: 10px 20px;
	background: #14b8a6;
	color: #fff;
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.tn-footer-subscribe button:hover {
	background: #0d9488;
	box-shadow: 0 4px 15px rgba(20, 184, 166, 0.4);
}

.tn-footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(148, 163, 184, 0.1);
	color: #64748b;
	font-size: 0.9rem;
}

/* ==================== COOKIE POPUP ==================== */
.tn-cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 500px;
	background: #1e293b;
	border: 2px solid #14b8a6;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	z-index: 10000;
	display: none;
	animation: tn-slide-up 0.5s ease;
}

.tn-cookie-popup.active {
	display: block;
}

.tn-cookie-text {
	color: #e2e8f0;
	margin-bottom: 15px;
	font-size: 0.95rem;
	line-height: 1.6;
}

.tn-cookie-text a {
	color: #14b8a6;
	text-decoration: underline;
}

.tn-cookie-actions {
	display: flex;
	gap: 10px;
}

.tn-cookie-btn {
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 0.9rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes tn-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tn-slide-up {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tn-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes tn-rotate-in {
	from {
		opacity: 0;
		transform: rotate(-10deg);
	}
	to {
		opacity: 1;
		transform: rotate(0);
	}
}

/* Scroll Animation Classes */
.tn-scroll-reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

.tn-scroll-reveal.active {
	opacity: 1;
	transform: translateY(0);
}

.tn-scroll-zoom {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.8s ease;
}

.tn-scroll-zoom.active {
	opacity: 1;
	transform: scale(1);
}

/* ==================== TABLE STYLES ==================== */
.tn-table-wrapper {
	overflow-x: auto;
	margin: 40px 0;
}

.tn-table {
	width: 100%;
	border-collapse: collapse;
	background: #1e293b;
	border-radius: 12px;
	overflow: hidden;
}

.tn-table th {
	background: linear-gradient(135deg, #14b8a6, #0d9488);
	color: #fff;
	padding: 18px;
	text-align: left;
	font-weight: 600;
	font-size: 1rem;
}

.tn-table td {
	padding: 18px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
	color: #e2e8f0;
}

.tn-table tr:hover {
	background: rgba(20, 184, 166, 0.05);
}

/* ==================== ACCORDION ==================== */
.tn-accordion {
	margin: 40px 0;
}

.tn-accordion-item {
	background: #1e293b;
	border-radius: 8px;
	margin-bottom: 15px;
	overflow: hidden;
	border: 1px solid rgba(148, 163, 184, 0.1);
}

.tn-accordion-header {
	padding: 20px 25px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.tn-accordion-header:hover {
	background: rgba(20, 184, 166, 0.05);
}

.tn-accordion-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.15rem;
	color: #f1f5f9;
	font-weight: 600;
}

.tn-accordion-icon {
	color: #14b8a6;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.tn-accordion-item.active .tn-accordion-icon {
	transform: rotate(180deg);
}

.tn-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.tn-accordion-body {
	padding: 1rem 25px 20px;
	color: #94a3b8;
	line-height: 1.8;
}

/* ==================== TABS ==================== */
.tn-tabs {
	margin: 40px 0;
}

.tn-tabs-nav {
	display: flex;
	gap: 15px;
	border-bottom: 2px solid rgba(148, 163, 184, 0.2);
	margin-bottom: 30px;
}

.tn-tab-btn {
	padding: 12px 25px;
	color: #94a3b8;
	font-weight: 500;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
	cursor: pointer;
}

.tn-tab-btn:hover {
	color: #14b8a6;
}

.tn-tab-btn.active {
	color: #14b8a6;
	border-bottom-color: #14b8a6;
}

.tn-tab-content {
	display: none;
}

.tn-tab-content.active {
	display: block;
	animation: tn-fade-up 0.5s ease;
}

/* ==================== FILTER SECTION ==================== */
.tn-filter-bar {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin: 40px 0;
	padding: 25px;
	background: #1e293b;
	border-radius: 12px;
}

.tn-filter-btn {
	padding: 10px 20px;
	background: rgba(20, 184, 166, 0.1);
	color: #14b8a6;
	border: 2px solid transparent;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
}

.tn-filter-btn:hover {
	border-color: #14b8a6;
}

.tn-filter-btn.active {
	background: #14b8a6;
	color: #fff;
}

/* ==================== TEAM SECTION ==================== */
.tn-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 50px;
}

.tn-team-card {
	text-align: center;
	background: #1e293b;
	border-radius: 12px;
	padding: 40px 30px;
	transition: all 0.4s ease;
	border: 2px solid transparent;
}

.tn-team-card:hover {
	border-color: #14b8a6;
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
}

.tn-team-avatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: linear-gradient(135deg, #14b8a6, #0d9488);
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #fff;
	border: 4px solid rgba(20, 184, 166, 0.3);
}

.tn-team-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.tn-team-name {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	color: #f1f5f9;
	margin-bottom: 8px;
	font-weight: 600;
}

.tn-team-role {
	color: #14b8a6;
	font-size: 1rem;
	margin-bottom: 15px;
}

.tn-team-bio {
	color: #94a3b8;
	line-height: 1.7;
	font-size: 0.95rem;
}

/* ==================== CONTACT INFO ==================== */
.tn-contact-info {
	background: #1e293b;
	border-radius: 12px;
	padding: 35px;
	border-left: 4px solid #14b8a6;
}

.tn-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.tn-contact-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.tn-contact-icon {
	font-size: 1.8rem;
	color: #14b8a6;
	min-width: 40px;
}

.tn-contact-details h4 {
	color: #f1f5f9;
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 1.1rem;
}

.tn-contact-details p {
	color: #94a3b8;
	line-height: 1.7;
}

/* ==================== BREADCRUMB ==================== */
.tn-breadcrumb {
	padding: 20px 0;
	background: #1e293b;

	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.tn-breadcrumb-list {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.tn-breadcrumb-item {
	color: #94a3b8;
	display: flex;
	align-items: center;
	gap: 10px;
}

.tn-breadcrumb-item a {
	color: #14b8a6;
	transition: all 0.3s ease;
}

.tn-breadcrumb-item a:hover {
	text-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
}

.tn-breadcrumb-separator {
	color: #64748b;
}

/* ==================== INTERVIEW BLOCK ==================== */
.tn-interview {
	background: linear-gradient(135deg, #1e293b, #334155);
	border-radius: 12px;
	padding: 40px;
	margin: 50px 0;
	border-left: 5px solid #f97316;
}

.tn-interview-header {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 30px;
}

.tn-interview-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f97316, #ea580c);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #fff;
}

.tn-interview-meta h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	color: #f1f5f9;
	margin-bottom: 5px;
	font-weight: 600;
}

.tn-interview-meta p {
	color: #f97316;
	font-size: 1rem;
}

.tn-interview-quote {
	font-size: 1.1rem;
	color: #e2e8f0;
	line-height: 1.9;
	font-style: italic;
	position: relative;
	padding-left: 30px;
}

.tn-interview-quote::before {
	content: '"';
	position: absolute;
	left: 0;
	top: -10px;
	font-size: 4rem;
	color: #f97316;
	opacity: 0.3;
}

/* ==================== MISSION STATEMENT ==================== */
.tn-mission {
	background: linear-gradient(
		135deg,
		rgba(20, 184, 166, 0.1),
		rgba(249, 115, 22, 0.1)
	);
	border: 2px solid rgba(20, 184, 166, 0.3);
	border-radius: 12px;
	padding: 50px;
	text-align: center;
	margin: 50px 0;
}

.tn-mission-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	color: #f1f5f9;
	margin-bottom: 20px;
	font-weight: 600;
}

.tn-mission-text {
	font-size: 1.2rem;
	color: #e2e8f0;
	line-height: 1.9;
	max-width: 900px;
	margin: 0 auto;
}

/* ==================== CAROUSEL ==================== */
.tn-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	margin: 50px 0;
}

.tn-carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}

.tn-carousel-slide {
	min-width: 100%;
	background: #1e293b;
	padding: 60px;
	text-align: center;
}

.tn-carousel-controls {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	padding: 0 20px;
}

.tn-carousel-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(20, 184, 166, 0.8);
	color: #fff;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.tn-carousel-btn:hover {
	background: #14b8a6;
	box-shadow: 0 0 20px rgba(20, 184, 166, 0.5);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
	.tn-section-title {
		font-size: 2rem;
	}

	.tn-hero-title {
		font-size: 2.5rem;
	}

	.tn-regions-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tn-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tn-team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tn-research-grid {
		grid-template-columns: 1fr;
	}

	.tn-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		background: #0f172a;
		flex-direction: column;
		justify-content: center;
		gap: 30px;
		transition: left 0.4s ease;
		z-index: 999;
	}

	.tn-nav.active {
		left: 0;
	}

	.tn-mobile-toggle {
		display: flex;
		z-index: 1000;
	}
}

@media (max-width: 768px) {
	.tn-hero-title {
		font-size: 2rem;
	}

	.tn-hero-subtitle {
		font-size: 1.1rem;
	}

	.tn-hero-buttons {
		flex-direction: column;
	}

	.tn-two-col {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.tn-regions-grid {
		grid-template-columns: 1fr;
	}

	.tn-footer-grid {
		grid-template-columns: 1fr;
	}

	.tn-team-grid {
		grid-template-columns: 1fr;
	}

	.tn-form-wrapper {
		grid-template-columns: 1fr;
	}

	.tn-section {
		padding: 50px 0;
	}

	.tn-container-wide {
		padding: 0 20px;
	}
}

@media (max-width: 480px) {
	.tn-section-title {
		font-size: 1.75rem;
	}

	.tn-hero-title {
		font-size: 1.75rem;
	}

	.tn-cards-grid {
		grid-template-columns: 1fr;
	}

	.tn-btn {
		padding: 12px 24px;
		font-size: 0.95rem;
	}

	.tn-footer-subscribe {
		flex-direction: column;
	}

	.tn-cookie-popup {
		left: 10px;
		right: 10px;
	}

	.tn-header-container {
		padding: 1rem 20px;
	}

	.tn-filter-bar {
		flex-direction: column;
	}

	.tn-interview-header {
		flex-direction: column;
		text-align: center;
	}

	.tn-interview {
		padding: 1.5rem;
	}

	.tn-interview-quote {
		padding-left: 0;
	}
	.tn-mission-title {
		font-size: 1.5rem;
	}

	.tn-research-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
}

.tn-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 120px 20px 80px;
}

/* Header Section */
.tn-legal-header {
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 40px;
	border-bottom: 2px solid #1e293b;
	position: relative;
}

.tn-legal-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 2px;
	background: linear-gradient(90deg, #14b8a6, #f97316);
}

.tn-legal-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: #f1f5f9;
	margin-bottom: 20px;
	letter-spacing: -0.5px;
	text-shadow: 0 0 30px rgba(20, 184, 166, 0.3);
}

.tn-legal-subtitle {
	font-size: 1.1rem;
	color: #94a3b8;
	margin-bottom: 15px;
}

.tn-legal-updated {
	display: inline-block;
	font-size: 0.9rem;
	color: #14b8a6;
	background-color: #1e293b;
	padding: 8px 20px;
	border-radius: 20px;
	border: 1px solid rgba(20, 184, 166, 0.3);
}

/* Content Section */
.tn-legal-content {
	background-color: #1e293b;
	padding: 50px 40px;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(20, 184, 166, 0.1);
}

.tn-legal-intro {
	font-size: 1.1rem;
	color: #94a3b8;
	margin-bottom: 50px;
	padding: 25px;
	background-color: rgba(20, 184, 166, 0.05);
	border-left: 4px solid #14b8a6;
	border-radius: 6px;
}

/* Sections */
.tn-legal-section {
	margin-bottom: 45px;
}

.tn-legal-section:last-child {
	margin-bottom: 0;
}

.tn-legal-section-title {
	font-size: 1.6rem;
	font-weight: 600;
	color: #f1f5f9;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.tn-legal-section-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #14b8a6, #0d9488);
	border-radius: 8px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #0f172a;
	flex-shrink: 0;
}

.tn-legal-section-content {
	color: #e2e8f0;
	line-height: 1.8;
}

.tn-legal-section-content p {
	margin-bottom: 15px;
}

.tn-legal-section-content p:last-child {
	margin-bottom: 0;
}

.tn-legal-section-content ul {
	list-style: none;
	margin: 20px 0;
	padding-left: 0;
}

.tn-legal-section-content ul li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	color: #e2e8f0;
}

.tn-legal-section-content ul li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #f97316;
	font-weight: 700;
}

.tn-legal-section-content strong {
	color: #14b8a6;
	font-weight: 600;
}

.tn-legal-section-content em {
	color: #f97316;
	word-wrap: break-word;
	font-style: normal;
	font-weight: 500;
}

/* Highlight Box */
.tn-legal-highlight {
	background-color: rgba(249, 115, 22, 0.08);
	border-left: 4px solid #f97316;
	padding: 20px 25px;
	margin: 25px 0;
	border-radius: 6px;
}

.tn-legal-highlight p {
	color: #e2e8f0;
	margin: 0;
}

/* Contact Section */
.tn-legal-contact {
	margin-top: 50px;
	padding: 35px;
	background: linear-gradient(
		135deg,
		rgba(20, 184, 166, 0.08),
		rgba(249, 115, 22, 0.08)
	);
	border-radius: 12px;
	border: 1px solid rgba(20, 184, 166, 0.2);
}

.tn-legal-contact-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #f1f5f9;
	margin-bottom: 20px;
	text-align: center;
}

.tn-legal-contact-info {
	display: grid;
	gap: 15px;
}

.tn-legal-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #e2e8f0;
}

.tn-legal-contact-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #14b8a6;
	font-size: 1.2rem;
}

.tn-legal-contact-link {
	color: #14b8a6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.tn-legal-contact-link:hover {
	color: #f97316;
}

/* Divider */
.tn-legal-divider {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(20, 184, 166, 0.3),
		transparent
	);
	margin: 40px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.tn-legal-title {
		font-size: 2rem;
	}

	.tn-legal-content {
		padding: 30px 20px;
	}

	.tn-legal-section-title {
		font-size: 1.3rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.tn-legal-section-number {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}

	.tn-legal-contact {
		padding: 25px 20px;
	}
}

@media (max-width: 480px) {
	.tn-legal-title {
		font-size: 1.3rem;
	}

	.tn-legal-subtitle {
		font-size: 1rem;
	}

	.tn-legal-section-content ul li {
		padding-left: 25px;
	}
}
