/**
 * Site header (tp-site-header), notice strip, desktop mega, mobile drawer.
 * Home: body.tp-home — header over hero, transparent until scroll.
 */

/* --- Layout: remove legacy main-wrapper top padding (sticky header in flow) --- */
#main-wrapper {
	position: relative;
}

/* --- Notice: solid orange stripe with JS-driven white shine sweep --- */
.tp-site-notice {
	position: relative;
    z-index: 1;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
    max-height: 200px;
    overflow: hidden;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
    isolation: isolate;
    background: #f97316;
    padding: 5px 0;
}

/* Shine element — animated by GPU compositor (no JS, no jerk) */
.tp-site-notice__shine {
	position: absolute;
	top: 0;
	left: 0;
	width: 8%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	background: linear-gradient(
		100deg,
		rgba(255, 255, 255, 0)    0%,
		rgba(255, 255, 255, 0.18) 45%,
		rgba(255, 255, 255, 0.45) 50%,
		rgba(255, 255, 255, 0.18) 55%,
		rgba(255, 255, 255, 0)   100%
	);
	mix-blend-mode: screen;
	transform: translate3d(-300%, 0, 0) skewX(-22deg);
	animation: tpNoticeShineGlide 12s linear infinite;
	will-change: transform;
	backface-visibility: hidden;
}

@keyframes tpNoticeShineGlide {
	0%   { transform: translate3d(-300%, 0, 0) skewX(-22deg); }
	78%  { transform: translate3d(1400%, 0, 0) skewX(-22deg); }
	100% { transform: translate3d(1400%, 0, 0) skewX(-22deg); }
}

@media (prefers-reduced-motion: reduce) {
	.tp-site-notice__shine { animation: none; opacity: 0; }
}

.tp-site-notice__row,
.tp-site-notice > .tp-site-notice__row {
	position: relative;
	z-index: 1;
}

.tp-site-notice--collapsed {
	max-height: 0 !important;
	min-height: 0 !important;
	opacity: 0;
	margin: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	border: 0 !important;
	pointer-events: none;
}

.tp-site-notice__row {
	display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px 12px;
}

