@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Montserrat:wght@400;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
	/* Colors */
	--tma-bg-light: #f4f6f8;
	--tma-white: #ffffff;
	--tma-accent-coral: #ff6b6b;
	--tma-accent-turquoise: #4ecdc4;
	--tma-dark-gray: #556270;
	--tma-text-primary: #333333;
	--tma-text-secondary: #666666;
	--tma-text-heading: #222222;

	/* Fonts */
	--tma-font-body: 'Roboto', sans-serif;
	--tma-font-heading: 'Montserrat', sans-serif;

	/* Transitions */
	--tma-transition: all 0.4s ease;
	--tma-transition-fast: all 0.2s ease;

	/* Shadows */
	--tma-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--tma-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--tma-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

	/* Border Radius */
	--tma-radius-sm: 8px;
	--tma-radius-md: 12px;
	--tma-radius-lg: 16px;
}

/* === RESET & BASE === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--tma-font-body);
	color: var(--tma-text-primary);
	background-color: var(--tma-bg-light);
	line-height: 1.7;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--tma-transition);
}

ul,
ol {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	transition: var(--tma-transition);
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	border: none;
	outline: none;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--tma-font-heading);
	color: var(--tma-text-heading);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	font-weight: 700;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.7;
}

.tma-text-secondary {
	color: var(--tma-text-secondary);
}

.tma-text-coral {
	color: var(--tma-accent-coral);
}

.tma-text-turquoise {
	color: var(--tma-accent-turquoise);
}

/* === CONTAINER === */
.tma-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.tma-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.tma-container-narrow {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* === BUTTONS === */
.tma-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: var(--tma-radius-sm);
	font-weight: 500;
	text-align: center;
	transition: var(--tma-transition);
	cursor: pointer;
	font-size: 1rem;
}

.tma-btn-primary {
	background: var(--tma-accent-coral);
	color: var(--tma-white);
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.tma-btn-primary:hover {
	background: #ff5252;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.tma-btn-secondary {
	background: var(--tma-accent-turquoise);
	color: var(--tma-white);
	box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.tma-btn-secondary:hover {
	background: #3dbdb4;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.tma-btn-outline {
	background: transparent;
	border: 2px solid var(--tma-accent-coral);
	color: var(--tma-accent-coral);
}

.tma-btn-outline:hover {
	background: var(--tma-accent-coral);
	color: var(--tma-white);
}

.tma-btn-large {
	padding: 1.25rem 2.5rem;
	font-size: 1.125rem;
}

/* === HEADER === */
.tma-header {
	background: var(--tma-white);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--tma-transition);
}

.tma-header.tma-scrolled {
	box-shadow: var(--tma-shadow-md);
}

.tma-header-top {
	background: var(--tma-bg-light);
	padding: 0.5rem 0;
	font-size: 0.875rem;
	color: var(--tma-text-secondary);
	border-bottom: 1px solid #e0e0e0;
}

.tma-header-top-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.tma-header-contact {
	display: flex;
	gap: 2rem;
}

.tma-header-contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tma-header-contact-item i {
	color: var(--tma-accent-turquoise);
}

.tma-header-main {
	padding: 1rem 0;
}

.tma-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.tma-logo {
	font-size: 1.75rem;
	font-weight: 700;
	font-family: var(--tma-font-heading);
	color: var(--tma-text-heading);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tma-logo i {
	color: var(--tma-accent-coral);
	font-size: 2rem;
}

.tma-logo:hover {
	color: var(--tma-accent-coral);
}

.tma-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.tma-nav-link {
	color: var(--tma-text-primary);
	font-weight: 500;
	position: relative;
	padding: 0.5rem 0;
}

.tma-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--tma-accent-coral);
	transition: var(--tma-transition);
}

.tma-nav-link:hover::after,
.tma-nav-link.tma-active::after {
	width: 100%;
}

.tma-nav-link:hover {
	color: var(--tma-accent-coral);
}

.tma-nav-link.tma-active {
	color: var(--tma-accent-coral);
}

/* Mobile Menu Toggle */
.tma-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 0.35rem;
	cursor: pointer;
	z-index: 1001;
}

