/* Footer + floating + sticky bar */

.tat-footer {
	background: #101828;
	color: #D0D5DD;
	padding: 64px 0 0;
	font-size: 0.94rem;
}

.tat-footer a {
	color: #F2F4F7;
	text-decoration: none;
	font-size: 0.94rem;
}

.tat-footer a:hover {
	color: inherit;
}

.tat-footer__grid {
	display: grid;
	grid-template-columns: 1.45fr 1fr 1fr 1fr;
	gap: 36px;
	padding-bottom: 48px;
}

.tat-footer__logo {
	display: inline-block;
	margin-bottom: 14px;
	line-height: 0;
}

.tat-footer__logo img {
	display: block;
	height: 48px;
	width: auto;
	max-width: 200px;
}

.tat-footer__intro {
	margin-bottom: 18px;
	max-width: 36ch;
	color: #98A2B3;
	line-height: 1.65;
	font-size: 0.94rem;
}

.tat-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}

.tat-footer__social-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #ffffff !important;
	background: transparent;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.tat-footer__social-btn:hover,
.tat-footer__social-btn:focus-visible {
	background: rgba(206, 17, 38, 0.2);
	border-color: var(--tat-accent);
	color: #ffffff !important;
	transform: translateY(-1px);
	background-size: 0 0 !important;
}

.tat-footer__phone {
	display: none;
}

.tat-footer__heading {
	font-size: 1.05rem;
	color: var(--tat-accent);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 14px;
	font-family: var(--tat-font-display);
	font-weight: 700;
}

.tat-footer__heading--desktop {
	display: block;
}

.tat-footer__toggle {
	display: none;
	width: 100%;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 14px 0;
	text-align: left;
	cursor: pointer;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: #ffffff;
}

.tat-footer__icon {
	color: #ffffff;
	font-size: 1.2rem;
	line-height: 1;
	flex-shrink: 0;
}

.tat-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.tat-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	padding: 16px 0;
	background: #0A1D3F;
}

.tat-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 8px 24px;
	font-size: 0.84rem;
	color: #ffffff;
}

.tat-footer__bottom p {
	margin: 0;
	color: #ffffff;
}

.tat-footer__legal a {
	color: #ffffff;
}

.tat-footer__credit {
	color: rgba(255, 255, 255, 0.9);
}

.tat-footer__credit a {
	color: #ffffff;
	font-weight: 600;
}

/* Floating WhatsApp */
.tat-float {
	position: fixed;
	right: 22px;
	bottom: 28px;
	z-index: 900;
	display: grid;
	gap: 12px;
}

.tat-float__top,
.tat-float__wa {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tat-float__top {
	background: var(--tat-primary);
	color: var(--tat-white);
	font-size: 1.1rem;
}

.tat-float__top:hover,
.tat-float__wa:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.tat-float__wa {
	background: #25d366;
	color: #fff;
}

.tat-float__wa:hover {
	background: #1ebe57;
	color: #fff;
}

.tat-float__wa-icon {
	display: block;
}

.tat-sticky-bar {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 950;
	background: #0A1D3F;
	border-top: 0;
	margin: 0;
}

.tat-sticky-bar__item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 8px;
	color: #ffffff !important;
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: #0A1D3F;
	background-image: none !important;
}

.tat-sticky-bar__item--wa {
	background: #25d366;
	color: #ffffff !important;
}

.tat-sticky-bar__item--quote {
	background: var(--tat-accent);
	color: #ffffff !important;
}

@media (max-width: 991px) {
	.tat-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.tat-footer {
		padding-top: 40px;
		padding-bottom: 0;
		background: #101828;
	}

	.tat-footer__grid {
		grid-template-columns: 1fr;
		gap: 8px;
		padding-bottom: 24px;
	}

	.tat-footer__brand {
		padding-bottom: 16px;
	}

	.tat-footer__heading--desktop {
		display: none;
	}

	.tat-footer__toggle {
		display: flex;
		color: #ffffff;
	}

	.tat-footer__toggle span {
		color: #ffffff;
	}

	.tat-footer__icon {
		color: #ffffff;
	}

	.tat-footer__col .tat-footer__links {
		display: none;
		padding: 4px 0 14px;
		gap: 8px;
	}

	.tat-footer__col.is-open .tat-footer__links {
		display: grid;
	}

	.tat-footer__bottom {
		/* Clear sticky Call/WhatsApp bar so credit stays visible */
		padding: 18px 0 calc(72px + env(safe-area-inset-bottom, 0px));
		background: #0A1D3F;
		margin: 0;
	}

	.tat-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
		align-items: center;
		gap: 10px;
	}

	.tat-footer__credit {
		display: block;
		visibility: visible;
		opacity: 1;
		position: relative;
		z-index: 1;
	}

	.tat-float {
		bottom: calc(72px + env(safe-area-inset-bottom, 0px));
		right: 14px;
	}

	.tat-float__top,
	.tat-float__wa {
		width: 50px;
		height: 50px;
	}

	/* Sticky bar already includes WhatsApp on mobile */
	.tat-float__wa {
		display: none;
	}

	.tat-sticky-bar {
		display: flex;
		padding-bottom: env(safe-area-inset-bottom, 0px);
		background: #0A1D3F;
		box-shadow: none;
	}
}
