:root {
	--tct-ink: #063f4b;
	--tct-ink-soft: #42616a;
	--tct-teal: #07515a;
	--tct-teal-2: #0e7775;
	--tct-green: #128c54;
	--tct-gold: #f7b718;
	--tct-gold-dark: #c98700;
	--tct-cream: #fbf6ec;
	--tct-paper: #ffffff;
	--tct-line: #dce7e5;
	--tct-shadow: 0 14px 34px rgba(7, 81, 90, 0.13);
	--tct-radius: 8px;
	--tct-font: "Inter", Arial, sans-serif;
	--tct-serif: "Lora", Georgia, serif;
}

* {
	box-sizing: border-box;
	letter-spacing: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--tct-cream);
	color: var(--tct-ink);
	font-family: var(--tct-font);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	text-rendering: optimizeLegibility;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--tct-teal-2);
}

button,
input,
select,
textarea {
	font: inherit;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.skip-link:focus {
	background: var(--tct-gold);
	clip: auto;
	clip-path: none;
	color: var(--tct-ink);
	height: auto;
	left: 12px;
	padding: 10px 14px;
	top: 12px;
	width: auto;
	z-index: 1000;
}

.tct-container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
	width: 100%;
}

.site-main {
	min-height: 60vh;
}

.site-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(6, 63, 75, 0.08);
	box-shadow: 0 6px 24px rgba(6, 63, 75, 0.08);
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 24px;
	min-height: 76px;
}

.site-brand {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 10px;
	min-width: 220px;
}

.site-brand__mark {
	display: inline-grid;
	height: 48px;
	place-items: center;
	width: 58px;
}

.site-brand__mark svg {
	height: 48px;
	width: 58px;
}

.site-brand__text {
	color: var(--tct-ink);
	font-family: var(--tct-serif);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
}

.primary-navigation {
	flex: 1 1 auto;
}