.tma-menu-toggle span {
	width: 28px;
	height: 3px;
	background: var(--tma-text-primary);
	border-radius: 2px;
	transition: var(--tma-transition);
}

.tma-menu-toggle.tma-active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 4px);
}

.tma-menu-toggle.tma-active span:nth-child(2) {
	opacity: 0;
}

.tma-menu-toggle.tma-active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* === HERO SECTION === */
.tma-hero {
	background: linear-gradient(
			rgba(255, 255, 255, 0.7),
			rgba(250, 250, 250, 0.7)
		),
		url('assets/tma-hero.webp') center/cover;
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
	justify-content: center;
	display: flex;
	align-items: center;
	min-height: 100vh;
	background-attachment: fixed;
}

.tma-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.tma-hero-left h1 {
	margin-bottom: 1.5rem;
	animation: tma-fade-up 0.8s ease-out;
}

.tma-hero-subtitle {
	font-size: 1.25rem;
	color: var(--tma-text-secondary);
	margin-bottom: 2rem;
	line-height: 1.8;
	animation: tma-fade-up 0.8s ease-out 0.2s backwards;
}

.tma-hero-cta {
	animation: tma-fade-up 0.8s ease-out 0.4s backwards;
}

.tma-hero-right {
	position: relative;
	animation: tma-fade-up 0.8s ease-out 0.3s backwards;
}

.tma-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--tma-radius-lg);
	box-shadow: var(--tma-shadow-lg);
}

/* === SECTION COMMON === */
.tma-section {
	padding: 5rem 0;
}

.tma-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.tma-section-title {
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.tma-section-title::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--tma-accent-coral),
		var(--tma-accent-turquoise)
	);
	border-radius: 2px;
}

.tma-section-subtitle {
	font-size: 1.125rem;
	color: var(--tma-text-secondary);
	max-width: 700px;
	margin: 0 auto;
}

/* === GRID LAYOUTS === */
.tma-grid {
	display: grid;
	gap: 2rem;
}

.tma-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.tma-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.tma-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* === CARDS === */
.tma-card {
	background: var(--tma-white);
	border-radius: var(--tma-radius-md);
	padding: 2rem;
	box-shadow: var(--tma-shadow-sm);
	transition: var(--tma-transition);
	height: 100%;
}

.tma-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--tma-shadow-lg);
}

.tma-card-icon {
	font-size: 3rem;
	color: var(--tma-accent-coral);
	margin-bottom: 1.5rem;
}

.tma-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--tma-text-heading);
}

.tma-card-description {
	color: var(--tma-text-secondary);
	line-height: 1.8;
}

.tma-card-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: var(--tma-radius-sm);
	margin-bottom: 1.5rem;
}

/* === CAROUSEL === */
.tma-carousel {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

.tma-carousel-track {
	display: flex;
	gap: 2rem;
	transition: transform 0.5s ease;
}

.tma-carousel-item {
	/* min-width: calc(100% - 1rem); */
	width: 100%;
	flex-shrink: 0;
	padding: 2rem;
}

.tma-carousel-controls {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.tma-carousel-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--tma-accent-turquoise);
	color: var(--tma-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	box-shadow: var(--tma-shadow-sm);
}

.tma-carousel-btn:hover {
	background: var(--tma-accent-coral);
	transform: scale(1.1);
}

.tma-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.tma-carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ddd;
	transition: var(--tma-transition);
}

.tma-carousel-dot.tma-active {
	background: var(--tma-accent-coral);
	width: 30px;
	border-radius: 6px;
}

/* === TABS === */
.tma-tabs {
	margin-top: 2rem;
}

.tma-tabs-nav {
	display: flex;
	gap: 1rem;
	border-bottom: 2px solid #e0e0e0;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.tma-tab-btn {
	padding: 1rem 2rem;
	color: var(--tma-text-secondary);
	font-weight: 500;
	position: relative;
	background: transparent;
}

.tma-tab-btn::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--tma-accent-coral);
	transition: var(--tma-transition);
}

.tma-tab-btn.tma-active {
	color: var(--tma-accent-coral);
}

