.tn-contact {
	margin: 4rem auto;
	max-width: 1200px;
	padding: clamp(2.5rem, 5vw, 4rem);
	border-radius: 32px;
	background: linear-gradient(145deg, rgba(67, 100, 247, 0.08), rgba(13, 20, 39, 0.04));
	box-shadow: 0 26px 48px rgba(15, 23, 42, 0.12);
	color: #0f172a;
	display: grid;
	gap: clamp(2rem, 4vw, 3.5rem);
	font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

.tn-contact__header {
	display: grid;
	gap: 1.25rem;
}

.tn-contact__header-lead {
	margin: 0;
	font-size: clamp(1rem, 2vw, 1.15rem);
	line-height: 1.75;
	color: rgba(15, 23, 42, 0.82);
}

.tn-contact__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	color: #0b1226;
}

.tn-contact__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: 0 6px 15px rgba(15, 23, 42, 0.08);
	font-size: 0.95rem;
	font-weight: 600;
	color: #0b1226;
	width: fit-content;
}

.tn-contact__badge span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.tn-contact__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: #1f5ff9;
	color: #fff;
	font-size: 1rem;
}

.tn-contact__microcopy {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	font-size: 0.95rem;
}

.tn-contact__quick-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
}

.tn-contact__quick-card {
	position: relative;
	padding: 1.5rem;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(15, 23, 42, 0.08);
	display: grid;
	gap: 0.65rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	isolation: isolate;
}

.tn-contact__quick-card:hover,
.tn-contact__quick-card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 24px 45px rgba(15, 23, 42, 0.12);
}

.tn-contact__quick-icon {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(67, 100, 247, 0.18), rgba(67, 100, 247, 0.32));
	color: #0b1226;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.tn-contact__quick-title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 600;
	color: #0b1226;
}

.tn-contact__quick-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	color: rgba(15, 23, 42, 0.7);
}

.tn-contact__tooltip {
	position: absolute;
	inset-inline-end: 1.25rem;
	top: 1.25rem;
	font-size: 0.85rem;
	padding: 0.35rem 0.55rem;
	border-radius: 999px;
	background: rgba(31, 95, 249, 0.14);
	color: #0b1226;
}

.tn-contact__quick-action {
	margin-top: 0.25rem;
	font-weight: 600;
	color: #1f5ff9;
	text-decoration: none;
}

.tn-contact__body {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

.tn-contact__form {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
	padding: clamp(1.75rem, 3vw, 2.5rem);
	display: grid;
	gap: 1.5rem;
	position: relative;
}

.tn-contact__form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem 1rem;
}

.tn-contact__field {
	display: grid;
	gap: 0.45rem;
}

.tn-contact__field--span-2 {
	grid-column: 1 / -1;
}

.tn-contact__field label {
	font-weight: 600;
	font-size: 0.95rem;
	color: rgba(15, 23, 42, 0.85);
}

