/* =========================================================
   TravelNest — main stylesheet
   ========================================================= */

:root {
	--tn-primary: #1e88e5;
	--tn-primary-dark: #1565c0;
	--tn-accent: #ff7043;
	--tn-dark: #16222e;
	--tn-text: #4a5561;
	--tn-heading: #16222e;
	--tn-light: #f5f8fb;
	--tn-border: #e4eaf0;
	--tn-white: #ffffff;
	--tn-radius: 12px;
	--tn-shadow: 0 8px 30px rgba(22, 34, 46, 0.08);
	--tn-shadow-lg: 0 16px 48px rgba(22, 34, 46, 0.14);
	--tn-font-head: "Poppins", -apple-system, sans-serif;
	--tn-font-body: "Roboto", -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */

*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--tn-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--tn-text);
	background: var(--tn-white);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--tn-font-head);
	color: var(--tn-heading);
	line-height: 1.3;
	margin: 0 0 0.6em;
}

h1 { font-size: 2.6rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1.2em; }

a { color: var(--tn-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--tn-primary-dark); }

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

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="password"],
select,
textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--tn-border);
	border-radius: 8px;
	font: inherit;
	color: var(--tn-heading);
	background: var(--tn-white);
	transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus, select:focus, textarea:focus {
	outline: none;
	border-color: var(--tn-primary);
	box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}

label { font-weight: 500; color: var(--tn-heading); display: block; margin-bottom: 6px; font-size: .9rem; }

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--tn-dark); color: #fff; padding: 10px 16px; z-index: 999; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Layout helpers ---------- */

.tn-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.tn-section { padding: 80px 0; }
.tn-section--alt { background: var(--tn-light); }

.tn-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.tn-section__head--center { justify-content: center; text-align: center; }
.tn-section__title { margin-bottom: 8px; }
.tn-section__desc { margin: 0; max-width: 520px; }
.tn-section__more { text-align: center; margin: 44px 0 0; }

.tn-grid { display: grid; gap: 28px; }
.tn-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tn-grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
	.tn-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
	.tn-grid--3, .tn-grid--5 { grid-template-columns: repeat(2, 1fr); }
	.tn-section { padding: 56px 0; }
	h1 { font-size: 2rem; }
	h2 { font-size: 1.6rem; }
}
@media (max-width: 540px) {
	.tn-grid--3, .tn-grid--5 { grid-template-columns: 1fr; }
	.tn-section__head { flex-direction: column; align-items: flex-start; }
}

/* ---------- Buttons ---------- */

.tn-btn {
	display: inline-block;
	padding: 13px 28px;
	border-radius: 999px;
	font-family: var(--tn-font-head);
	font-weight: 600;
	font-size: .95rem;
	line-height: 1.2;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all .2s ease;
	text-align: center;
}

.tn-btn--primary { background: var(--tn-primary); color: #fff; }
.tn-btn--primary:hover { background: var(--tn-primary-dark); color: #fff; transform: translateY(-1px); }

.tn-btn--outline { border-color: var(--tn-primary); color: var(--tn-primary); background: transparent; }
.tn-btn--outline:hover { background: var(--tn-primary); color: #fff; }

.tn-btn--ghost { border-color: var(--tn-border); color: var(--tn-heading); background: transparent; }
.tn-btn--ghost:hover { border-color: var(--tn-primary); color: var(--tn-primary); }

.tn-btn--block { display: block; width: 100%; }

/* ---------- Header ---------- */

.tn-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--tn-white);
	border-bottom: 1px solid var(--tn-border);
}

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

.tn-header__brand { flex-shrink: 0; }
.tn-header__brand img { max-height: 48px; width: auto; }
.tn-header__sitename { font-family: var(--tn-font-head); font-size: 1.4rem; font-weight: 700; color: var(--tn-heading); }

.tn-nav { margin-left: auto; }
.tn-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.tn-nav__list li { position: relative; }
.tn-nav__list a {
	display: block;
	padding: 10px 14px;
	color: var(--tn-heading);
	font-family: var(--tn-font-head);
	font-weight: 500;
	font-size: .95rem;
	border-radius: 8px;
}
.tn-nav__list a:hover { color: var(--tn-primary); background: var(--tn-light); }

/* Dropdowns */
.tn-nav__list ul {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 8px;
	background: var(--tn-white);
	border-radius: var(--tn-radius);
	box-shadow: var(--tn-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .2s ease;
	z-index: 50;
}
.tn-nav__list li:hover > ul,
.tn-nav__list li:focus-within > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.tn-nav__list ul ul { top: 0; left: 100%; }

.tn-header__actions { display: flex; align-items: center; gap: 12px; }
.tn-header__cta { padding: 10px 22px; }

.tn-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
}
.tn-nav-toggle__bar { width: 24px; height: 2px; background: var(--tn-heading); transition: all .2s ease; }

@media (max-width: 900px) {
	.tn-nav-toggle { display: flex; }
	.tn-header__cta { display: none; }
	.tn-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--tn-white);
		border-bottom: 1px solid var(--tn-border);
		display: none;
		padding: 12px 24px 20px;
	}
	.tn-nav.is-open { display: block; }
	.tn-nav__list { flex-direction: column; }
	.tn-nav__list ul {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding-left: 16px;
	}
}