.tma-tab-btn.tma-active::after {
	width: 100%;
}

.tma-tab-content {
	display: none;
	animation: tma-fade-in 0.5s ease-out;
}

.tma-tab-content.tma-active {
	display: block;
}

/* === ACCORDION === */
.tma-accordion {
	background: var(--tma-white);
	border-radius: var(--tma-radius-md);
	overflow: hidden;
	box-shadow: var(--tma-shadow-sm);
}

.tma-accordion-item {
	border-bottom: 1px solid #e0e0e0;
}

.tma-accordion-item:last-child {
	border-bottom: none;
}

.tma-accordion-header {
	padding: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: var(--tma-transition);
	background: var(--tma-white);
}

.tma-accordion-header:hover {
	background: var(--tma-bg-light);
}

.tma-accordion-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--tma-text-heading);
}

.tma-accordion-icon {
	font-size: 1.25rem;
	color: var(--tma-accent-coral);
	transition: var(--tma-transition);
}

.tma-accordion-item.tma-active .tma-accordion-icon {
	transform: rotate(180deg);
}

.tma-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.tma-accordion-body {
	padding: 1rem 1.5rem 1.5rem;
	color: var(--tma-text-secondary);
	line-height: 1.8;
}

/* === TIMELINE === */
.tma-timeline {
	position: relative;
	padding-left: 3rem;
}

.tma-timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		180deg,
		var(--tma-accent-coral),
		var(--tma-accent-turquoise)
	);
}

.tma-timeline-item {
	position: relative;
	margin-bottom: 3rem;
	padding-left: 1rem;
}

.tma-timeline-item::before {
	content: '';
	position: absolute;
	left: -58px;
	top: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--tma-accent-coral);
	border: 3px solid var(--tma-white);
	box-shadow: 0 0 0 3px var(--tma-bg-light);
}

.tma-timeline-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--tma-text-heading);
}

.tma-timeline-description {
	color: var(--tma-text-secondary);
	line-height: 1.8;
}

/* === FORMS === */
.tma-form {
	background: var(--tma-white);
	padding: 2rem;
	border-radius: var(--tma-radius-md);
	box-shadow: var(--tma-shadow-sm);
}

.tma-form-group {
	margin-bottom: 1.5rem;
}

.tma-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--tma-text-heading);
}

.tma-form-input,
.tma-form-textarea,
.tma-form-select {
	width: 100%;
	padding: 1rem;
	border: 2px solid #e0e0e0;
	border-radius: var(--tma-radius-sm);
	font-size: 1rem;
	transition: var(--tma-transition);
	background: var(--tma-white);
}

.tma-form-input:focus,
.tma-form-textarea:focus,
.tma-form-select:focus {
	border-color: var(--tma-accent-turquoise);
	box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.tma-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.tma-form-error {
	color: var(--tma-accent-coral);
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.tma-form-group.tma-error .tma-form-error {
	display: block;
}

.tma-form-group.tma-error .tma-form-input,
.tma-form-group.tma-error .tma-form-textarea {
	border-color: var(--tma-accent-coral);
}

.tma-form-submit {
	width: 100%;
	padding: 1.25rem;
	background: var(--tma-accent-coral);
	color: var(--tma-white);
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: var(--tma-radius-sm);
	cursor: pointer;
	transition: var(--tma-transition);
}

.tma-form-submit:hover {
	background: #ff5252;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.tma-form-submit:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
}

/* === MAP === */
.tma-map-container {
	width: 100%;
	height: 100%;
	border-radius: var(--tma-radius-md);
	overflow: hidden;
	box-shadow: var(--tma-shadow-md);
}

.tma-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.tma-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.tma-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.tma-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;
}

/* === CONTACT SECTION === */
.tma-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
}

.tma-contact-info {
	background: var(--tma-white);
	padding: 2rem;
	border-radius: var(--tma-radius-md);
	box-shadow: var(--tma-shadow-sm);
}

.tma-contact-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	align-items: flex-start;
}