.tn-contact__input,
.tn-contact__select,
.tn-contact__textarea {
	width: 100%;
	padding: 0.75rem 0.9rem;
	border-radius: 14px;
	border: 1px solid rgba(15, 23, 42, 0.16);
	background: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	line-height: 1.4;
	color: #0b1226;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tn-contact__input:focus,
.tn-contact__select:focus,
.tn-contact__textarea:focus {
	border-color: #1f5ff9;
	box-shadow: 0 0 0 3px rgba(31, 95, 249, 0.2);
	background: #fff;
	outline: none;
}

.tn-contact__textarea {
	min-height: 140px;
	resize: vertical;
}

.tn-contact__guests {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.tn-contact__error {
	font-size: 0.85rem;
	color: #d12953;
	display: none;
}

.tn-contact__field.is-invalid .tn-contact__error {
	display: block;
}

.tn-contact__checkboxes {
	display: grid;
	gap: 0.75rem;
}

.tn-contact__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.9rem;
	line-height: 1.4;
	color: rgba(15, 23, 42, 0.78);
}

.tn-contact__checkbox input {
	margin-top: 0.3rem;
	accent-color: #1f5ff9;
}

.tn-contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.tn-contact__submit,
.tn-contact__secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	border-radius: 16px;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	cursor: default;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tn-contact__submit {
	background: linear-gradient(135deg, #1f5ff9, #4364f7);
	color: #fff;
	box-shadow: 0 18px 35px rgba(31, 95, 249, 0.26);
}

.tn-contact__submit:hover,
.tn-contact__submit:focus {
	transform: translateY(-2px);
	box-shadow: 0 22px 45px rgba(31, 95, 249, 0.32);
}

.tn-contact__secondary {
	background: rgba(15, 23, 42, 0.06);
	color: #0b1226;
	border: 1px solid rgba(15, 23, 42, 0.12);
	text-decoration: none;
}

.tn-contact__secondary:hover,
.tn-contact__secondary:focus {
	background: rgba(31, 95, 249, 0.14);
	border-color: rgba(31, 95, 249, 0.32);
}

.tn-contact__info {
	display: grid;
	gap: 1.25rem;
}

.tn-contact__info-card {
	background: rgba(255, 255, 255, 0.92);
	padding: 1.5rem;
	border-radius: 20px;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
	display: grid;
	gap: 0.75rem;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.tn-contact__info-card h3 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
	color: #0b1226;
}

.tn-contact__info-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.35rem;
	font-size: 0.95rem;
	color: rgba(15, 23, 42, 0.8);
}

.tn-contact__info-card a {
	color: #1f5ff9;
	text-decoration: none;
	font-weight: 600;
}

.tn-contact__map {
	display: grid;
	gap: 1.5rem;
}

.tn-contact__map-embed {
	position: relative;
	padding-bottom: 56.25%;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 18px 35px rgba(15, 23, 42, 0.1);
}

.tn-contact__map-embed iframe,
.tn-contact__map-embed .tn-contact__map-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.tn-contact__map-embed iframe {
	transform: translateY(-24px);
	height: calc(100% + 24px);
}

.tn-contact__map-placeholder {
	display: grid;
	place-items: center;
	background: rgba(15, 23, 42, 0.08);
	color: rgba(15, 23, 42, 0.6);
	font-size: 1.05rem;
}

.tn-contact__locations {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
}

.tn-contact__location-card {
	background: #fff;
	border-radius: 18px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	padding: 1.1rem 1.25rem;
	box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
	display: grid;
	gap: 0.55rem;
	grid-template-rows: auto auto 1fr auto;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tn-contact__location-map {
	position: relative;
	padding-top: 56%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
	outline: none;
	cursor: pointer;
}

.tn-contact__location-card:hover,
.tn-contact__location-card:focus-visible,
.tn-contact__location-card.is-active {
	transform: translateY(-4px);
	box-shadow: 0 18px 32px rgba(31, 95, 249, 0.16);
	border-color: rgba(31, 95, 249, 0.4);
}

.tn-contact__location-map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.tn-contact__location-map iframe {
	transform: translateY(-20px);
	height: calc(100% + 20px);
}

.tn-contact__location-cta {
	justify-self: flex-end;
	margin-top: 0.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.55rem 1.25rem;
	border-radius: 12px;
	background: linear-gradient(135deg, #1f5ff9, #4364f7);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 16px 26px rgba(31, 95, 249, 0.2);
}

.tn-contact__location-cta:hover,
.tn-contact__location-cta:focus-visible {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 20px 32px rgba(31, 95, 249, 0.28);
}

.tn-contact__location-card h4 {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: #0b1226;
}

.tn-contact__location-meta {
	font-size: 0.9rem;
	color: rgba(15, 23, 42, 0.75);
	display: grid;
	gap: 0.35rem;
}

.tn-contact__location-row {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.tn-contact__location-flag {
	font-size: 1.1rem;
}

.tn-contact__location-separator {
	margin: 0 0.15rem;
}

.tn-contact__faq {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
	width: min(100%, 1040px);
	margin: 0 auto;
}

.tn-contact__faq details {
	border-radius: 20px;
	padding: 1.25rem 1.5rem;
	background: #fff;
	color: #0b1226;
	position: relative;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	display: grid;
	align-content: start;
	min-height: 100%;
}

.tn-contact__faq details:hover,
.tn-contact__faq details:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 24px 45px rgba(15, 23, 42, 0.12);
	border-color: rgba(31, 95, 249, 0.28);
}

.tn-contact__faq summary {
	font-weight: 600;
	cursor: pointer;
	outline: none;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.tn-contact__faq summary::-webkit-details-marker {
	display: none;
}

.tn-contact__faq summary::after {
	content: '';
	width: 12px;
	height: 12px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
	transition: transform 0.2s ease;
}

.tn-contact__faq details[open] summary::after {
	transform: rotate(45deg);
}

.tn-contact__faq details[open] summary {
	color: #1f5ff9;
}

.tn-contact__faq details p {
	margin: 0.75rem 0 0;
	color: rgba(15, 23, 42, 0.78);
	line-height: 1.5;
}

.tn-contact__reviews {
	display: grid;
	gap: 1.25rem;
}

.tn-contact__reviews-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
	gap: 1.25rem;
	overflow: hidden;
}

.tn-contact__review {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
	padding: 1.5rem;
	display: grid;
	gap: 0.75rem;
	border: 1px solid rgba(15, 23, 42, 0.08);
}

.tn-contact__review cite {
	font-style: normal;
	font-weight: 600;
	color: #0b1226;
}

.tn-contact__review-source {
	font-size: 0.9rem;
	color: rgba(15, 23, 42, 0.6);
}

.tn-contact__slider-controls {
	display: flex;
	gap: 0.5rem;
}

.tn-contact__slider-control {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: none;
	background: rgba(31, 95, 249, 0.12);
	color: #1f5ff9;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.tn-contact__slider-control:hover,
.tn-contact__slider-control:focus {
	background: #1f5ff9;
	color: #fff;
}

.tn-contact__reviews-link {
	font-weight: 600;
	color: #1f5ff9;
	text-decoration: none;
}

.tn-contact__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	font-size: 0.9rem;
	color: rgba(15, 23, 42, 0.65);
}

.tn-contact__footer a {
	color: inherit;
	text-decoration: none;
	font-weight: 600;
}

@media (max-width: 1024px) {
	.tn-contact__body {
		grid-template-columns: 1fr;
	}

	.tn-contact__info {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}
}

@media (max-width: 720px) {
	.tn-contact {
		padding: 2rem 1.5rem;
	}

	.tn-contact__form-grid {
		grid-template-columns: 1fr;
	}

	.tn-contact__guests {
		grid-template-columns: 1fr;
	}

	.tn-contact__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.tn-contact__submit,
	.tn-contact__secondary {
		width: 100%;
	}

	.tn-contact__reviews-track {
		grid-auto-flow: row;
		grid-auto-rows: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tn-contact *,
	.tn-contact *::before,
	.tn-contact *::after {
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
		animation-duration: 0.01ms !important;
		animation-delay: 0ms !important;
	}
}