.primary-navigation .menu {
	align-items: center;
	display: flex;
	gap: 6px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-navigation a {
	border-radius: 6px;
	color: var(--tct-ink);
	display: block;
	font-size: 14px;
	font-weight: 800;
	padding: 10px 12px;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
	background: #e8f4ef;
	color: var(--tct-teal);
}

.header-book-btn,
.btn {
	align-items: center;
	border: 0;
	border-radius: var(--tct-radius);
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	gap: 9px;
	justify-content: center;
	line-height: 1;
	min-height: 44px;
	padding: 13px 18px;
	text-align: center;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-book-btn,
.btn--gold {
	background: var(--tct-gold);
	color: var(--tct-ink);
}

.btn--green {
	background: var(--tct-green);
	color: #fff;
}

.btn--teal {
	background: var(--tct-teal);
	color: #fff;
}

.btn--full {
	width: 100%;
}

.header-book-btn:hover,
.btn:hover,
.header-book-btn:focus-visible,
.btn:focus-visible {
	box-shadow: 0 10px 22px rgba(6, 63, 75, 0.18);
	color: inherit;
	transform: translateY(-1px);
}

.btn--green:hover,
.btn--teal:hover {
	color: #fff;
}

.nav-toggle {
	background: transparent;
	border: 0;
	display: none;
	height: 44px;
	padding: 0;
	position: relative;
	width: 44px;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
	background: var(--tct-ink);
	border-radius: 4px;
	content: "";
	display: block;
	height: 2px;
	left: 10px;
	position: absolute;
	right: 10px;
	top: 21px;
}

.nav-toggle__line::before {
	left: 0;
	right: 0;
	top: -8px;
}

.nav-toggle__line::after {
	left: 0;
	right: 0;
	top: 8px;
}

.hero-section {
	min-height: 470px;
	overflow: hidden;
	position: relative;
}

.hero-section__media {
	background:
		linear-gradient(90deg, rgba(4, 50, 63, 0.86) 0%, rgba(4, 50, 63, 0.55) 42%, rgba(4, 50, 63, 0.1) 100%),
		url("../images/hero-sri-lanka.webp") center / cover no-repeat;
	inset: 0;
	position: absolute;
}

.hero-section__content {
	align-items: center;
	display: flex;
	min-height: 470px;
	position: relative;
	z-index: 1;
}

.hero-copy {
	color: #fff;
	max-width: 610px;
	padding: 56px 0 86px;
}

.hero-copy h1,
.tour-hero h1,
.post-hero h1,
.archive-hero h1,
.page-hero h1 {
	font-family: var(--tct-serif);
	font-weight: 700;
	line-height: 1.05;
	margin: 0;
}

.hero-copy h1 {
	font-size: 58px;
	max-width: 620px;
}

.hero-copy p {
	font-size: 19px;
	margin: 18px 0 26px;
	max-width: 500px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.quick-search {
	align-items: end;
	background: var(--tct-paper);
	border: 1px solid rgba(6, 63, 75, 0.08);
	border-radius: var(--tct-radius);
	box-shadow: var(--tct-shadow);
	display: grid;
	gap: 16px;
	grid-template-columns: 1.2fr 1fr 0.8fr auto;
	margin: -48px auto 0;
	padding: 22px;
	position: relative;
	z-index: 5;
}

.quick-search label,
.archive-filter label,
.tct-booking-form label,
.contact-form label {
	display: grid;
	gap: 7px;
}

.quick-search span,
.archive-filter span,
.tct-booking-form span,
.contact-form span {
	color: var(--tct-ink);
	font-size: 13px;
	font-weight: 800;
}

.quick-search input,
.quick-search select,
.archive-filter select,
.tct-booking-form input,
.tct-booking-form select,
.tct-booking-form textarea,
.contact-form input,
.contact-form textarea {
	background: #fff;
	border: 1px solid var(--tct-line);
	border-radius: 6px;
	color: var(--tct-ink);
	min-height: 46px;
	padding: 11px 12px;
	width: 100%;
}

.quick-search input:focus,
.quick-search select:focus,
.archive-filter select:focus,
.tct-booking-form input:focus,
.tct-booking-form select:focus,
.tct-booking-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--tct-teal-2);
	box-shadow: 0 0 0 3px rgba(14, 119, 117, 0.14);
	outline: 0;
}

.home-section,
.archive-content {
	padding: 58px 0;
}

.home-section--compact {
	padding-top: 18px;
}

.section-heading {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 24px;
}

.section-heading--center {
	justify-content: center;
	text-align: center;
}

.section-kicker {
	color: var(--tct-teal-2);
	display: inline-block;
	font-size: 13px;
	font-weight: 900;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.section-heading h2,
.custom-tour-cta h2,
.site-footer__cta h2,
.tour-panel h2,
.booking-panel h2,
.contact-card h2 {
	color: var(--tct-ink);
	font-family: var(--tct-serif);
	font-size: 32px;
	line-height: 1.15;
	margin: 0;
}

.section-link,
.read-more,
.archive-filter__reset {
	color: var(--tct-teal);
	font-size: 14px;
	font-weight: 900;
}

.tour-grid,
.guide-grid {
	display: grid;
	gap: 20px;
}

.tour-grid--home {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.tour-card,
.guide-card,
.transfer-card,
.testimonial-card,
.booking-panel,
.tour-panel,
.contact-card,
.empty-state {
	background: var(--tct-paper);
	border: 1px solid rgba(6, 63, 75, 0.09);
	border-radius: var(--tct-radius);
	box-shadow: 0 12px 26px rgba(6, 63, 75, 0.1);
}

.tour-card {
	overflow: hidden;
}

.tour-card__image {
	aspect-ratio: 4 / 3;
	display: block;
	overflow: hidden;
	position: relative;
}

.tour-card__image img,
.guide-card__image img,
.tour-gallery img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.tour-card__badge,
.tour-hero__badge {
	background: var(--tct-gold);
	border-radius: 6px;
	color: var(--tct-ink);
	font-size: 12px;
	font-weight: 900;
	left: 10px;
	padding: 6px 8px;
	position: absolute;
	top: 10px;
}

.tour-card__body,
.guide-card__body {
	padding: 14px;
}

.tour-card h3,
.guide-card h3,
.transfer-card h3,
.why-item h3 {
	font-size: 16px;
	line-height: 1.25;
	margin: 0 0 8px;
}

.tour-card__rating {
	align-items: center;
	display: flex;
	gap: 6px;
	line-height: 1;
	margin-bottom: 8px;
}

.tct-stars {
	color: var(--tct-gold-dark);
	font-size: 14px;
	white-space: nowrap;
}

.tour-card__duration,
.tour-card__price {
	color: var(--tct-ink-soft);
	font-size: 13px;
	margin: 6px 0;
}

.tour-card__price {
	color: var(--tct-ink);
	font-weight: 800;
}

.tour-card__button {
	border: 1px solid #a8c3c2;
	border-radius: 6px;
	display: block;
	font-size: 13px;
	font-weight: 900;
	margin-top: 12px;
	padding: 9px;
	text-align: center;
}

.transfer-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.transfer-card {
	align-items: center;
	display: grid;
	gap: 12px;
	grid-template-columns: 44px 1fr auto;
	padding: 18px;
}

.transfer-card__icon {
	background: #e5f4ee;
	border-radius: 50%;
	color: var(--tct-teal);
	display: grid;
	font-size: 21px;
	height: 44px;
	place-items: center;
	width: 44px;
}

.transfer-card h3 {
	margin-bottom: 3px;
}

.transfer-card p,
.transfer-card span {
	color: var(--tct-ink-soft);
	display: block;
	font-size: 13px;
	margin: 0;
}

.transfer-card__arrow {
	color: var(--tct-teal);
	font-size: 22px;
	font-weight: 900;
}

.why-section {
	padding-top: 36px;
}

.why-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-item {
	padding: 18px;
	text-align: center;
}

.why-item span {
	background: #e5f4ee;
	border-radius: 50%;
	color: var(--tct-green);
	display: grid;
	font-size: 30px;
	height: 66px;
	margin: 0 auto 12px;
	place-items: center;
	width: 66px;
}

.why-item:nth-child(2) span {
	background: #fff3cd;
	color: var(--tct-gold-dark);
}

.why-item p {
	color: var(--tct-ink-soft);
	font-size: 14px;
	margin: 0;
}

.custom-tour-cta {
	align-items: stretch;
	background: var(--tct-teal);
	border-radius: var(--tct-radius);
	box-shadow: var(--tct-shadow);
	color: #fff;
	display: grid;
	grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
	margin-bottom: 28px;
	overflow: hidden;
	padding: 0;
}

.custom-tour-cta__image {
	background: url("../images/tour-galle.svg") center / cover no-repeat;
	min-height: 210px;
}

.custom-tour-cta__content {
	padding: 34px;
}

.custom-tour-cta h2 {
	color: #fff;
}

.custom-tour-cta p {
	color: rgba(255, 255, 255, 0.9);
	margin: 10px 0 20px;
	max-width: 530px;
}

.testimonial-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
	padding: 22px;
}

.testimonial-card p {
	color: var(--tct-ink);
	margin: 10px 0 16px;
}

.testimonial-card strong,
.testimonial-card span {
	display: block;
}

.testimonial-card span {
	color: var(--tct-ink-soft);
	font-size: 13px;
}

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

.guide-card {
	overflow: hidden;
}

.guide-card__image {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	position: relative;
}

.guide-card__image time {
	background: var(--tct-teal);
	border: 2px solid #fff;
	border-radius: 6px;
	color: #fff;
	display: grid;
	left: 12px;
	line-height: 1;
	padding: 6px 8px;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 12px;
}

.guide-card__image time span {
	font-size: 11px;
	font-weight: 900;
}

.guide-card__image time strong {
	font-size: 20px;
}

.guide-card p {
	color: var(--tct-ink-soft);
	font-size: 14px;
	margin: 0 0 12px;
}

.site-footer__cta {
	background:
		linear-gradient(90deg, rgba(247, 183, 24, 0.92), rgba(7, 81, 90, 0.3)),
		url("../images/hero-sri-lanka.svg") center / cover no-repeat;
	color: #fff;
	padding: 38px 0;
}

.site-footer__cta-inner {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
}

.site-footer__cta h2 {
	color: #fff;
	font-size: 34px;
}

.site-footer__cta p {
	margin: 5px 0 0;
}

.site-footer__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.site-footer__main {
	background: var(--tct-teal);
	color: #dcefed;
	padding: 34px 0;
}

.site-footer__grid {
	display: grid;
	gap: 30px;
	grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
}

.site-footer .site-brand__text {
	color: #fff;
}

.site-footer .site-brand {
	min-width: 0;
}

.site-footer h3 {
	color: #fff;
	font-size: 17px;
	margin: 0 0 12px;
}

.site-footer p {
	margin: 12px 0;
}

.site-footer__copy {
	font-size: 13px;
	opacity: 0.84;
}

.footer-menu,
.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu li,
.footer-contact li {
	margin: 4px 0;
}

.footer-menu a,
.footer-contact a {
	color: #dcefed;
}

.footer-menu a:hover,
.footer-contact a:hover {
	color: var(--tct-gold);
}

.sticky-whatsapp {
	align-items: center;
	background: #18a957;
	border: 4px solid #fff;
	border-radius: 999px;
	bottom: 18px;
	box-shadow: 0 12px 26px rgba(6, 63, 75, 0.25);
	color: #fff;
	display: inline-flex;
	font-weight: 900;
	gap: 8px;
	padding: 10px 16px 10px 12px;
	position: fixed;
	right: 18px;
	z-index: 99;
}

.sticky-whatsapp span:first-child {
	background: rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	display: grid;
	height: 32px;
	place-items: center;
	width: 32px;
}

.sticky-whatsapp:hover {
	color: #fff;
}

.archive-hero,
.page-hero {
	background:
		linear-gradient(90deg, rgba(6, 63, 75, 0.9), rgba(6, 63, 75, 0.62)),
		url("../images/tour-round.svg") center / cover no-repeat;
	color: #fff;
	padding: 88px 0 76px;
}

.archive-hero--blog {
	background:
		linear-gradient(90deg, rgba(6, 63, 75, 0.9), rgba(6, 63, 75, 0.54)),
		url("../images/guide-train.svg") center / cover no-repeat;
}

.archive-hero h1,
.page-hero h1 {
	font-size: 48px;
	max-width: 760px;
}

.archive-hero p,
.page-hero p,
.archive-description {
	font-size: 18px;
	margin: 14px 0 0;
	max-width: 680px;
}

.archive-filter {
	align-items: end;
	background: #fff;
	border: 1px solid var(--tct-line);
	border-radius: var(--tct-radius);
	box-shadow: var(--tct-shadow);
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr 1fr auto auto;
	margin-bottom: 28px;
	padding: 18px;
}

.empty-state {
	padding: 36px;
	text-align: center;
}

.empty-state h2 {
	font-family: var(--tct-serif);
	margin: 0 0 8px;
}

.navigation.pagination {
	margin-top: 30px;
	text-align: center;
}

.nav-links {
	align-items: center;
	display: inline-flex;
	gap: 8px;
	justify-content: center;
}

.page-numbers {
	background: #fff;
	border: 1px solid var(--tct-line);
	border-radius: 6px;
	color: var(--tct-ink);
	display: inline-flex;
	font-weight: 800;
	min-width: 38px;
	padding: 8px 11px;
	justify-content: center;
}

.page-numbers.current {
	background: var(--tct-teal);
	color: #fff;
}

.tour-hero,
.post-hero {
	color: #fff;
	min-height: 500px;
	position: relative;
}

.tour-hero img,
.post-hero img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.tour-hero__overlay,
.post-hero__overlay {
	background: linear-gradient(90deg, rgba(4, 50, 63, 0.88), rgba(4, 50, 63, 0.28));
	inset: 0;
	position: absolute;
}

.tour-hero__content,
.post-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 500px;
	padding-bottom: 56px;
	padding-top: 56px;
	position: relative;
	z-index: 1;
}

.tour-hero__badge {
	left: auto;
	position: static;
	top: auto;
	width: fit-content;
}

.tour-hero h1,
.post-hero h1 {
	font-size: 52px;
	margin-top: 14px;
	max-width: 820px;
}

.tour-hero p {
	font-size: 18px;
	margin: 16px 0 24px;
	max-width: 680px;
}

.tour-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.tour-hero__facts span {
	background: rgba(255, 255, 255, 0.94);
	border-radius: var(--tct-radius);
	color: var(--tct-ink);
	display: grid;
	min-width: 160px;
	padding: 12px 14px;
}

.tour-hero__facts strong {
	color: var(--tct-teal);
	font-size: 12px;
	text-transform: uppercase;
}

.single-tour__layout {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) 390px;
	padding-bottom: 60px;
	padding-top: 42px;
}