.tp-site-notice__badge {
	flex-shrink: 0;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	padding: 4px 10px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.tp-site-notice__text {
	flex: 1;
	min-width: 0;
	color: #fff;
	font-weight: 500;
}

.tp-site-notice__text marquee {
	color: inherit;
}
.tp-site-notice__text p{
	color: white;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

/* --- Smooth auto-play ticker (replaces <marquee>) --- */
.tp-ticker {
	overflow: hidden;
	width: 100%;
	position: relative;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.tp-ticker__track {
	display: inline-flex;
	gap: 60px;
	white-space: nowrap;
	animation: tpTickerScroll 28s linear infinite;
	will-change: transform;
}
.tp-ticker:hover .tp-ticker__track {
	animation-play-state: paused;
}
.tp-ticker__item {
	display: inline-block;
	padding-right: 0;
	color: inherit;
}
.tp-ticker__item * {
	color: inherit !important;
}
@keyframes tpTickerScroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.tp-ticker__track { animation-duration: 80s; }
}

.tp-site-notice__up {
	flex-shrink: 0;
	width: 36px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color 0.2s;
}

.tp-site-notice__up:hover {
	background: rgba(255, 255, 255, 0.24);
	border-color: rgba(255, 255, 255, 0.65);
}

.tp-site-notice__reopen {
	position: fixed;
	right: 12px;
	top: calc(env(safe-area-inset-top, 0px) + 10px);
	z-index: 10070;
	width: 36px;
	height: 32px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(185, 28, 28, 0.45);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tp-site-notice__reopen[hidden] {
	display: none !important;
}

body.tp-mnav-open {
	overflow: hidden;
}

/* Notice always stacks above header in document order; no gap when collapsed */
.tp-site-notice + .tp-site-header {
	margin-top: 0;
}

.tp-header-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 68px;
	padding-top: 8px;
	padding-bottom: 8px;
}

/* Logo left — nav + actions grouped on the right */
.tp-header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
	min-width: 0;
	gap: 0;
	margin-left: 12px;
	padding-left: 16px;
	border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.tp-header-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.tp-header-logo__desk {
	max-height: 48px;
	width: auto;
	display: block;
}

.tp-header-logo__mob {
	max-height: 40px;
	width: auto;
	display: none;
}

.tp-dnav {
	display: none;
	flex: 1 1 auto;
	justify-content: flex-end;
	min-width: 0;
}

.tp-dnav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 2px 4px;
}

.tp-dnav__list > li {
	position: relative;
}

.tp-dnav__a {
	display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.tp-dnav__caret {
	font-size: 11px;
	line-height: 1;
	opacity: 0.88;
	margin-top: 1px;
	flex-shrink: 0;
}

.tp-dnav__a:hover,
.tp-dnav__a:focus {
	color: #b91c1c;
	background: rgba(185, 28, 28, 0.06);
}

.tp-dnav__mega:hover > .tp-dnav__a,
.tp-dnav__mega:focus-within > .tp-dnav__a {
	color: #b91c1c;
}

.tp-dnav__dropdown:hover > .tp-dnav__a,
.tp-dnav__dropdown:focus-within > .tp-dnav__a {
	color: #b91c1c;
}

/* Mega panels — viewport-centered on desktop so both columns stay visible */
:root {
	--tp-mega-top: 96px;
}

@media (min-width: 992px) {
	/* Simple nav dropdowns (main destinations + tour shortcuts) */
	.tp-dropdown::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: -10px;
		height: 10px;
	}

	.tp-dropdown {
		position: absolute;
		left: 0;
		top: 100%;
		min-width: 240px;
		max-width: min(320px, calc(100vw - 24px));
		max-height: min(70vh, 420px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		margin-top: 4px;
		padding: 8px 0;
		background: #fff;
		border-radius: 12px;
		box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06), 0 16px 40px rgba(15, 23, 42, 0.14);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(8px);
		transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
		z-index: 10100;
	}

	.tp-dropdown--narrow {
		min-width: 200px;
		max-width: min(260px, calc(100vw - 24px));
		max-height: none;
		overflow: visible;
	}

	.tp-dnav__dropdown:hover .tp-dropdown,
	.tp-dnav__dropdown:focus-within .tp-dropdown {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.tp-dropdown__list {
		list-style: none;
		margin: 0;
		padding: 4px 0;
	}

	.tp-dropdown__list > li {
		margin: 0;
	}

	.tp-dropdown__link {
		display: block;
		padding: 10px 16px;
		font-size: 14px;
		font-weight: 600;
		color: #0f172a;
		text-decoration: none;
		line-height: 1.35;
		transition: background 0.15s ease, color 0.15s ease;
	}

	.tp-dropdown__link:hover,
	.tp-dropdown__link:focus {
		background: rgba(185, 28, 28, 0.08);
		color: #b91c1c;
	}

	.tp-mega::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: -14px;
		height: 14px;
	}

	.tp-mega {
		position: fixed;
        left: 50%;
        width: min(1140px, calc(100vw - 40px));
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translate(-50%, 10px);
        visibility: hidden;
		opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06), 0 28px 56px rgba(15, 23, 42, 0.16);
        z-index: 10100;
	}

	.tp-dnav__mega:hover .tp-mega,
	.tp-dnav__mega:focus-within .tp-mega {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate(-50%, 0);
	}

	/* Holidays mega: compact — tour links only (no destination grid) */
	.tp-mega--tours {
		width: min(440px, calc(100vw - 40px));
		max-height: min(400px, calc(100vh - var(--tp-mega-top, 96px) - 24px));
	}
}

@media (max-width: 991.98px) {
	.tp-mega {
		display: none !important;
	}

	.tp-dropdown {
		display: none !important;
	}
}

.tp-mega__pad {
	padding: 0;
}