.tma-contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--tma-accent-coral),
		var(--tma-accent-turquoise)
	);
	color: var(--tma-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.tma-contact-details h4 {
	margin-bottom: 0.5rem;
}

.tma-contact-details p {
	color: var(--tma-text-secondary);
	margin: 0;
}

/* === FOOTER === */
.tma-footer {
	background: var(--tma-bg-light);
	padding: 4rem 0 0;
	border-top: 1px solid #e0e0e0;
}

.tma-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.tma-footer-section h4 {
	margin-bottom: 1.5rem;
	color: var(--tma-text-heading);
}

.tma-footer-section p {
	color: var(--tma-text-secondary);
	line-height: 1.8;
}

.tma-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.tma-footer-link {
	color: var(--tma-text-secondary);
	transition: var(--tma-transition);
	display: inline-block;
}

.tma-footer-link:hover {
	color: var(--tma-accent-coral);
	padding-left: 0.5rem;
}

.tma-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	color: var(--tma-text-secondary);
}

.tma-footer-contact-item i {
	color: var(--tma-accent-turquoise);
	margin-top: 0.25rem;
}

.tma-footer-bottom {
	border-top: 1px solid #e0e0e0;
	padding: 2rem 0;
	text-align: center;
	color: var(--tma-text-secondary);
	font-size: 0.875rem;
}

/* === COOKIE POPUP === */
.tma-cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	max-width: 600px;
	background: var(--tma-white);
	padding: 2rem;
	border-radius: var(--tma-radius-md);
	box-shadow: var(--tma-shadow-lg);
	z-index: 9999;
	display: none;
	animation: tma-slide-up 0.5s ease-out;
}

.tma-cookie-popup.tma-show {
	display: block;
}

.tma-cookie-content {
	margin-bottom: 1.5rem;
}

.tma-cookie-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--tma-text-heading);
}

.tma-cookie-text {
	color: var(--tma-text-secondary);
	line-height: 1.7;
	margin-bottom: 0.5rem;
}

.tma-cookie-link {
	color: var(--tma-accent-turquoise);
	text-decoration: underline;
}

.tma-cookie-link:hover {
	color: var(--tma-accent-coral);
}

.tma-cookie-actions {
	display: flex;
	gap: 1rem;
}

