/**
 * Travel Tours — premium footer
 */

/* ── Newsletter CTA band ───────────────────────────────────── */
.tt-footer-cta {
	background: linear-gradient(135deg, var(--tt-primary) 0%, var(--tt-primary-light) 50%, var(--tt-primary-dark) 100%);
	color: #fff;
	padding: 2.75rem 0;
	position: relative;
	overflow: hidden;
}

.tt-footer-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.tt-footer-cta__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
}

@media (max-width: 991.98px) {
	.tt-footer-cta__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.tt-footer-cta__eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--tt-accent);
	margin-bottom: 0.35rem;
}

.tt-footer-cta__title {
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 800;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.tt-footer-cta__text {
	margin: 0;
	opacity: 0.9;
	font-size: 0.95rem;
}

.tt-newsletter-form .input-group {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
}

.tt-newsletter-form .form-control {
	border: none;
	padding: 0.85rem 1.25rem;
	font-size: 0.9375rem;
}

.tt-newsletter-form .form-control:focus {
	box-shadow: none;
}

.tt-newsletter-form .btn-tt-cta {
	border-radius: 0 999px 999px 0 !important;
	padding: 0.85rem 1.5rem;
	white-space: nowrap;
}

.tt-newsletter-note {
	opacity: 0.75;
}

@media (max-width: 575.98px) {
	.tt-newsletter-form .input-group {
		flex-direction: column;
		border-radius: var(--tt-radius);
	}

	.tt-newsletter-form .form-control,
	.tt-newsletter-form .btn-tt-cta {
		border-radius: 0 !important;
		width: 100%;
	}
}

/* ── Main footer ───────────────────────────────────────────── */
.site-footer {
	margin-top: auto;
	flex-shrink: 0;
}

.tt-footer-main {
	background: var(--tt-navy);
	color: rgba(255, 255, 255, 0.88);
	padding: 3.5rem 0 2.5rem;
}

.tt-footer-brand {
	max-width: 320px;
}

.tt-footer-brand__link {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: #fff;
	margin-bottom: 1rem;
	max-width: 100%;
}

.tt-footer-brand__link--logo {
	display: block;
	line-height: 0;
}

.tt-footer-brand__link:hover {
	color: var(--tt-accent);
}

.tt-footer-brand__logo-img,
.tt-footer-brand__link--logo img {
	display: block;
	max-height: 52px;
	max-width: min(220px, 100%);
	width: auto;
	height: auto;
	object-fit: contain;
}

.tt-footer-brand__link img {
	max-height: 52px;
	max-width: min(220px, 100%);
	width: auto;
	height: auto;
	object-fit: contain;
}

.tt-footer-brand__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.5rem;
	background: var(--tt-accent);
	color: var(--tt-navy);
	font-size: 1rem;
}

.tt-footer-brand__name {
	font-weight: 800;
	font-size: 1.25rem;
}

.tt-footer-brand__about {
	font-size: 0.9rem;
	line-height: 1.65;
	opacity: 0.8;
	margin-bottom: 1.25rem;
	max-width: 320px;
}

.tt-footer-social {
	display: flex;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.tt-footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.tt-footer-social__link:hover {
	background: var(--tt-accent);
	color: var(--tt-navy);
	transform: translateY(-2px);
}

.tt-footer-heading {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #fff;
	margin-bottom: 1.15rem;
}

.tt-footer-menu li + li,
.tt-footer-contact li + li {
	margin-top: 0.65rem;
}

.tt-footer-menu a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease, padding-left 0.2s ease;
	display: inline-block;
}

.tt-footer-menu a:hover {
	color: var(--tt-accent);
	padding-left: 4px;
}

.tt-footer-contact li {
	display: flex;
	gap: 0.65rem;
	align-items: flex-start;
	font-size: 0.9rem;
}

.tt-footer-contact i {
	color: var(--tt-accent);
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.tt-footer-contact a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.tt-footer-contact a:hover {
	color: var(--tt-accent);
}

.tt-footer-widgets .widget {
	color: rgba(255, 255, 255, 0.85);
}

.tt-footer-widgets .widget-title {
	color: #fff;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* ── Bottom bar ────────────────────────────────────────────── */
.tt-footer-bottom {
	background: var(--tt-navy);
	color: rgba(255, 255, 255, 0.55);
	padding: 1.15rem 0;
	font-size: 0.8125rem;
}

.tt-footer-bottom__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 1rem;
	align-items: center;
}

@media (max-width: 991.98px) {
	.tt-footer-bottom__inner {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
	}
}

.tt-footer-copyright a {
	color: var(--tt-accent);
	text-decoration: none;
}

.tt-footer-copyright a:hover {
	text-decoration: underline;
}

.tt-footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.25rem;
	justify-content: center;
}

.tt-footer-legal a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tt-footer-legal a:hover {
	color: #fff;
}

.tt-footer-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	justify-content: flex-end;
}

@media (max-width: 991.98px) {
	.tt-footer-trust {
		justify-content: center;
	}
}

.tt-footer-trust__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	white-space: nowrap;
}

.tt-footer-trust__badge i {
	color: var(--tt-accent);
}