.tp-mega__title-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 8px 16px;
	border-radius: 16px 16px 0 0;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.tp-mega--dest .tp-mega__title-row {
	background: linear-gradient(135deg, #f0f9ff 0%, #fff 55%, #fafafa 100%);
	border-bottom-color: rgba(14, 116, 144, 0.12);
}

.tp-mega--tours .tp-mega__title-row {
	background: linear-gradient(135deg, #fffbeb 0%, #fff 50%, #fafafa 100%);
	border-bottom-color: rgba(217, 119, 6, 0.15);
}

.tp-mega__title-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.tp-mega__eyebrow {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #64748b;
}

.tp-mega--dest .tp-mega__eyebrow {
	color: #0e7490;
}

.tp-mega--tours .tp-mega__eyebrow {
	color: #b45309;
}

.tp-mega__title {
	font-size: 1.15rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.tp-mega__all {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: #b91c1c;
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(185, 28, 28, 0.08);
	border: 1px solid rgba(185, 28, 28, 0.2);
	transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.tp-mega__all:hover {
	background: rgba(185, 28, 28, 0.14);
	border-color: rgba(185, 28, 28, 0.35);
	transform: translateY(-1px);
}

.tp-mega__label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #64748b;
	margin: 0 0 10px;
}

.tp-mega--dest .tp-mega-grid {
	padding: 18px 22px 22px;
}

.tp-mega-tours-body {
	padding: 18px 22px 22px;
}

.tp-mega-quick--tours-only {
	max-width: 100%;
}

.tp-mega-grid {
	display: grid;
	gap: 14px 18px;
}

.tp-mega-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tp-mega-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-mega-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tp-mega-grid--tight {
	gap: 10px 12px;
}

.tp-mega-card {
	padding: 14px 16px;
}

.tp-mega-card__title {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 8px;
	font-weight: 800;
	font-size: 14px;
	color: #0f172a;
	text-decoration: none;
	margin-bottom: 10px;
	line-height: 1.35;
}

.tp-mega-card__title .tp-menu-tag--mega {
	text-decoration: none;
	flex-shrink: 0;
}

.tp-mega-card__title:hover {
	color: #0e7490;
}

.tp-mega-card__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tp-mega-card__links li {
	margin: 4px 0;
}

.tp-mega-card__links a {
	font-size: 13px;
	color: #475569;
	text-decoration: none;
}

.tp-mega-card__links a:hover {
	color: #b91c1c;
}

.tp-mega-split {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.tp-mega-split__col {
	flex: 0 0 200px;
}

.tp-mega-split__col--side {
	flex: 0 0 240px;
	max-width: 100%;
}

.tp-mega-split__col--grow {
	flex: 1 1 300px;
	min-width: 0;
}

.tp-mega-quick {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tp-mega-quick li {
	margin: 6px 0;
}

.tp-mega-quick a {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
	text-decoration: none;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid transparent;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.tp-mega-quick a:hover {
	background: #f8fafc;
	color: #b91c1c;
	border-color: #e2e8f0;
}

.tp-mega-quick__primary {
	background: linear-gradient(135deg, #fef2f2 0%, #fff 100%) !important;
	border: 1px solid rgba(185, 28, 28, 0.25) !important;
	font-weight: 800 !important;
	color: #991b1b !important;
}

.tp-mega-quick__primary:hover {
	background: #fff1f2 !important;
	border-color: #b91c1c !important;
	color: #7f1d1d !important;
}

.tp-mega-quick__primary i {
	color: #b91c1c !important;
	font-size: 18px;
}

.tp-mega-quick i {
	width: 22px;
	text-align: center;
	color: #94a3b8;
	font-size: 15px;
}

/* WhatsApp CTA (shared: header bar uses .tp-header-wa__btn) */
.tp-mega-wa__btn {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    padding: 11px 18px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: #fff !important;
    text-decoration: none !important;
    background: #2cc45d;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.tp-mega-wa__btn:hover {
	color: #fff !important;
	transform: translateY(-2px);
}

.tp-mega-wa__btn i {
	font-size: 20px;
	flex-shrink: 0;
}

.tp-mega-wa__num {
	letter-spacing: 0.02em;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 11rem;
}

.tp-header-wa__btn {
	flex-shrink: 1;
	min-width: 0;
	max-width: min(200px, 28vw);
	padding: 9px 14px;
	font-size: 13px;
}

@media (max-width: 1199.98px) {
	.tp-header-wa__btn .tp-mega-wa__num {
		display: none;
	}

	.tp-header-wa__btn {
		max-width: none;
		padding: 10px 12px;
	}
}

.tp-mega-pill {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 11px 14px;
	border-radius: 11px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	font-size: 13px;
	font-weight: 700;
	color: #0f172a;
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.tp-mega-pill:hover {
	border-color: #f59e0b;
	background: #fffbeb;
	color: #b45309;
	transform: translateX(2px);
}

.tp-menu-tag {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 3px 8px;
	border-radius: 4px;
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid rgba(185, 28, 28, 0.2);
}

.tp-menu-tag--mega {
	font-size: 9px;
	padding: 2px 7px;
}

.tp-menu-tag--mnav {
	font-size: 9px;
	padding: 2px 6px;
	vertical-align: middle;
}

.tp-menu-tag--dropdown {
	font-size: 9px;
	padding: 2px 6px;
	vertical-align: middle;
}

/* Actions */
.tp-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	padding-left: 14px;
	margin-left: 10px;
	border-left: 1px solid rgba(15, 23, 42, 0.1);
}

.tp-icon-btn {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 0;
	background: transparent;
	color: #0f172a;
	text-decoration: none;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.2s, color 0.2s;
}

.tp-icon-btn:hover {
	background: #f1f5f9;
	color: #b91c1c;
}

.tp-mnav-burger {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
}

.tp-mnav-burger span {
	display: block;
	height: 2px;
	width: 22px;
	background: #0f172a;
	margin: 0 auto;
	border-radius: 1px;
}

/* Mobile drawer */
.tp-mnav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	z-index: 10080;
}

.tp-mnav-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: min(360px, 92vw);
	height: 100%;
	background: #fff;
	z-index: 10090;
	box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.tp-mnav-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-bottom: 1px solid #e2e8f0;
}

.tp-mnav-drawer__title {
	font-weight: 700;
	font-size: 16px;
	color: #0f172a;
}

.tp-mnav-drawer__close {
	border: 0;
	background: #f1f5f9;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #334155;
}

/* Search overlay sits inside header; raise above mega / drawer */
.tp-site-header .search-overlay {
	z-index: 10120;
}

.tp-mnav-drawer__body {
	overflow-y: auto;
	padding: 12px 16px 24px;
	-webkit-overflow-scrolling: touch;
}

.tp-mnav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tp-mnav-list > li > a {
	display: block;
	padding: 12px 10px;
	font-weight: 600;
	color: #0f172a;
	text-decoration: none;
	border-radius: 8px;
}

.tp-mnav-list > li > a:hover {
	background: #f8fafc;
	color: #b91c1c;
}

.tp-mnav-list__group {
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid #e2e8f0;
}

.tp-mnav-list__cat {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 8px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #64748b;
	margin-bottom: 8px;
	padding-left: 10px;
}

.tp-mnav-list__group ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tp-mnav-list__group ul a {
	display: block;
	padding: 8px 10px 8px 18px;
	font-size: 14px;
	color: #475569;
	text-decoration: none;
	border-radius: 6px;
}

.tp-mnav-list__group ul a:hover {
	color: #b91c1c;
	background: #fef2f2;
}

/* Desktop */
@media (min-width: 992px) {
	.tp-dnav {
		display: flex;
	}

	.tp-mnav-burger {
		display: none;
	}

	.tp-header-logo__desk {
		display: block;
	}

	.tp-header-logo__mob {
		display: none;
	}
}

@media (max-width: 991.98px) {
	.tp-header-logo__desk {
		display: none;
	}

	.tp-header-logo__mob {
		display: block;
	}

	.tp-header-right {
		margin-left: 8px;
		padding-left: 10px;
		gap: 4px;
	}

	.tp-header-actions {
		padding-left: 10px;
		margin-left: 6px;
	}
}


@media (min-width: 992px) {
	body.tp-home #main-wrapper .hero-header.hero_slider.tp-hero-compact {
		margin-top: calc(-1 * var(--tp-home-header-h, 76px));
	}
}

body.tp-home .hero_slider.tp-hero-compact .owl-carousel .item img,
body.tp-home .hero_slider.tp-hero-compact .slider_video_wrap {
	height: 592px;
	min-height: 280px;
}

@media (max-width: 991.98px) {
	body.tp-home .hero_slider.tp-hero-compact .owl-carousel .item img,
	body.tp-home .hero_slider.tp-hero-compact .slider_video_wrap {
		height: min(690px, 70vh);
	}
}

body.tp-home .hero_slider.tp-hero-compact .slider_video_wrap iframe.slider_video {
	height: 100%;
	min-height: 280px;
}

body.tp-home .hero_slider.tp-hero-compact .owl-carousel .item {
	min-height: 0;
}

/* Hero overlay: only when dynamic copy exists — no fade animation on empty */
body.tp-home .tp-hero-compact .slider_text_conainer.tp-hero-overlay--static {
	animation: none;
	opacity: 1;
}

body.tp-home .tp-hero-compact .slider_text_conainer {
	padding: 16px 12px;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	animation: none;
	opacity: 1;
}

@media (max-width: 991.98px) {
	body.tp-home .tp-site-header {
		position: relative;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
	}

	body.tp-home #main-wrapper .hero-header.hero_slider.tp-hero-compact {
		margin-top: 0;
	}

	body.tp-home .tp-site-header .tp-dnav__a {
		color: #0f172a;
		text-shadow: none;
	}

	body.tp-home .tp-site-header .tp-icon-btn,
	body.tp-home .tp-site-header .tp-mnav-burger span {
		color: #0f172a;
		text-shadow: none;
	}

	body.tp-home .tp-site-header .tp-mnav-burger span {
		background: #0f172a;
	}

	body.tp-home .tp-site-header .tp-header-right {
		border-left-color: rgba(15, 23, 42, 0.08);
	}

	body.tp-home .tp-site-header .tp-header-actions {
		border-left-color: rgba(15, 23, 42, 0.1);
	}
}

/* ——— Visa: distinct top-level nav link ——— */
a.tp-dnav__a--visa {
	color: #0369a1;
	font-weight: 800;
	border: 1px solid rgba(3, 105, 161, 0.35);
	background: linear-gradient(180deg, rgba(224, 242, 254, 0.6) 0%, rgba(255, 255, 255, 0.2) 100%) !important;
}
a.tp-dnav__a--visa::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 5px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0ea5e9, #0369a1);
	vertical-align: 1px;
}
a.tp-dnav__a--visa:hover,
a.tp-dnav__a--visa:focus {
	color: #075985;
	border-color: rgba(3, 105, 161, 0.55);
	background: rgba(3, 105, 161, 0.08) !important;
}
body.tp-home .tp-site-header a.tp-dnav__a--visa,
body.tp-home .tp-site-header.header-fixed a.tp-dnav__a--visa {
	color: #075985;
	text-shadow: none;
}
.tp-mnav-list a.tp-mnav-list__visa {
	font-weight: 800;
	color: #0369a1;
}
.tp-mnav-list a.tp-mnav-list__visa:hover,
.tp-mnav-list a.tp-mnav-list__visa:focus {
	color: #075985;
}

body.tp-home .tp-site-header .tp-header-right {
	border-left-color: rgba(15, 23, 42, 0.08);
}
body.tp-home .tp-site-header .tp-header-actions {
	border-left-color: rgba(15, 23, 42, 0.1);
}

body.tp-home .tp-site-header .tp-icon-btn,
body.tp-home .tp-site-header .tp-mnav-burger span {
	color: #0f172a;
	text-shadow: none;
}
body.tp-home .tp-site-header .tp-mnav-burger span {
	background: #0f172a;
}
