/**
 * True Travel — footer (minimal)
 */

.true-footer {
	margin-top: 0;
	padding: 3rem 0 0;
	color: rgba(255, 255, 255, 0.9);
	background: #122a21;
	border-top: 1px solid rgba(191, 148, 104, 0.35);
}

.true-footer__main {
	display: grid;
	gap: 2rem 2.5rem;
	padding-bottom: 2.25rem;
}

@media (min-width: 768px) {
	.true-footer__main {
		grid-template-columns: 1.4fr 1fr 1.2fr;
		align-items: start;
	}
}

/* Brand */
.true-footer__brand {
	max-width: 340px;
}

.true-footer__desc {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
}

/* Column titles */
.true-footer__title {
	margin: 0 0 1rem;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-gold);
}

/* Links — two aligned columns */
.true-footer__menu-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.45rem 2rem;
	align-items: start;
}

.true-footer__menu {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.true-footer__menu a {
	font-size: 0.9375rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	transition: color 0.2s ease;
}

.true-footer__menu a:hover,
.true-footer__menu a:focus-visible {
	color: var(--color-gold-light);
	text-decoration: none;
	outline: none;
}

/* Contact meta rows — icon inline, no boxes */
.true-footer__meta-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.true-footer__meta {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	transition: color 0.2s ease;
}

a.true-footer__meta:hover,
a.true-footer__meta:focus-visible {
	color: var(--color-gold-light);
	text-decoration: none;
	outline: none;
}

.true-footer__meta .true-icon {
	flex-shrink: 0;
	color: var(--color-gold);
	opacity: 0.95;
}

.true-footer__meta span {
	line-height: 1.45;
}

.true-footer__meta--static {
	cursor: default;
}

/* Bottom bar */
.true-footer__bar {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 1.1rem 0 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
	.true-footer__bar {
		flex-direction: row;
		justify-content: space-between;
	}
}

.true-footer__copy {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.55);
	text-align: center;
}

@media (min-width: 768px) {
	.true-footer__copy {
		text-align: start;
	}
}

.true-footer__social {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.true-footer__social-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.45);
	margin-inline-end: 0.15rem;
}

.true-footer__social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	border-radius: 50%;
	transition: color 0.2s ease, background 0.2s ease;
}

.true-footer__social-btn:hover,
.true-footer__social-btn:focus-visible {
	color: var(--color-gold-light);
	background: rgba(255, 255, 255, 0.06);
	text-decoration: none;
	outline: none;
}

/* WhatsApp float — brand-aligned */
.true-whatsapp-float {
	position: fixed;
	bottom: 1.25rem;
	inset-inline-end: 1.25rem;
	z-index: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	color: #fff;
	text-decoration: none;
	background: var(--color-primary);
	border: 2px solid rgba(191, 148, 104, 0.55);
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.true-whatsapp-float:hover,
.true-whatsapp-float:focus-visible {
	color: #fff;
	text-decoration: none;
	border-color: var(--color-gold);
	box-shadow: 0 6px 24px rgba(30, 77, 58, 0.45);
	transform: translateY(-2px);
	outline: none;
}

.true-whatsapp-float .true-icon {
	display: block;
}

@media (prefers-reduced-motion: reduce) {
	.true-whatsapp-float {
		transition: none;
	}

	.true-whatsapp-float:hover {
		transform: none;
	}
}

/* ── Mobile layout ── */

@media (max-width: 767px) {
	.true-footer {
		padding-top: 2rem;
	}

	.true-footer__main {
		gap: 0;
		padding-bottom: 1.5rem;
	}

	/* Brand — centered stack */
	.true-footer__brand {
		max-width: none;
		text-align: center;
		padding-bottom: 1.5rem;
	}

	.true-footer__desc {
		font-size: 0.875rem;
		line-height: 1.65;
		max-width: 36ch;
		margin-inline: auto;
	}

	/* Sections separated by dividers */
	.true-footer__nav,
	.true-footer__reach {
		padding: 1.25rem 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.true-footer__title {
		margin-bottom: 0.85rem;
	}

	/* Compact 2-column links */
	.true-footer__menu-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.55rem 1.25rem;
	}

	.true-footer__menu {
		gap: 0.55rem;
	}

	.true-footer__menu a {
		font-size: 0.875rem;
	}

	/* Contact rows — full width, long email wraps */
	.true-footer__meta-list {
		gap: 0.65rem;
	}

	.true-footer__meta {
		width: 100%;
		max-width: 100%;
	}

	.true-footer__meta span {
		min-width: 0;
		word-break: break-word;
	}

	/* Bottom bar — room for floating WhatsApp */
	.true-footer__bar {
		gap: 0.85rem;
		padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
	}

	.true-footer__copy {
		font-size: 0.75rem;
		line-height: 1.55;
		max-width: 30ch;
	}

	.true-footer__social {
		flex-wrap: wrap;
		justify-content: center;
	}

	.true-whatsapp-float {
		bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
		inset-inline-end: 1rem;
		width: 48px;
		height: 48px;
	}
}