/* ---------- Hero ---------- */

.tn-hero {
	background: linear-gradient(135deg, #0d2b45 0%, #16405f 55%, #1e88e5 130%);
	color: #d8e6f3;
	overflow: hidden;
}

.tn-hero__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: center;
	padding-top: 90px;
	padding-bottom: 90px;
}

.tn-hero__kicker {
	display: inline-block;
	font-family: var(--tn-font-head);
	font-weight: 600;
	font-size: .85rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #8fd0ff;
	margin-bottom: 14px;
}

.tn-hero__title { color: #fff; font-size: 3rem; margin-bottom: 16px; }
.tn-hero__subtitle { font-size: 1.05rem; max-width: 480px; margin-bottom: 32px; }

.tn-hero__media img { border-radius: var(--tn-radius); box-shadow: var(--tn-shadow-lg); }

@media (max-width: 900px) {
	.tn-hero__inner { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; }
	.tn-hero__title { font-size: 2.2rem; }
	.tn-hero__media { display: none; }
}

/* ---------- Tour search form ---------- */

.tn-tour-search {
	display: grid;
	gap: 14px;
	background: var(--tn-white);
	border-radius: var(--tn-radius);
	padding: 22px;
	box-shadow: var(--tn-shadow-lg);
}

.tn-tour-search--hero { grid-template-columns: 1.2fr 1fr 1fr auto; align-items: end; max-width: 720px; }
.tn-tour-search--inline { grid-template-columns: 1.2fr 1fr 1fr auto; align-items: end; box-shadow: var(--tn-shadow); }

.tn-tour-search__submit .tn-btn { white-space: nowrap; }

@media (max-width: 900px) {
	.tn-tour-search--hero, .tn-tour-search--inline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
	.tn-tour-search--hero, .tn-tour-search--inline { grid-template-columns: 1fr; }
}

/* ---------- Destination cards ---------- */

.tn-dest-card {
	display: block;
	background: var(--tn-white);
	border-radius: var(--tn-radius);
	overflow: hidden;
	box-shadow: var(--tn-shadow);
	transition: transform .25s ease, box-shadow .25s ease;
	color: var(--tn-text);
}
.tn-dest-card:hover { transform: translateY(-6px); box-shadow: var(--tn-shadow-lg); color: var(--tn-text); }

.tn-dest-card__media { position: relative; aspect-ratio: 7 / 5; background: var(--tn-light); overflow: hidden; }
.tn-dest-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tn-dest-card:hover .tn-dest-card__media img { transform: scale(1.06); }

.tn-dest-card__count {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(22, 34, 46, 0.75);
	color: #fff;
	font-size: .8rem;
	font-weight: 500;
	padding: 5px 12px;
	border-radius: 999px;
	backdrop-filter: blur(4px);
}

.tn-dest-card__body { padding: 22px; }
.tn-dest-card__title { margin-bottom: 8px; }
.tn-dest-card__body p { font-size: .92rem; margin-bottom: 12px; }
.tn-dest-card__link { font-family: var(--tn-font-head); font-weight: 600; font-size: .9rem; color: var(--tn-primary); }

/* ---------- Tour cards ---------- */

.tn-tour-card {
	background: var(--tn-white);
	border-radius: var(--tn-radius);
	overflow: hidden;
	box-shadow: var(--tn-shadow);
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex;
	flex-direction: column;
}
.tn-tour-card:hover { transform: translateY(-6px); box-shadow: var(--tn-shadow-lg); }

.tn-tour-card__media { position: relative; display: block; aspect-ratio: 7 / 5; background: var(--tn-light); overflow: hidden; }
.tn-tour-card--portrait .tn-tour-card__media { aspect-ratio: 3 / 4; }
.tn-tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tn-tour-card:hover .tn-tour-card__media img { transform: scale(1.06); }

.tn-tour-card__placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #dbe7f1, #f0f5fa); }

.tn-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--tn-accent);
	color: #fff;
	font-family: var(--tn-font-head);
	font-size: .75rem;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 999px;
	z-index: 2;
}