.single-tour__main {
	display: grid;
	gap: 22px;
}

.tour-panel,
.booking-panel,
.contact-card {
	padding: 24px;
}

.tour-panel h2,
.booking-panel h2,
.contact-card h2 {
	font-size: 26px;
	margin-bottom: 14px;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content a {
	color: var(--tct-teal);
	font-weight: 800;
	text-decoration: underline;
}

.tour-panel--split {
	display: grid;
	gap: 22px;
	grid-template-columns: 1fr 1fr;
}

.check-list,
.x-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.check-list li,
.x-list li {
	color: var(--tct-ink-soft);
	margin: 8px 0;
	padding-left: 28px;
	position: relative;
}

.check-list li::before,
.x-list li::before {
	border-radius: 50%;
	display: grid;
	font-size: 12px;
	font-weight: 900;
	height: 20px;
	left: 0;
	line-height: 20px;
	place-items: center;
	position: absolute;
	top: 2px;
	width: 20px;
}

.check-list li::before {
	background: #dff4e8;
	color: var(--tct-green);
	content: "\2713";
}

.x-list li::before {
	background: #f7e3df;
	color: #b94c38;
	content: "\00d7";
}

.itinerary-list {
	counter-reset: item;
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.itinerary-list li {
	align-items: start;
	display: grid;
	gap: 12px;
	grid-template-columns: 34px 1fr;
}

.itinerary-list span {
	background: var(--tct-gold);
	border-radius: 50%;
	color: var(--tct-ink);
	display: grid;
	font-weight: 900;
	height: 34px;
	place-items: center;
	width: 34px;
}

.itinerary-list p {
	margin: 4px 0 0;
}

.tour-gallery {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-gallery img {
	aspect-ratio: 4 / 3;
	border-radius: 6px;
}

.single-tour__sidebar {
	position: sticky;
	top: 96px;
}

.booking-panel__summary {
	background: #eff8f5;
	border-radius: var(--tct-radius);
	margin-bottom: 14px;
	padding: 16px;
}

.booking-panel__summary span {
	color: var(--tct-ink-soft);
	display: block;
	font-size: 13px;
	font-weight: 800;
}

.booking-panel__summary strong {
	color: var(--tct-ink);
	display: block;
	font-size: 23px;
	line-height: 1.2;
	margin-top: 4px;
}

.booking-panel__summary p {
	margin: 10px 0 0;
}

.tct-booking-form {
	border-top: 1px solid var(--tct-line);
	margin-top: 18px;
	padding-top: 18px;
}

.tct-booking-form__grid {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
}

.tct-booking-form label.is-wide {
	grid-column: 1 / -1;
}

.tct-booking-form small {
	color: var(--tct-ink-soft);
	display: block;
	font-size: 12px;
	line-height: 1.4;
}

.tct-booking-form__submit {
	background: var(--tct-gold);
	border: 0;
	border-radius: var(--tct-radius);
	color: var(--tct-ink);
	cursor: pointer;
	font-weight: 900;
	margin-top: 14px;
	min-height: 46px;
	width: 100%;
}

.tct-booking-success {
	background: #e7f7ed;
	border: 1px solid #aadfc0;
	border-radius: var(--tct-radius);
	margin-bottom: 18px;
	padding: 16px;
}

.tct-booking-success p {
	margin: 6px 0 10px;
}

.tct-booking-success a {
	color: var(--tct-green);
	font-weight: 900;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	font-weight: 800;
	gap: 14px;
}

.content-shell {
	background: #fff;
	border: 1px solid rgba(6, 63, 75, 0.08);
	border-radius: var(--tct-radius);
	box-shadow: var(--tct-shadow);
	margin-bottom: 60px;
	margin-top: 42px;
	max-width: 900px;
	padding: 38px;
}

.page-hero--contact {
	background:
		linear-gradient(90deg, rgba(6, 63, 75, 0.9), rgba(6, 63, 75, 0.48)),
		url("../images/tour-galle.svg") center / cover no-repeat;
}

.contact-layout {
	align-items: start;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) 360px;
	padding-bottom: 64px;
	padding-top: 42px;
}

.contact-form {
	display: grid;
	gap: 14px;
}

.contact-card--accent {
	background: var(--tct-teal);
	color: #fff;
	margin-top: 20px;
}

.contact-card--accent h2 {
	color: #fff;
}

.contact-card--accent p {
	color: rgba(255, 255, 255, 0.88);
}

.empty-message {
	background: #fff;
	border-radius: var(--tct-radius);
	grid-column: 1 / -1;
	margin: 0;
	padding: 24px;
	text-align: center;
}

@media (max-width: 1180px) {
	.tour-grid--home {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

@media (max-width: 920px) {
	.site-header__inner {
		min-height: 68px;
	}

	.nav-toggle {
		display: block;
		margin-left: auto;
	}

	.primary-navigation {
		background: #fff;
		border-top: 1px solid var(--tct-line);
		box-shadow: 0 16px 24px rgba(6, 63, 75, 0.12);
		display: none;
		left: 0;
		position: absolute;
		right: 0;
		top: 68px;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation .menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		padding: 12px 20px 18px;
	}

	.primary-navigation a {
		padding: 13px 10px;
	}

	.header-book-btn {
		display: none;
	}

	.hero-copy h1,
	.tour-hero h1,
	.post-hero h1,
	.archive-hero h1,
	.page-hero h1 {
		font-size: 40px;
	}

	.quick-search,
	.archive-filter {
		grid-template-columns: 1fr 1fr;
	}

	.quick-search .btn,
	.archive-filter .btn {
		width: 100%;
	}

	.archive-tour-grid,
	.guide-grid,
	.testimonial-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-tour__layout,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.single-tour__sidebar {
		position: static;
	}

	.site-footer__cta-inner,
	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 680px) {
	.tct-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.site-brand {
		min-width: 0;
	}

	.site-brand__text {
		font-size: 20px;
	}

	.site-brand__mark,
	.site-brand__mark svg {
		height: 42px;
		width: 50px;
	}

	.hero-section,
	.hero-section__content {
		min-height: 560px;
	}

	.hero-copy {
		padding-bottom: 118px;
	}

	.hero-copy h1,
	.tour-hero h1,
	.post-hero h1,
	.archive-hero h1,
	.page-hero h1 {
		font-size: 34px;
	}

	.hero-copy p,
	.archive-hero p,
	.page-hero p {
		font-size: 16px;
	}

	.quick-search {
		grid-template-columns: 1fr;
		margin-top: -86px;
	}

	.home-section,
	.archive-content {
		padding: 42px 0;
	}

	.section-heading h2,
	.custom-tour-cta h2,
	.site-footer__cta h2 {
		font-size: 28px;
	}

	.tour-grid--home,
	.archive-tour-grid,
	.transfer-grid,
	.why-grid,
	.guide-grid,
	.testimonial-grid,
	.tour-panel--split,
	.tour-gallery,
	.archive-filter,
	.tct-booking-form__grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.custom-tour-cta {
		grid-template-columns: 1fr;
	}

	.custom-tour-cta__content {
		padding: 24px;
	}

	.tour-hero,
	.post-hero,
	.tour-hero__content,
	.post-hero__content {
		min-height: 440px;
	}

	.tour-hero__facts {
		display: grid;
	}

	.tour-panel,
	.booking-panel,
	.contact-card,
	.content-shell {
		padding: 20px;
	}

	.content-shell {
		margin-top: 28px;
	}

	.site-footer__cta-actions {
		width: 100%;
	}

	.site-footer__cta-actions .btn {
		width: 100%;
	}

	.sticky-whatsapp {
		bottom: 14px;
		right: 14px;
	}

	.sticky-whatsapp span:last-child {
		display: none;
	}
}

/* Client demo polish */
.hero-section,
.hero-section__content {
	min-height: 540px;
}

.hero-section__media {
	background:
		linear-gradient(90deg, rgba(4, 50, 63, 0.9) 0%, rgba(4, 50, 63, 0.56) 48%, rgba(4, 50, 63, 0.12) 100%),
		url("../images/hero-sri-lanka.webp") center / cover no-repeat;
}

.hero-copy {
	padding-bottom: 120px;
}

.hero-copy h1 {
	font-size: 62px;
	max-width: 680px;
}

.quick-search {
	border: 0;
	margin-top: -62px;
	padding: 26px;
}

.home-section {
	padding: 70px 0;
}

.home-section--compact {
	padding-top: 8px;
}

.section-heading {
	margin-bottom: 30px;
}

.section-kicker {
	color: #0d766f;
	font-size: 12px;
	letter-spacing: 0;
}

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

.tour-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.tour-card:hover {
	box-shadow: 0 18px 42px rgba(6, 63, 75, 0.18);
	transform: translateY(-3px);
}

.tour-card__image {
	aspect-ratio: 16 / 10;
}

.tour-card__image::after {
	background: linear-gradient(180deg, rgba(6, 63, 75, 0) 48%, rgba(6, 63, 75, 0.36) 100%);
	content: "";
	inset: 0;
	position: absolute;
}

.tour-card__badge {
	box-shadow: 0 8px 18px rgba(6, 63, 75, 0.18);
	z-index: 1;
}

.tour-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.tour-card h3 {
	font-size: 18px;
	margin-bottom: 9px;
}

.tour-card__rating {
	margin-bottom: 12px;
}

.tour-card__meta {
	border-top: 1px solid #edf2f1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 2px;
	padding-top: 12px;
}

.tour-card__meta span {
	background: #f0f7f5;
	border-radius: 999px;
	color: var(--tct-teal);
	font-size: 12px;
	font-weight: 800;
	padding: 5px 8px;
}

.tour-card__excerpt {
	color: var(--tct-ink-soft);
	font-size: 14px;
	line-height: 1.5;
	margin: 12px 0 18px;
}

.tour-card__footer {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: auto;
}

.tour-card__price {
	font-size: 15px;
	margin: 0;
}

.tour-card__button {
	background: var(--tct-teal);
	border-color: var(--tct-teal);
	color: #fff;
	flex: 0 0 auto;
	margin-top: 0;
	min-width: 112px;
	padding: 10px 12px;
}

.tour-card__button:hover {
	color: #fff;
}

.transfer-card {
	border: 0;
	min-height: 118px;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.transfer-card:hover {
	box-shadow: 0 16px 34px rgba(6, 63, 75, 0.15);
	transform: translateY(-2px);
}

.why-grid {
	gap: 24px;
}

.why-item {
	background: rgba(255, 255, 255, 0.64);
	border: 1px solid rgba(6, 63, 75, 0.06);
	border-radius: var(--tct-radius);
	padding: 24px 18px;
}

.custom-tour-cta {
	margin-bottom: 12px;
}

.testimonial-card,
.guide-card {
	border: 0;
}

.tour-hero,
.tour-hero__content {
	min-height: 560px;
}

.tour-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.tour-detail-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tour-detail-grid div {
	background: #f3faf7;
	border: 1px solid #deece8;
	border-radius: var(--tct-radius);
	padding: 16px;
}

.tour-detail-grid span {
	color: var(--tct-ink-soft);
	display: block;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.tour-detail-grid strong {
	color: var(--tct-ink);
	display: block;
	font-size: 15px;
	line-height: 1.35;
	margin-top: 5px;
}

.tour-empty-note {
	background: #f8fbfa;
	border: 1px dashed #bdd2cf;
	border-radius: var(--tct-radius);
	color: var(--tct-ink-soft);
	margin: 0;
	padding: 14px;
}

.booking-panel {
	border: 0;
	box-shadow: 0 22px 50px rgba(6, 63, 75, 0.18);
}

.booking-panel h2 {
	font-size: 28px;
}

.booking-panel__summary {
	background: linear-gradient(135deg, #eff8f5, #fff7df);
}

.booking-panel__note {
	color: var(--tct-ink-soft);
	font-size: 13px;
	line-height: 1.5;
	margin: 14px 0 0;
}

.tct-booking-form__intro {
	margin-bottom: 16px;
}

.tct-booking-form__intro h3 {
	color: var(--tct-ink);
	font-size: 18px;
	line-height: 1.2;
	margin: 0 0 6px;
}

.tct-booking-form__intro p {
	color: var(--tct-ink-soft);
	font-size: 13px;
	line-height: 1.45;
	margin: 0;
}

.tct-booking-form input,
.tct-booking-form select,
.tct-booking-form textarea {
	background: #fbfdfc;
}

.tct-payment-note {
	background: #fff8dd;
	border: 1px solid #f0dc8b;
	border-radius: 6px;
	color: #6a5514;
	padding: 10px 12px;
}

.tct-booking-message {
	border-radius: var(--tct-radius);
	margin-bottom: 18px;
	padding: 16px;
}

.tct-booking-message strong {
	display: block;
	margin-bottom: 4px;
}

.tct-booking-message p {
	margin: 0 0 8px;
}

.tct-booking-message p:last-child {
	margin-bottom: 0;
}

.tct-booking-message--success {
	background: #e7f7ed;
	border: 1px solid #aadfc0;
}

.tct-booking-message--error {
	background: #fff1ee;
	border: 1px solid #e6b2a9;
	color: #7a271a;
}

.tct-booking-message--warning {
	background: #fff8dd;
	border: 1px solid #f0dc8b;
	color: #6a5514;
}

.tct-booking-message a {
	color: var(--tct-green);
	font-weight: 900;
}

@media (max-width: 1180px) {
	.tour-grid--home {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 920px) {
	.hero-section,
	.hero-section__content {
		min-height: 500px;
	}

	.hero-copy {
		padding-bottom: 100px;
	}

	.hero-copy h1 {
		font-size: 44px;
	}
}

@media (max-width: 680px) {
	.hero-section,
	.hero-section__content,
	.tour-hero,
	.tour-hero__content {
		min-height: 0;
	}

	.hero-copy,
	.tour-hero__content {
		padding-bottom: 96px;
		padding-top: 58px;
	}

	.hero-copy h1 {
		font-size: 36px;
	}

	.hero-actions,
	.tour-hero__actions {
		display: grid;
		width: 100%;
	}

	.quick-search {
		margin-top: -70px;
		padding: 18px;
	}

	.tour-grid--home,
	.tour-detail-grid {
		grid-template-columns: 1fr;
	}

	.tour-card__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.tour-card__button {
		width: 100%;
	}

	.single-tour__layout {
		padding-top: 28px;
	}

	.booking-panel h2 {
		font-size: 24px;
	}
}

/* Presentation pass: local imagery, tighter rhythm, sticky header offsets */
html {
	scroll-padding-top: 104px;
}

.admin-bar .site-header {
	top: 32px;
}

#tour-booking,
.tour-panel,
.archive-content,
.home-section {
	scroll-margin-top: 104px;
}

.site-header {
	z-index: 900;
}

.hero-section,
.hero-section__content {
	min-height: 510px;
}

.hero-copy {
	padding-bottom: 104px;
	padding-top: 56px;
}

.hero-copy h1 {
	font-size: 58px;
}

.quick-search {
	margin-top: -58px;
	max-width: 1020px;
}

.home-section {
	padding: 48px 0;
}

.home-section--compact,
.why-section,
.testimonials-section,
.guide-section {
	padding-top: 34px;
}

.custom-tour-cta {
	margin-top: 8px;
}

.section-heading {
	margin-bottom: 20px;
}

.tour-grid,
.guide-grid,
.testimonial-grid {
	gap: 18px;
}

.transfer-grid {
	gap: 16px;
}

.transfer-card {
	min-height: 98px;
	padding: 14px;
}

.transfer-card__icon {
	font-size: 19px;
	height: 42px;
	width: 42px;
}

.transfer-card__content {
	min-width: 0;
}

.transfer-card__route {
	align-items: center;
	display: grid;
	gap: 7px;
	grid-template-columns: 16px 1fr 16px;
	margin: 5px 0 7px;
}

.transfer-card__route span {
	border: 2px solid var(--tct-teal);
	border-radius: 50%;
	display: block;
	height: 14px;
	width: 14px;
}

.transfer-card__route i {
	border-top: 2px dashed var(--tct-teal);
	display: block;
	height: 1px;
	opacity: 0.75;
}

.transfer-card h3 {
	font-size: 15px;
}

.transfer-card p,
.transfer-card span {
	font-size: 12px;
}

.guide-section {
	padding-bottom: 50px;
}

.guide-card {
	display: flex;
	flex-direction: column;
}

.guide-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.guide-card .read-more {
	margin-top: auto;
}

.testimonial-grid {
	align-items: stretch;
}

.testimonial-card {
	display: flex;
	flex-direction: column;
	min-height: 184px;
}

.testimonial-card p {
	flex: 1;
}

.tct-stars {
	color: #f7b718;
	font-size: 15px;
	text-shadow: 0 1px 0 rgba(6, 63, 75, 0.14);
}

@media (max-width: 782px) {
	html {
		scroll-padding-top: 116px;
	}

	.admin-bar .site-header {
		top: 46px;
	}

	#tour-booking,
	.tour-panel,
	.archive-content,
	.home-section {
		scroll-margin-top: 116px;
	}
}

@media (max-width: 920px) {
	.hero-section,
	.hero-section__content {
		min-height: 470px;
	}

	.quick-search {
		margin-top: -48px;
	}
}

@media (max-width: 680px) {
	.hero-copy {
		padding-bottom: 88px;
		padding-top: 44px;
	}

	.hero-copy h1 {
		font-size: 34px;
	}

	.quick-search {
		margin-top: -58px;
	}

	.home-section,
	.home-section--compact,
	.why-section,
	.testimonials-section,
	.guide-section {
		padding: 34px 0;
	}
}