/* === ANIMATIONS === */
@keyframes tma-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes tma-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tma-slide-up {
	from {
		transform: translateY(100px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes tma-slide-right {
	from {
		transform: translateX(-50px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes tma-zoom-in {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* Scroll Animation Classes */
.tma-animate-fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.tma-animate-fade-up.tma-visible {
	opacity: 1;
	transform: translateY(0);
}

.tma-animate-slide-right {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.tma-animate-slide-right.tma-visible {
	opacity: 1;
	transform: translateX(0);
}

.tma-animate-zoom-in {
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.tma-animate-zoom-in.tma-visible {
	opacity: 1;
	transform: scale(1);
}

/* === UTILITY CLASSES === */
.tma-text-center {
	text-align: center;
}

.tma-text-left {
	text-align: left;
}

.tma-text-right {
	text-align: right;
}

.tma-mt-1 {
	margin-top: 1rem;
}
.tma-mt-2 {
	margin-top: 2rem;
}
.tma-mt-3 {
	margin-top: 3rem;
}
.tma-mt-4 {
	margin-top: 4rem;
}

.tma-mb-1 {
	margin-bottom: 1rem;
}
.tma-mb-2 {
	margin-bottom: 2rem;
}
.tma-mb-3 {
	margin-bottom: 3rem;
}
.tma-mb-4 {
	margin-bottom: 4rem;
}

.tma-pt-1 {
	padding-top: 1rem;
}
.tma-pt-2 {
	padding-top: 2rem;
}
.tma-pt-3 {
	padding-top: 3rem;
}
.tma-pt-4 {
	padding-top: 4rem;
}

.tma-pb-1 {
	padding-bottom: 1rem;
}
.tma-pb-2 {
	padding-bottom: 2rem;
}
.tma-pb-3 {
	padding-bottom: 3rem;
}
.tma-pb-4 {
	padding-bottom: 4rem;
}

.tma-hidden {
	display: none !important;
}

.tma-visible {
	display: block !important;
}

/* === TEAM SECTION === */
.tma-team-card {
	background: var(--tma-white);
	border-radius: var(--tma-radius-md);
	overflow: hidden;
	box-shadow: var(--tma-shadow-sm);
	transition: var(--tma-transition);
	text-align: center;
}

.tma-team-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--tma-shadow-lg);
}

.tma-team-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	background: linear-gradient(
		135deg,
		var(--tma-accent-coral),
		var(--tma-accent-turquoise)
	);
}

.tma-team-info {
	padding: 2rem;
}

.tma-team-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--tma-text-heading);
}

.tma-team-role {
	color: var(--tma-accent-turquoise);
	font-weight: 500;
	margin-bottom: 1rem;
}

.tma-team-description {
	color: var(--tma-text-secondary);
	line-height: 1.7;
}

/* === QUOTE SECTION === */
.tma-quote {
	background: linear-gradient(
		135deg,
		var(--tma-accent-coral),
		var(--tma-accent-turquoise)
	);
	color: var(--tma-white);
	padding: 4rem 2rem;
	border-radius: var(--tma-radius-lg);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.tma-quote::before {
	content: '"';
	position: absolute;
	top: -2rem;
	left: 2rem;
	font-size: 10rem;
	opacity: 0.1;
	font-family: Georgia, serif;
}

.tma-quote-text {
	font-size: 1.75rem;
	font-style: italic;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.tma-quote-author {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	opacity: 0.9;
}

/* === FEATURE HIGHLIGHT === */
.tma-feature-highlight {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.tma-feature-highlight:nth-child(even) {
	direction: rtl;
}

.tma-feature-highlight:nth-child(even) > * {
	direction: ltr;
}

.tma-feature-image {
	width: 100%;
	border-radius: var(--tma-radius-lg);
	box-shadow: var(--tma-shadow-md);
	height: 100%;
	object-fit: cover;
}

.tma-feature-content h3 {
	margin-bottom: 1rem;
}

.tma-feature-list {
	margin-top: 1.5rem;
}

.tma-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
	color: var(--tma-text-secondary);
}

.tma-feature-item i {
	color: var(--tma-accent-turquoise);
	font-size: 1.25rem;
	margin-top: 0.25rem;
}

/* === STATS SECTION === */
.tma-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.tma-stat-item {
	text-align: center;
	padding: 2rem;
	background: var(--tma-white);
	border-radius: var(--tma-radius-md);
	box-shadow: var(--tma-shadow-sm);
}

.tma-stat-number {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--tma-accent-coral),
		var(--tma-accent-turquoise)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.tma-stat-label {
	color: var(--tma-text-secondary);
	font-size: 1.125rem;
}

@media (max-width: 1024px) {
	.tma-feature-highlight {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tma-feature-highlight:nth-child(even) {
		direction: ltr;
	}

	.tma-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.tma-stats {
		grid-template-columns: 1fr;
	}

	.tma-quote-text {
		font-size: 1.25rem;
	}
}

/* === ADDITIONAL PAGE STYLES === */
.tma-page-hero {
	background: linear-gradient(
		135deg,
		rgba(255, 107, 107, 0.1),
		rgba(78, 205, 196, 0.1)
	);
	padding: 4rem 0;
	text-align: center;
}

.tma-page-title {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.tma-page-subtitle {
	font-size: 1.25rem;
	color: var(--tma-text-secondary);
	max-width: 700px;
	margin: 0 auto;
}

.tma-breadcrumbs {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	margin-top: 1rem;
	justify-content: center;
}

.tma-breadcrumb-link {
	color: var(--tma-accent-turquoise);
}

.tma-breadcrumb-link:hover {
	color: var(--tma-accent-coral);
}

.tma-breadcrumb-separator {
	color: var(--tma-text-secondary);
}

/* === LEGAL PAGES === */
.tma-legal-content {
	background: var(--tma-white);
	padding: 3rem;
	border-radius: var(--tma-radius-md);
	box-shadow: var(--tma-shadow-sm);
	max-width: 900px;
	margin: 0 auto;
}

.tma-legal-content h2 {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.tma-legal-content h3 {
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.tma-legal-content p {
	margin-bottom: 1rem;
	line-height: 1.8;
}

.tma-legal-content ul,
.tma-legal-content ol {
	list-style: disc;
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.tma-legal-content li {
	margin-bottom: 0.5rem;
	line-height: 1.7;
	color: var(--tma-text-secondary);
}

/* === GUIDE CARDS === */
.tma-guide-card {
	background: var(--tma-white);
	border-radius: var(--tma-radius-md);
	overflow: hidden;
	box-shadow: var(--tma-shadow-sm);
	transition: var(--tma-transition);
	display: flex !important;
	flex-direction: column;
	height: 100%;
}

.tma-guide-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--tma-shadow-lg);
}

.tma-guide-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	background: linear-gradient(
		135deg,
		var(--tma-accent-coral),
		var(--tma-accent-turquoise)
	);
}

.tma-guide-content {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.tma-guide-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--tma-text-heading);
}

.tma-guide-description {
	color: var(--tma-text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.tma-guide-meta {
	display: flex;
	gap: 1.5rem;
	margin-top: auto;
	font-size: 0.875rem;
	color: var(--tma-text-secondary);
}

.tma-guide-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tma-guide-meta-item i {
	color: var(--tma-accent-turquoise);
}

/* === TIPS GRID === */
.tma-tips-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.tma-tip-card {
	background: var(--tma-white);
	padding: 2rem;
	border-radius: var(--tma-radius-md);
	border-left: 4px solid var(--tma-accent-coral);
	box-shadow: var(--tma-shadow-sm);
	transition: var(--tma-transition);
}

.tma-tip-card:hover {
	transform: translateX(8px);
	box-shadow: var(--tma-shadow-md);
}

.tma-tip-number {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--tma-accent-coral),
		var(--tma-accent-turquoise)
	);
	color: var(--tma-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.tma-tip-title {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: var(--tma-text-heading);
}

.tma-tip-description {
	color: var(--tma-text-secondary);
	line-height: 1.7;
}

@media (max-width: 768px) {
	.tma-tips-grid {
		grid-template-columns: 1fr;
	}

	.tma-legal-content {
		padding: 2rem 1.5rem;
	}

	.tma-page-title {
		font-size: 2rem;
	}
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.tma-hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.tma-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.tma-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tma-contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 14px;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.tma-container,
	.tma-container-wide,
	.tma-container-narrow {
		padding: 0 1.5rem;
	}

	.tma-header-top-content {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}

	.tma-header-contact {
		flex-direction: column;
		gap: 0.5rem;
	}

	.tma-menu-toggle {
		display: flex;
	}

	.tma-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 280px;
		height: 100vh;
		background: var(--tma-white);
		flex-direction: column;
		padding: 5rem 2rem 2rem;
		box-shadow: var(--tma-shadow-lg);
		transition: left 0.4s ease;
		z-index: 999;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.tma-nav.tma-active {
		left: 0;
	}

	.tma-nav-link {
		font-size: 1.125rem;
		width: 100%;
	}

	.tma-hero {
		padding: 3rem 0;
	}

	.tma-section {
		padding: 3rem 0;
	}

	.tma-grid-2,
	.tma-grid-3,
	.tma-grid-4 {
		grid-template-columns: 1fr;
	}

	.tma-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tma-tabs-nav {
		white-space: nowrap;
		flex-direction: column;
	}

	.tma-tab-btn {
		padding: 0.75rem 1.5rem;
	}

	.tma-cookie-popup {
		bottom: 1rem;
		left: 1rem;
		right: 1rem;
		padding: 1.5rem;
	}

	.tma-cookie-actions {
		flex-direction: column;
	}

	.tma-timeline {
		padding-left: 2rem;
	}

	.tma-timeline-item::before {
		left: -38px;
	}

	.tma-header-top {
		display: none;
	}
}

@media (max-width: 480px) {
	.tma-btn {
		padding: 0.875rem 1.5rem;
		font-size: 0.875rem;
	}

	.tma-btn-large {
		padding: 1rem 1.75rem;
		font-size: 1rem;
	}

	.tma-logo {
		font-size: 1.5rem;
	}

	.tma-section-header {
		margin-bottom: 2rem;
	}

	.tma-card {
		padding: 1.5rem;
	}

	.tma-page-title {
		font-size: 1.5rem;
	}
}

:root {
	--tma-color-bg-primary: #f4f6f8;
	--tma-color-bg-secondary: #ffffff;
	--tma-color-accent-primary: #ff6b6b;
	--tma-color-accent-secondary: #4ecdc4;
	--tma-color-divider: #556270;
	--tma-color-text-primary: #333333;
	--tma-color-text-secondary: #666666;
	--tma-color-text-heading: #222222;

	--tma-spacing-xs: 8px;
	--tma-spacing-sm: 12px;
	--tma-spacing-md: 16px;
	--tma-spacing-lg: 24px;
	--tma-spacing-xl: 32px;
	--tma-spacing-2xl: 48px;

	--tma-border-radius-sm: 6px;
	--tma-border-radius-md: 8px;
	--tma-border-radius-lg: 12px;

	--tma-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
	--tma-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
	--tma-shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.15);

	--tma-transition-fast: 0.2s ease-in-out;
	--tma-transition-normal: 0.3s ease-in-out;
	--tma-transition-slow: 0.5s ease-in-out;
}

.tma-legal-container {
	width: 100%;
	min-height: 100vh;
	padding: var(--tma-spacing-xl);
	background: linear-gradient(
		135deg,
		var(--tma-color-bg-primary) 0%,
		#eceff3 100%
	);
}

.tma-legal-content {
	max-width: 900px;
	margin: 0 auto;
	background-color: var(--tma-color-bg-secondary);
	border-radius: var(--tma-border-radius-lg);
	box-shadow: var(--tma-shadow-medium);
	overflow: hidden;
	animation: tma-legal-fade-in 0.6s ease-out;
}

@keyframes tma-legal-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================
   HEADER STYLES
   ============================================ */

.tma-legal-header {
	background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
	color: #ffffff;
	padding: var(--tma-spacing-2xl);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.tma-legal-header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 1px,
		transparent 1px
	);
	background-size: 50px 50px;
	animation: tma-legal-pulse 20s linear infinite;
}

@keyframes tma-legal-pulse {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(50px, 50px);
	}
}

.tma-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: var(--tma-spacing-md);
	letter-spacing: -0.5px;
	position: relative;
	z-index: 1;
	line-height: 1.2;
	color: #fff;
}

.tma-legal-header .tma-legal-subtitle {
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: var(--tma-spacing-sm);
	opacity: 0.95;
	position: relative;
	z-index: 1;
}

.tma-legal-meta {
	font-size: 0.9rem;
	opacity: 0.85;
	position: relative;
	z-index: 1;
	font-weight: 400;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.tma-legal-intro {
	padding: var(--tma-spacing-2xl);
	background: linear-gradient(
		135deg,
		rgba(78, 205, 196, 0.05) 0%,
		rgba(255, 107, 107, 0.05) 100%
	);
	border-bottom: 2px solid var(--tma-color-bg-primary);
}

.tma-legal-intro .tma-legal-text {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--tma-color-text-secondary);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.tma-legal-section {
	padding: var(--tma-spacing-xl) var(--tma-spacing-2xl);
	border-bottom: 1px solid var(--tma-color-bg-primary);
	transition: background-color var(--tma-transition-fast);
}

.tma-legal-section:last-of-type {
	border-bottom: none;
}

.tma-legal-section:hover {
	background-color: rgba(78, 205, 196, 0.02);
}

.tma-legal-point {
	animation: tma-legal-slide-in 0.5s ease-out forwards;
	opacity: 0;
}

.tma-legal-section:nth-child(1) .tma-legal-point {
	animation-delay: 0.1s;
}
.tma-legal-section:nth-child(2) .tma-legal-point {
	animation-delay: 0.15s;
}
.tma-legal-section:nth-child(3) .tma-legal-point {
	animation-delay: 0.2s;
}
.tma-legal-section:nth-child(4) .tma-legal-point {
	animation-delay: 0.25s;
}
.tma-legal-section:nth-child(5) .tma-legal-point {
	animation-delay: 0.3s;
}
.tma-legal-section:nth-child(6) .tma-legal-point {
	animation-delay: 0.35s;
}
.tma-legal-section:nth-child(7) .tma-legal-point {
	animation-delay: 0.4s;
}
.tma-legal-section:nth-child(8) .tma-legal-point {
	animation-delay: 0.45s;
}
.tma-legal-section:nth-child(9) .tma-legal-point {
	animation-delay: 0.5s;
}

@keyframes tma-legal-slide-in {
	from {
		opacity: 0;
		transform: translateX(-10px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ============================================
   TYPOGRAPHY - HEADINGS
   ============================================ */

.tma-legal-subtitle-h2 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--tma-color-text-heading);
	margin-bottom: var(--tma-spacing-lg);
	padding-bottom: var(--tma-spacing-md);
	border-bottom: 3px solid var(--tma-color-accent-secondary);
	display: inline-block;
	position: relative;
}

.tma-legal-subtitle-h2::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	height: 3px;
	width: 0;
	background: var(--tma-color-accent-primary);
	border-radius: var(--tma-border-radius-sm);
	transition: width var(--tma-transition-normal);
}

.tma-legal-section:hover .tma-legal-subtitle-h2::before {
	width: 100%;
}

/* ============================================
   TYPOGRAPHY - TEXT
   ============================================ */

.tma-legal-text {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--tma-color-text-secondary);
	margin-bottom: var(--tma-spacing-md);
	text-align: justify;
	text-align-last: left;
}

.tma-legal-text-small {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--tma-color-text-secondary);
	text-align: center;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.tma-legal-footer {
	background: linear-gradient(135deg, #556270 0%, #3d4654 100%);
	color: #ffffff;
	padding: var(--tma-spacing-2xl);
	text-align: center;
	border-top: 4px solid var(--tma-color-accent-secondary);
}

.tma-legal-footer .tma-legal-text-small {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
}

/* ============================================
   ACCENT ELEMENTS
   ============================================ */

.tma-legal-subtitle-h2::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--tma-color-accent-primary),
		var(--tma-color-accent-secondary)
	);
	margin-top: var(--tma-spacing-md);
	border-radius: var(--tma-border-radius-sm);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
	.tma-legal-container {
		padding: var(--tma-spacing-lg);
	}

	.tma-legal-header {
		padding: var(--tma-spacing-xl);
	}

	.tma-legal-title {
		font-size: 1.8rem;
	}

	.tma-legal-header .tma-legal-subtitle {
		font-size: 1rem;
	}

	.tma-legal-intro,
	.tma-legal-section {
		padding: var(--tma-spacing-lg) var(--tma-spacing-lg);
	}

	.tma-legal-subtitle-h2 {
		font-size: 1.2rem;
	}

	.tma-legal-text {
		font-size: 0.95rem;
		line-height: 1.7;
	}
}

@media (max-width: 480px) {
	.tma-legal-container {
		padding: var(--tma-spacing-md);
	}

	.tma-legal-content {
		border-radius: var(--tma-border-radius-md);
	}

	.tma-legal-header {
		padding: var(--tma-spacing-lg);
		text-align: left;
	}

	.tma-legal-title {
		font-size: 1.3rem;
		margin-bottom: var(--tma-spacing-sm);
	}

	.tma-legal-header .tma-legal-subtitle {
		font-size: 0.95rem;
	}

	.tma-legal-intro,
	.tma-legal-section {
		padding: var(--tma-spacing-md) var(--tma-spacing-md);
	}

	.tma-legal-footer {
		padding: var(--tma-spacing-lg);
	}

	.tma-legal-subtitle-h2 {
		font-size: 1.1rem;
		margin-bottom: var(--tma-spacing-md);
	}

	.tma-legal-text {
		font-size: 0.9rem;
		line-height: 1.6;
		text-align: left;
	}

	.tma-legal-text-small {
		font-size: 0.85rem;
	}
}