.tn-tour-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tn-tour-card__title { font-size: 1.05rem; margin: 0; }
.tn-tour-card__title a { color: var(--tn-heading); }
.tn-tour-card__title a:hover { color: var(--tn-primary); }

.tn-tour-card__meta { display: flex; align-items: center; gap: 10px; font-size: .85rem; }
.tn-tour-card__reviews { color: #f5a623; }

.tn-tour-card__footer { margin-top: auto; padding-top: 8px; border-top: 1px solid var(--tn-border); }

.tn-price { font-family: var(--tn-font-head); }
.tn-price__from { font-size: .8rem; color: var(--tn-text); }
.tn-price__old { color: #98a4b0; font-size: .9rem; margin-right: 4px; }
.tn-price__current { color: var(--tn-primary); font-weight: 700; font-size: 1.15rem; }

/* ---------- Features ---------- */

.tn-feature { text-align: center; padding: 12px 20px; }
.tn-feature__icon { font-size: 2.4rem; display: inline-block; margin-bottom: 14px; }
.tn-feature h3 { margin-bottom: 8px; }
.tn-feature p { margin: 0; font-size: .95rem; }

/* ---------- Page hero (inner pages) ---------- */

.tn-page-hero {
	background: linear-gradient(135deg, #0d2b45, #16405f);
	color: #cfe0ee;
	padding: 64px 0;
	margin-bottom: 48px;
}
.tn-page-hero__title { color: #fff; margin: 0; }
.tn-page-hero__desc { max-width: 640px; margin-top: 10px; }
.tn-page-hero__meta { margin: 8px 0 0; opacity: .85; }

/* ---------- Tour archive ---------- */

.tn-archive-tours__bar { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; }
.tn-archive-tours__bar .tn-tour-search { flex: 1; min-width: 300px; }
.tn-sort select { min-width: 200px; }

.tn-pagination { margin: 48px 0 80px; text-align: center; }
.tn-pagination .nav-links { display: inline-flex; gap: 8px; }
.tn-pagination .page-numbers {
	display: inline-block;
	padding: 9px 16px;
	border-radius: 8px;
	border: 1px solid var(--tn-border);
	color: var(--tn-heading);
	font-weight: 500;
}
.tn-pagination .page-numbers.current,
.tn-pagination .page-numbers:hover { background: var(--tn-primary); border-color: var(--tn-primary); color: #fff; }

.tn-no-results { padding: 40px 0 80px; }

/* ---------- Single tour ---------- */

.tn-single__banner { max-height: 480px; overflow: hidden; }
.tn-single__banner img { width: 100%; height: 480px; object-fit: cover; }

.tn-single__layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 48px;
	padding-top: 48px;
	padding-bottom: 80px;
}
@media (max-width: 900px) {
	.tn-single__layout { grid-template-columns: 1fr; }
}

.tn-single__header { margin-bottom: 24px; }
.tn-single__title { margin-bottom: 10px; }
.tn-single__meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: .95rem; color: var(--tn-text); }
.tn-single__meta .tn-duration::before,
.tn-single__group::before { content: "•"; margin-right: 6px; color: var(--tn-primary); }

.tn-price-box {
	background: var(--tn-white);
	border: 1px solid var(--tn-border);
	border-radius: var(--tn-radius);
	box-shadow: var(--tn-shadow);
	padding: 26px;
	text-align: center;
	margin-bottom: 28px;
	position: sticky;
	top: 96px;
}
.tn-price-box .tn-price__current { font-size: 1.8rem; }
.tn-price-box__note { display: block; font-size: .85rem; margin: 4px 0 18px; }

/* ---------- Enquiry form ---------- */

.tn-enquiry {
	background: var(--tn-light);
	border-radius: var(--tn-radius);
	padding: 26px;
}
.tn-enquiry__title { font-size: 1.1rem; margin-bottom: 16px; }
.tn-enquiry p { margin-bottom: 14px; }

.tn-notice { padding: 12px 16px; border-radius: 8px; font-size: .92rem; }
.tn-notice--success { background: #e5f6ec; color: #14713d; }
.tn-notice--error { background: #fdeaea; color: #b3261e; }

/* ---------- Blog ---------- */

.tn-blog__layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	padding-bottom: 80px;
}
@media (max-width: 900px) {
	.tn-blog__layout { grid-template-columns: 1fr; }
}

.tn-post-card {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 24px;
	background: var(--tn-white);
	border-radius: var(--tn-radius);
	overflow: hidden;
	box-shadow: var(--tn-shadow);
	margin-bottom: 28px;
}
@media (max-width: 640px) {
	.tn-post-card { grid-template-columns: 1fr; }
}
.tn-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tn-post-card__body { padding: 24px 24px 24px 0; }
@media (max-width: 640px) {
	.tn-post-card__body { padding: 0 24px 24px; }
}
.tn-post-card__meta { font-size: .85rem; margin-bottom: 8px; display: flex; gap: 12px; }
.tn-post-card__title { font-size: 1.3rem; margin-bottom: 8px; }
.tn-post-card__title a { color: var(--tn-heading); }
.tn-post-card__title a:hover { color: var(--tn-primary); }
.tn-post-card__excerpt { font-size: .95rem; }
.tn-post-card__more { font-family: var(--tn-font-head); font-weight: 600; font-size: .9rem; }

.tn-single-post__thumb { margin-bottom: 28px; }
.tn-single-post__thumb img { border-radius: var(--tn-radius); }
.tn-single-post__tags { margin: 24px 0; }
.tn-single-post__tags a {
	display: inline-block;
	background: var(--tn-light);
	padding: 5px 14px;
	border-radius: 999px;
	font-size: .82rem;
	margin: 0 6px 6px 0;
}

.tn-post-nav { display: flex; justify-content: space-between; gap: 24px; padding: 24px 0; border-top: 1px solid var(--tn-border); }

/* Widgets */
.widget { margin-bottom: 36px; }
.widget-title { font-size: 1.05rem; margin-bottom: 14px; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { padding: 7px 0; border-bottom: 1px solid var(--tn-border); }

/* Entry content */
.tn-entry-content { max-width: 100%; }
.tn-entry-content img { border-radius: var(--tn-radius); }
.tn-entry-content h2, .tn-entry-content h3 { margin-top: 1.6em; }
.tn-entry-content blockquote {
	border-left: 4px solid var(--tn-primary);
	margin: 1.5em 0;
	padding: 12px 24px;
	background: var(--tn-light);
	border-radius: 0 8px 8px 0;
}

/* Comments */
.tn-comments { margin-top: 48px; }
.tn-comments__list { list-style: none; padding: 0; }
.tn-comments__list .comment { padding: 20px 0; border-bottom: 1px solid var(--tn-border); }
.tn-comments__list .avatar { border-radius: 50%; float: left; margin-right: 14px; }
.comment-respond { margin-top: 32px; }
.comment-form input[type="submit"] {
	background: var(--tn-primary);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 13px 30px;
	font-family: var(--tn-font-head);
	font-weight: 600;
	cursor: pointer;
}
.comment-form input[type="submit"]:hover { background: var(--tn-primary-dark); }

/* ---------- 404 ---------- */

.tn-404__inner { text-align: center; padding: 60px 0 100px; max-width: 560px; }
.tn-404__code { font-family: var(--tn-font-head); font-size: 6rem; font-weight: 700; color: var(--tn-primary); line-height: 1; margin: 0 0 8px; }
.tn-404 form { margin: 24px auto; }

/* ---------- Footer ---------- */

.tn-footer { background: var(--tn-dark); color: #9fb2c3; }
.tn-footer a { color: #cfe0ee; }
.tn-footer a:hover { color: #fff; }

.tn-footer__widgets {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	padding-top: 64px;
	padding-bottom: 48px;
}
@media (max-width: 900px) { .tn-footer__widgets { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .tn-footer__widgets { grid-template-columns: 1fr; } }

.tn-footer .widget-title { color: #fff; }
.tn-footer .widget ul li { border-color: rgba(255, 255, 255, 0.08); }

.tn-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.tn-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 22px;
	padding-bottom: 22px;
}
.tn-footer__menu { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.tn-footer__copy { margin: 0; font-size: .88rem; }

/* =========================================================
   DrMo Tours — additions
   ========================================================= */

/* Egypt palette accents */
:root {
	--tn-primary: #c98727;        /* golden sand */
	--tn-primary-dark: #a86c15;
	--tn-accent: #d9482b;         /* terracotta */
	--tn-dark: #1d1a14;
	--tn-light: #faf6ef;
	--tn-border: #ece4d6;
}

/* Tour style pills */
.tn-style-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tn-style-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border: 1px solid var(--tn-border);
	border-radius: 999px;
	font-family: var(--tn-font-head);
	font-weight: 600;
	color: var(--tn-heading);
	transition: all .2s ease;
}
.tn-style-pill:hover { border-color: var(--tn-primary); color: var(--tn-primary); transform: translateY(-2px); }
.tn-style-pill__count {
	background: var(--tn-light);
	border-radius: 999px;
	font-size: .78rem;
	padding: 2px 9px;
	color: var(--tn-text);
}

/* Tour card type label */
.tn-tour-card__type {
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--tn-primary);
}

/* Single tour gallery banner */
.tn-single__gallery {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 220px 220px;
	gap: 8px;
	max-height: 460px;
	overflow: hidden;
}
.tn-single__gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.tn-single__gallery-item--main { grid-row: span 2; }
.tn-single__gallery-item--main img { height: 100%; }
@media (max-width: 768px) {
	.tn-single__gallery { grid-template-columns: 1fr; grid-template-rows: 260px; }
	.tn-single__gallery-item:not(.tn-single__gallery-item--main) { display: none; }
}

.tn-single__lead { font-size: 1.15rem; color: var(--tn-heading); font-weight: 500; }
.tn-single__section { margin-top: 44px; }
.tn-single__section > h2 { padding-bottom: 10px; border-bottom: 2px solid var(--tn-primary); display: inline-block; }

/* Include / Exclude */
.tn-incl-excl { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 640px) { .tn-incl-excl { grid-template-columns: 1fr; } }
.tn-incl-excl__col { background: var(--tn-light); border-radius: var(--tn-radius); padding: 24px; }
.tn-incl-excl__col--in { border-top: 4px solid #2e9e5b; }
.tn-incl-excl__col--ex { border-top: 4px solid var(--tn-accent); }
.tn-incl-excl__col ul { padding-left: 20px; margin: 0; }
.tn-incl-excl__col li { margin-bottom: 6px; }

/* Itinerary accordion */
.tn-accordion { border: 1px solid var(--tn-border); border-radius: var(--tn-radius); overflow: hidden; }
.tn-accordion__item + .tn-accordion__item { border-top: 1px solid var(--tn-border); }
.tn-accordion__toggle {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 18px 20px;
	background: var(--tn-white);
	border: 0;
	cursor: pointer;
	text-align: left;
	font-family: var(--tn-font-head);
	font-size: 1rem;
	font-weight: 600;
	color: var(--tn-heading);
}
.tn-accordion__item.is-open .tn-accordion__toggle { background: var(--tn-light); }
.tn-accordion__num {
	flex-shrink: 0;
	width: 32px; height: 32px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--tn-primary);
	color: #fff;
	border-radius: 50%;
	font-size: .85rem;
}
.tn-accordion__icon { margin-left: auto; width: 10px; height: 10px; border-right: 2px solid var(--tn-text); border-bottom: 2px solid var(--tn-text); transform: rotate(45deg); transition: transform .2s ease; }
.tn-accordion__item.is-open .tn-accordion__icon { transform: rotate(-135deg); }
.tn-accordion__panel { display: none; padding: 4px 20px 20px 66px; }
.tn-accordion__item.is-open .tn-accordion__panel { display: block; }
@media (max-width: 540px) { .tn-accordion__panel { padding-left: 20px; } }

.tn-itinerary__attractions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tn-itinerary__attraction {
	background: var(--tn-light);
	border: 1px solid var(--tn-border);
	border-radius: 999px;
	padding: 4px 14px;
	font-size: .82rem;
	color: var(--tn-heading);
}

/* Pricing tables */
.tn-pricing-table table { width: 100%; border-collapse: collapse; border-radius: var(--tn-radius); overflow: hidden; box-shadow: var(--tn-shadow); }
.tn-pricing-table th { background: var(--tn-dark); color: #fff; text-align: left; padding: 13px 18px; font-family: var(--tn-font-head); font-weight: 600; font-size: .9rem; }
.tn-pricing-table td { padding: 12px 18px; border-bottom: 1px solid var(--tn-border); }
.tn-pricing-table tr:nth-child(even) td { background: var(--tn-light); }
.tn-pricing-table td:last-child { font-weight: 600; color: var(--tn-primary); }

/* Booking box extras */
.tn-price-box__badge { position: static; display: inline-block; margin-bottom: 10px; }
.tn-price-box__row { font-size: .9rem; margin: 6px 0; text-align: left; }

/* WhatsApp float */
.tn-whatsapp {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 90;
	width: 56px; height: 56px;
	display: flex; align-items: center; justify-content: center;
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(0,0,0,.25);
	transition: transform .2s ease;
}
.tn-whatsapp:hover { transform: scale(1.08); color: #fff; }

/* Gallery grid */
.tn-gallery-grid img { border-radius: var(--tn-radius); width: 100%; height: 100%; object-fit: cover; }
