/*
Theme Name: The Trek O Mania Adventures
Theme URI: https://trekomaniaadventures.com
Description: Custom child theme for The Trek O Mania Adventures, built on Hello Elementor and skinned for WP Travel Engine trips. Adventure-orange branding, month-filterable trip cards, single-trip page with sticky WhatsApp sidebar.
Author: Markeify
Author URI: https://markeify.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-trekomania
*/

/* ==========================================================================
   1. BRAND TOKENS
   ========================================================================== */
:root {
	--tom-orange: #1E62C4;
	--tom-orange-dark: #12468F;
	--tom-orange-light: #E8F1FD;
	--tom-navy: #1B2430;
	--tom-charcoal: #2E3742;
	--tom-blue: #2F80ED;
	--tom-blue-dark: #1E62C4;
	--tom-grey: #6B7280;
	--tom-grey-light: #9AA3AF;
	--tom-border: #E7E9EC;
	--tom-bg: #FFFFFF;
	--tom-bg-soft: #F7F8FA;
	--tom-success: #2CA85A;
	--tom-danger: #E23D3D;
	--tom-white: #FFFFFF;

	--tom-radius-sm: 8px;
	--tom-radius-md: 12px;
	--tom-radius-lg: 16px;
	--tom-radius-pill: 999px;

	--tom-shadow-card: 0 6px 24px rgba(27, 36, 48, 0.08);
	--tom-shadow-card-hover: 0 14px 32px rgba(27, 36, 48, 0.14);
	--tom-shadow-float: 0 8px 24px rgba(27, 36, 48, 0.25);

	--tom-font-heading: 'Plus Jakarta Sans', 'Product Sans', sans-serif;
	--tom-font-body: 'Sora', 'Plus Jakarta Sans', 'Product Sans', sans-serif;

	--tom-container: 1140px;
	--tom-header-h: 96px;
}

/* ==========================================================================
   2. GOOGLE FONTS (also enqueued via functions.php; @import kept as fallback)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   3. BASE / RESET
   ========================================================================== */
html { scroll-behavior: smooth; }

body.trekomania {
	font-family: var(--tom-font-body);
	color: var(--tom-charcoal);
	background: var(--tom-bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.trekomania h1,
.trekomania h2,
.trekomania h3,
.trekomania h4,
.trekomania h5,
.trekomania h6 {
	font-family: var(--tom-font-heading);
	color: var(--tom-navy);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.5em;
}

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

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

.tom-container {
	width: 100%;
	max-width: var(--tom-container);
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

.tom-section { padding: 64px 0; }
.tom-section--soft { background: var(--tom-bg-soft); }

.tom-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--tom-orange);
	margin-bottom: 10px;
}

.tom-section-title {
	font-size: clamp(26px, 3.2vw, 38px);
	margin-bottom: 8px;
}

.tom-section-sub {
	color: var(--tom-grey);
	font-size: 16px;
	max-width: 620px;
	margin-bottom: 36px;
}

.tom-accent { color: var(--tom-orange); }

/* Buttons */
.tom-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--tom-radius-pill);
	font-weight: 700;
	font-size: 15px;
	font-family: var(--tom-font-heading);
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
	white-space: nowrap;
}
.tom-btn--primary { background: var(--tom-orange); color: var(--tom-white); }

.tom-btn--outline { background: transparent; border-color: var(--tom-white); color: var(--tom-white); }

.tom-btn--whatsapp { background: #25D366; color: #fff; }
.tom-btn--whatsapp:hover { background: #1DA851; color: #fff; }

.tom-btn--block { width: 100%; justify-content: center; }

/* The generic ".trekomania a { color: var(--tom-blue) }" link rule (see BASE
   above) has higher CSS specificity (class+element) than these single-class
   button color rules, which was silently overriding button text to blue on
   blue backgrounds. Re-assert the intended text colors at higher specificity
   so buttons always stay readable regardless of link-color rule order. */
.trekomania a.tom-btn--primary,
.trekomania a.tom-btn--primary:visited { color: var(--tom-white); }
.trekomania a.tom-btn--primary:hover { color: var(--tom-white); }
.trekomania a.tom-btn--outline,
.trekomania a.tom-btn--outline:visited,
.trekomania a.tom-btn--outline:hover { color: var(--tom-white); }
.trekomania a.tom-btn--whatsapp,
.trekomania a.tom-btn--whatsapp:visited,
.trekomania a.tom-btn--whatsapp:hover { color: #fff; }

/* ==========================================================================
   4. HEADER / LOGO
   ========================================================================== */
.tom-site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: rgba(255,255,255,.96);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--tom-border);
	min-height: var(--tom-header-h);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
/* Keep the sticky header below the WP admin toolbar when logged in. */
body.admin-bar .tom-site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .tom-site-header { top: 46px; }
}
.tom-site-header .tom-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.tom-logo-lockup { display: flex; align-items: center; gap: 12px; max-height: var(--tom-header-h); overflow: hidden; margin-right: auto; }

.tom-primary-nav { margin: 0 48px; }

.tom-header-cta { margin-left: auto; }
.tom-logo-lockup .custom-logo-link { display: flex; align-items: center; }
.tom-logo-lockup img,
.tom-logo-lockup svg,
.tom-logo-lockup .custom-logo {
	height: 72px !important;
	width: auto !important;
	max-width: 260px;
	object-fit: contain;
}
.tom-logo-text-badge {
	display: flex; align-items: center; justify-content: center;
	height: 52px; width: 52px; border-radius: 50%;
	background: conic-gradient(from 180deg, var(--tom-blue), #7FB8FF, var(--tom-blue));
	color: #fff; font-family: var(--tom-font-heading); font-weight: 800; font-size: 10px;
	flex-shrink: 0;
}
.tom-logo-name { line-height: 1.15; }
.tom-logo-name strong { display: block; font-family: var(--tom-font-heading); font-weight: 800; font-size: 16px; color: var(--tom-navy); letter-spacing: .01em; }
.tom-logo-name span { display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--tom-blue); text-transform: uppercase; }

.tom-primary-nav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.tom-primary-nav a { color: var(--tom-charcoal); font-weight: 600; font-size: 15px; }
.tom-primary-nav a:hover { color: var(--tom-orange); }

.tom-header-cta { display: flex; align-items: center; gap: 14px; }

/* ==========================================================================
   5. HERO
   ========================================================================== */
.tom-hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, rgba(8,11,16,.82) 0%, rgba(8,11,16,.55) 45%, rgba(8,11,16,.25) 75%), linear-gradient(0deg, rgba(8,11,16,.55) 0%, rgba(8,11,16,0) 40%), var(--tom-hero-image, linear-gradient(135deg,#26313f,#0f141c)) center/cover no-repeat;
	color: #fff;
	overflow: hidden;
}
.tom-hero__inner { position: relative; z-index: 2; max-width: 620px; }
.tom-hero__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
	padding: 6px 16px; border-radius: var(--tom-radius-pill);
	font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 22px;
}
.tom-hero h1 {
	color: #fff;
	font-size: clamp(34px, 5.4vw, 60px);
	font-weight: 800;
	margin-bottom: 20px;
}
.tom-hero h1 em { font-style: normal; color: #fff; }
.tom-hero p { font-size: 18px; color: rgba(255,255,255,.88); max-width: 520px; margin-bottom: 30px; }
.tom-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.tom-hero__stats { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.tom-hero__stat strong { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.tom-hero__stat span { font-size: 13px; color: rgba(255,255,255,.75); }

/* ==========================================================================
   6. MONTH FILTER TAB BAR
   ========================================================================== */
.tom-month-filter {
	position: relative;
	z-index: 10;
	margin: -34px auto 0;
	max-width: calc(var(--tom-container) - 48px);
	background: #fff;
	border-radius: var(--tom-radius-lg);
	box-shadow: var(--tom-shadow-card);
	padding: 10px;
	display: flex;
	gap: 6px;
	overflow-x: auto;
	scrollbar-width: thin;
}
.tom-month-filter::-webkit-scrollbar { height: 4px; }
.tom-month-filter::-webkit-scrollbar-thumb { background: var(--tom-border); border-radius: 4px; }

.tom-month-tab {
	flex: 0 0 auto;
	border: none;
	background: transparent;
	padding: 10px 18px;
	border-radius: var(--tom-radius-pill);
	font-family: var(--tom-font-heading);
	font-weight: 600;
	font-size: 14px;
	color: var(--tom-grey);
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}
.tom-month-tab:hover { color: var(--tom-navy); background: var(--tom-bg-soft); }
.tom-month-tab.is-active { background: var(--tom-orange); color: #fff; }

/* ==========================================================================
   7. TRIP CARD (grid + card design, also used by archive-trip.php)
   ========================================================================== */
.tom-trip-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 44px;
}

.tom-trip-card {
	position: relative;
	background: #fff;
	border-radius: var(--tom-radius-lg);
	box-shadow: var(--tom-shadow-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
	border: 1px solid var(--tom-border);
}
.tom-trip-card:hover { transform: translateY(-6px); box-shadow: var(--tom-shadow-card-hover); }
.tom-trip-card[hidden] { display: none; }

.tom-trip-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--tom-bg-soft); }
.tom-trip-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tom-trip-card:hover .tom-trip-card__media img { transform: scale(1.06); }

.tom-trip-card__badge {
	position: absolute; top: 14px; left: 14px;
	background: rgba(255,255,255,.95);
	color: var(--tom-navy);
	font-size: 12px; font-weight: 700;
	padding: 6px 14px;
	border-radius: var(--tom-radius-pill);
	display: flex; align-items: center; gap: 6px;
}
.tom-trip-card__badge svg { width: 13px; height: 13px; color: var(--tom-orange); }

.tom-trip-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }

.tom-trip-card__meta {
	display: flex; align-items: center; gap: 16px;
	font-size: 12.5px; color: var(--tom-grey); font-weight: 600;
	margin-bottom: 10px; flex-wrap: wrap;
}
.tom-trip-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.tom-trip-card__meta svg { width: 14px; height: 14px; color: var(--tom-blue); flex-shrink: 0; }

.tom-trip-card__title { font-size: 18px; margin-bottom: 4px; }
.tom-trip-card__title a { color: var(--tom-navy); }
.tom-trip-card__title a:hover { color: var(--tom-orange); }

.tom-trip-card__desc { color: var(--tom-grey); font-size: 13.5px; margin-bottom: 16px; flex: 1; }

.tom-trip-card__footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px dashed var(--tom-border); padding-top: 14px; }
.tom-trip-card__footer--link-only { justify-content: flex-end; }

.tom-trip-card__price { font-family: var(--tom-font-heading); font-weight: 800; font-size: 16px; color: var(--tom-orange); }
.tom-trip-card__price small { display: block; font-size: 11px; font-weight: 600; color: var(--tom-grey-light); text-transform: uppercase; }

.tom-trip-card__link { font-weight: 700; font-size: 13.5px; color: var(--tom-navy); display: inline-flex; align-items: center; gap: 6px; }
.tom-trip-card__link:hover { color: var(--tom-orange); }

.tom-trip-empty { text-align: center; padding: 60px 20px; color: var(--tom-grey); font-size: 15px; }

/* Archive page header/filters */
.tom-archive-header { padding: 54px 0 30px; background: var(--tom-bg-soft); text-align: center; }
.tom-archive-header h1 { font-size: clamp(28px,4vw,42px); }
.tom-archive-header p { color: var(--tom-grey); max-width: 560px; margin: 0 auto; }
.tom-archive-body { padding: 40px 0 80px; }

.tom-pagination { margin-top: 48px; display: flex; justify-content: center; gap: 8px; }
.tom-pagination a, .tom-pagination span {
	display: inline-flex; align-items:center; justify-content:center;
	min-width: 40px; height: 40px; border-radius: var(--tom-radius-sm);
	border: 1px solid var(--tom-border); font-weight: 600; color: var(--tom-navy);
}
.tom-pagination .current { background: var(--tom-orange); color: #fff; border-color: var(--tom-orange); }

/* ==========================================================================
   8. POPULAR DESTINATIONS
   ========================================================================== */
.tom-destinations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.tom-destination-card { position: relative; border-radius: var(--tom-radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.tom-destination-card img { width: 100%; height: 100%; object-fit: cover; }
.tom-destination-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.75)); }
.tom-destination-card__label { position: absolute; left: 16px; bottom: 16px; z-index: 2; color: #fff; font-family: var(--tom-font-heading); font-weight: 700; font-size: 17px; }
.tom-destination-card__label span { display: block; font-size: 12px; font-weight: 500; opacity: .85; }

/* ==========================================================================
   9. TESTIMONIALS
   ========================================================================== */
.tom-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.tom-testimonial-card { background: #fff; border: 1px solid var(--tom-border); border-radius: var(--tom-radius-lg); padding: 28px; box-shadow: var(--tom-shadow-card); }
.tom-testimonial-card__stars { color: #FFB020; font-size: 14px; margin-bottom: 12px; }
.tom-testimonial-card p { color: var(--tom-charcoal); font-size: 14.5px; margin-bottom: 20px; }
.tom-testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.tom-testimonial-card__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.tom-testimonial-card__author strong { display: block; font-size: 14px; color: var(--tom-navy); }
.tom-testimonial-card__author span { font-size: 12.5px; color: var(--tom-grey); }

/* ==========================================================================
   9b. GOOGLE REVIEWS - AUTO-SCROLLING CAROUSEL ("What Travelers Say")
   ========================================================================== */
.trekomania-reviews-section { overflow: hidden; }

.trekomania-reviews-carousel {
	position: relative;
	overflow: hidden;
	margin-top: 40px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.trekomania-reviews-track {
	display: flex;
	gap: 22px;
	width: max-content;
	animation: tom-reviews-scroll 45s linear infinite;
}

.trekomania-reviews-carousel:hover .trekomania-reviews-track,
.trekomania-reviews-carousel.is-paused .trekomania-reviews-track {
	animation-play-state: paused;
}

@keyframes tom-reviews-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.trekomania-review-card {
	flex: 0 0 320px;
	background: #fff;
	border: 1px solid var(--tom-border);
	border-radius: var(--tom-radius-lg);
	box-shadow: var(--tom-shadow-card);
	padding: 24px;
	display: flex;
	flex-direction: column;
}

.trekomania-review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.trekomania-review-card__avatar {
	width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
	background: var(--tom-bg-soft);
}
.trekomania-review-card__name { font-family: var(--tom-font-heading); font-weight: 700; font-size: 14.5px; color: var(--tom-navy); }
.trekomania-review-card__badge {
	display: inline-flex; align-items: center; gap: 4px;
	font-size: 11px; font-weight: 700; color: var(--tom-blue);
	background: rgba(47,128,237,.1); padding: 2px 8px; border-radius: var(--tom-radius-pill);
	margin-top: 2px;
}
.trekomania-review-card__trip { font-size: 12.5px; color: var(--tom-orange); font-weight: 600; margin-top: 2px; }
.trekomania-review-card__date { font-size: 11.5px; color: var(--tom-grey-light); margin-left: auto; white-space: nowrap; }

.trekomania-review-card__stars { color: #FFB020; font-size: 13px; margin-bottom: 10px; letter-spacing: 1px; }

.trekomania-review-card__text {
	font-size: 13.5px; color: var(--tom-charcoal); flex: 1;
	display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.trekomania-review-card.is-expanded .trekomania-review-card__text {
	display: block; -webkit-line-clamp: unset; overflow: visible;
}

.trekomania-review-card__readmore {
	align-self: flex-start; margin-top: 10px; font-size: 12.5px; font-weight: 700;
	color: var(--tom-blue); background: none; border: none; cursor: pointer; padding: 0;
}
.trekomania-review-card__readmore:hover { color: var(--tom-blue-dark); text-decoration: underline; }

/* ==========================================================================
   10. BLOG / STORIES
   ========================================================================== */
.tom-stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.tom-story-card { border-radius: var(--tom-radius-lg); overflow: hidden; box-shadow: var(--tom-shadow-card); background: #fff; }
.tom-story-card__img { aspect-ratio: 16/10; overflow: hidden; }
.tom-story-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tom-story-card__body { padding: 20px; }
.tom-story-card__date { font-size: 12px; color: var(--tom-orange); font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.tom-story-card__title { font-size: 16.5px; margin-bottom: 8px; }
.tom-story-card__excerpt { color: var(--tom-grey); font-size: 13.5px; }

/* ==========================================================================
   11. PHOTO GALLERY (masonry-ish grid)
   ========================================================================== */
.tom-photo-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 14px; margin-top: 40px; }
.tom-photo-gallery a { border-radius: var(--tom-radius-md); overflow: hidden; display: block; }
.tom-photo-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.tom-photo-gallery a:hover img { transform: scale(1.08); }
.tom-photo-gallery a:nth-child(4n+1) { grid-row: span 2; }

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.tom-site-footer { background: var(--tom-navy); color: rgba(255,255,255,.75); padding: 64px 0 24px; }
.tom-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.tom-footer-brand p { margin-top: 14px; font-size: 14px; max-width: 280px; }
.tom-footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.tom-footer-col ul { list-style: none; margin: 0; padding: 0; }
.tom-footer-col li { margin-bottom: 10px; }
.tom-footer-col a { color: rgba(255,255,255,.72); font-size: 14px; }
.tom-footer-col a:hover { color: var(--tom-orange); }
.tom-footer-brand .tom-logo-lockup { align-items: center; margin-bottom: 4px; }
.tom-footer-brand .tom-logo-lockup img,
.tom-footer-brand .tom-logo-lockup .custom-logo { height: 56px !important; }

.tom-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.tom-footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.tom-footer-social a svg { width: 18px; height: 18px; }
.tom-footer-social a:hover { background: var(--tom-orange); color: #fff; }
.tom-footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* ==========================================================================
   13. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.tom-whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9999;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--tom-shadow-float);
	transition: transform .2s ease;
}
.tom-whatsapp-float:hover { transform: scale(1.08); }
.tom-whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
.tom-whatsapp-float__pulse {
	position: absolute; inset: 0; border-radius: 50%; background: #25D366;
	animation: tom-pulse 2.2s infinite;
	z-index: -1;
}
@keyframes tom-pulse {
	0% { transform: scale(1); opacity: .6; }
	100% { transform: scale(1.9); opacity: 0; }
}

/* ==========================================================================
   14. SINGLE TRIP PAGE
   ========================================================================== */
.tom-trip-single { padding-bottom: 60px; }

.tom-trip-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; margin-bottom: 32px; margin-top: 10px; align-items: stretch; }
.tom-trip-gallery__main { border-radius: var(--tom-radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.tom-trip-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.tom-trip-gallery__thumbs { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 12px; height: 100%; }
.tom-trip-gallery__thumbs a { border-radius: var(--tom-radius-md); overflow: hidden; position: relative; display: block; }
.tom-trip-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tom-trip-gallery__thumbs .is-more::after {
	content: attr(data-more);
	position: absolute; inset: 0; background: rgba(15,20,28,.55);
	color: #fff; font-weight: 700; font-size: 18px;
	display: flex; align-items: center; justify-content: center;
}

.tom-trip-head { margin-bottom: 30px; }
.tom-trip-head__eyebrow { color: var(--tom-orange); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.tom-trip-head h1 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 6px; }
.tom-trip-head__subtitle { color: var(--tom-grey); font-size: 16px; }

.tom-trip-facts { display: flex; flex-wrap: wrap; align-items: center; gap: 34px; margin: 26px 0; }
.tom-trip-fact { display: flex; align-items: center; gap: 10px; }
.tom-trip-fact svg { width: 24px; height: 24px; color: var(--tom-charcoal); flex-shrink: 0; }
.tom-trip-fact__text { display: flex; flex-direction: column; }
.tom-trip-fact strong { font-size: 14.5px; font-weight: 700; color: var(--tom-navy); line-height: 1.3; }
.tom-trip-fact span { font-size: 12.5px; color: var(--tom-grey); }

.tom-trip-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }

.tom-trip-tabs {
	position: sticky; top: var(--tom-header-h);
	z-index: 40;
	background: #fff;
	border-bottom: 1px solid var(--tom-border);
	display: flex;
	gap: 4px;
	overflow-x: auto;
	margin-bottom: 30px;
	padding-top: 6px;
}
/* Keep the tab bar below the sticky header (and the WP admin toolbar, when
   logged in) instead of sliding underneath it. */
body.admin-bar .tom-trip-tabs { top: calc(var(--tom-header-h) + 32px); }
@media screen and (max-width: 782px) {
	body.admin-bar .tom-trip-tabs { top: calc(var(--tom-header-h) + 46px); }
}
.tom-trip-tabs a {
	padding: 14px 18px;
	font-weight: 800;
	font-size: 19px;
	color: var(--tom-grey);
	white-space: nowrap;
	border-bottom: 3px solid transparent;
}
.tom-trip-tabs a.is-active,
.tom-trip-tabs a:hover { color: var(--tom-orange); border-color: var(--tom-orange); }

.tom-trip-section { padding: 5px 0 34px; scroll-margin-top: calc(var(--tom-header-h) + 60px); }
.tom-trip-section h2 { font-size: 27px; font-weight: 800; margin-top: 0; margin-bottom: 18px; }
.tom-trip-section .content p { color: var(--tom-charcoal); }

/* Itinerary accordion */
.tom-itinerary-item { border: 1px solid var(--tom-border); border-radius: var(--tom-radius-md); margin-bottom: 12px; overflow: hidden; }
.tom-itinerary-item__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 16px 18px; cursor: pointer; background: var(--tom-bg-soft);
}
.tom-itinerary-item__head strong { font-family: var(--tom-font-heading); color: var(--tom-navy); font-size: 15px; }
.tom-itinerary-item__icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--tom-orange); transition: transform .2s ease; }
.tom-itinerary-item.is-open .tom-itinerary-item__icon { transform: rotate(180deg); }
.tom-itinerary-item__body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .3s ease;
	padding: 0 18px;
}
.tom-itinerary-item.is-open .tom-itinerary-item__body { grid-template-rows: 1fr; padding: 6px 18px 16px; }
.tom-itinerary-item__body-inner { overflow: hidden; min-height: 0; }
.tom-itinerary-item__body p { color: var(--tom-grey); font-size: 14px; }

/* Inclusion/Exclusion two-col checklist */
.tom-trip-section h2 em {
	font-style: italic;
	color: var(--tom-orange);
	font-weight: 800;
}

.tom-incl-excl { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.tom-include,
.tom-exclude {
	border: 1px solid var(--tom-border);
	border-radius: var(--tom-radius-lg);
	overflow: hidden;
	background: #fff;
}
.tom-incl-excl__head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 20px;
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.tom-incl-excl__head svg { width: 18px; height: 18px; flex-shrink: 0; }
.tom-include .tom-incl-excl__head { background: #E8F7EE; color: var(--tom-success); }
.tom-exclude .tom-incl-excl__head { background: #FDECEC; color: var(--tom-danger); }
.tom-incl-excl ul { list-style: none; margin: 0; padding: 6px 20px 14px; }
.tom-incl-excl li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; font-size: 14.5px; color: var(--tom-charcoal); border-bottom: 1px solid var(--tom-bg-soft); }
.tom-incl-excl li:last-child { border-bottom: none; }
.tom-incl-excl li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.tom-incl-excl .tom-include li svg { color: var(--tom-success); }
.tom-incl-excl .tom-exclude li svg { color: var(--tom-danger); }

/* Highlights */
.tom-highlights { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tom-highlights li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.tom-highlights li svg { width: 18px; height: 18px; color: var(--tom-orange); flex-shrink: 0; margin-top: 2px; }

/* Stay */
.tom-stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tom-stay-card { border: 1px solid var(--tom-border); border-radius: var(--tom-radius-md); overflow: hidden; }
.tom-stay-card img { aspect-ratio: 4/3; object-fit: cover; }
.tom-stay-card__body { padding: 12px 14px; }
.tom-stay-card__body strong { font-size: 14px; color: var(--tom-navy); }
.tom-stay-card__body span { font-size: 12.5px; color: var(--tom-grey); }

/* Reviews */
.tom-review { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--tom-border); }
.tom-review:last-child { border-bottom: none; }
.tom-review img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.tom-review__stars { color: #FFB020; font-size: 13px; margin-bottom: 4px; }
.tom-review strong { color: var(--tom-navy); font-size: 14px; }
.tom-review p { color: var(--tom-grey); font-size: 14px; margin-top: 4px; }

/* FAQ accordion (reuse itinerary look) */
.tom-faq-item { border-bottom: 1px solid var(--tom-border); }
.tom-faq-item__head { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; cursor: pointer; }
.tom-faq-item__head strong { font-size: 15px; color: var(--tom-navy); font-family: var(--tom-font-heading); }
.tom-faq-item__icon { width: 18px; height: 18px; color: var(--tom-orange); transition: transform .2s ease; flex-shrink: 0; }
.tom-faq-item.is-open .tom-faq-item__icon { transform: rotate(45deg); }
.tom-faq-item__body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .3s ease;
}
.tom-faq-item.is-open .tom-faq-item__body { grid-template-rows: 1fr; padding-bottom: 16px; }
.tom-faq-item__body-inner { overflow: hidden; min-height: 0; }
.tom-faq-item__body p { color: var(--tom-grey); font-size: 14px; }

/* Trip photo gallery inside single page */
.tom-trip-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tom-trip-photo-grid a { border-radius: var(--tom-radius-md); overflow: hidden; aspect-ratio: 1/1; }
.tom-trip-photo-grid img { width: 100%; height: 100%; object-fit: cover; }

/* Sticky sidebar */
.tom-trip-sidebar { position: sticky; top: calc(var(--tom-header-h) + 74px); }
body.admin-bar .tom-trip-sidebar { top: calc(var(--tom-header-h) + 74px + 32px); }
@media screen and (max-width: 782px) {
	body.admin-bar .tom-trip-sidebar { top: calc(var(--tom-header-h) + 74px + 46px); }
}
.tom-sidebar-box {
	background: linear-gradient(160deg, #3D8BEF, var(--tom-blue-dark));
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--tom-radius-lg);
	box-shadow: var(--tom-shadow-card);
	padding: 28px;
	color: #fff;
}
.tom-sidebar-box__price-label { font-size: 12px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.tom-sidebar-box__price { font-family: var(--tom-font-heading); font-weight: 800; font-size: 32px; color: #fff; margin: 8px 0 2px; }
.tom-sidebar-box__price del { font-size: 16px; color: rgba(255,255,255,.4); font-weight: 500; margin-left: 8px; }
.tom-sidebar-box__note { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.tom-sidebar-box hr { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 18px 0; }
.tom-sidebar-box__config-label { font-size: 12px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: 8px; }
.tom-sidebar-box__config-value { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 22px; }
.tom-sidebar-box .tom-btn--sidebar-cta {
	background: #fff;
	color: var(--tom-navy);
	font-size: 15px;
	padding: 15px 26px;
}
.tom-sidebar-box__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 12.5px;
	color: rgba(255,255,255,.55);
	margin-top: 14px;
}
.tom-sidebar-box__secure svg { color: var(--tom-success); flex-shrink: 0; }
.tom-sidebar-box__list { list-style: none; margin: 20px 0 0; padding: 16px 0 0; border-top: 1px solid rgba(255,255,255,.12); }
.tom-sidebar-box__list li { display: flex; justify-content: space-between; font-size: 13.5px; padding: 6px 0; color: rgba(255,255,255,.85); }
.tom-sidebar-box__list li span:first-child { color: rgba(255,255,255,.5); }

/* ==========================================================================
   15. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
	.tom-trip-grid { grid-template-columns: repeat(2, 1fr); }
	.tom-destinations-grid { grid-template-columns: repeat(2, 1fr); }
	.tom-testimonials-grid { grid-template-columns: 1fr 1fr; }
	.tom-stories-grid { grid-template-columns: 1fr 1fr; }
	.tom-photo-gallery { grid-template-columns: repeat(3, 1fr); }
	.tom-trip-layout { grid-template-columns: 1fr; }
	.tom-trip-sidebar { position: static; order: -1; }
	.tom-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Mobile hamburger menu (hidden on desktop) ---- */
.tom-menu-toggle {
	display: none !important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}
.tom-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--tom-navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.tom-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tom-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tom-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.tom-mobile-nav {
	display: none;
	flex-basis: 100%;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid var(--tom-border);
	padding: 8px 24px 20px;
	max-height: calc(100vh - var(--tom-header-h));
	overflow-y: auto;
}
.tom-mobile-nav.is-open { display: block; }
.tom-mobile-nav ul { list-style: none; margin: 0 0 16px; padding: 0; }
.tom-mobile-nav li { border-bottom: 1px solid var(--tom-bg-soft); }
.tom-mobile-nav a { display: block; padding: 14px 4px; font-weight: 600; font-size: 15px; color: var(--tom-charcoal); }

@media (max-width: 768px) {
	.trekomania-review-card { flex-basis: 260px; }
	.tom-primary-nav { display: none; }
	.tom-header-cta { display: none; }
	.tom-menu-toggle { display: flex !important; }
	.tom-hero { min-height: 520px; text-align: left; }
	.tom-hero__stats { gap: 24px; }
	.tom-month-filter { margin-top: -24px; }
	.tom-trip-grid { grid-template-columns: 1fr; }
	.tom-destinations-grid { grid-template-columns: 1fr 1fr; }
	.tom-testimonials-grid { grid-template-columns: 1fr; }
	.tom-stories-grid { grid-template-columns: 1fr; }
	.tom-photo-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
	.tom-trip-gallery { grid-template-columns: 1fr; }
	.tom-trip-gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
	.tom-trip-facts { grid-template-columns: repeat(2, 1fr); }
	.tom-incl-excl { grid-template-columns: 1fr; }
	.tom-highlights { grid-template-columns: 1fr; }
	.tom-stay-grid { grid-template-columns: 1fr 1fr; }
	.tom-trip-photo-grid { grid-template-columns: repeat(3, 1fr); }
	.tom-footer-grid { grid-template-columns: 1fr; gap: 28px; }
	.tom-footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
	.tom-section { padding: 44px 0; }
	.tom-hero { min-height: 460px; }
	.tom-hero h1 { font-size: 30px; }
	.tom-destinations-grid { grid-template-columns: 1fr; }
	.tom-photo-gallery { grid-template-columns: 1fr 1fr; }
	.tom-trip-facts { grid-template-columns: 1fr 1fr; }
	.tom-stay-grid { grid-template-columns: 1fr; }
	.tom-trip-photo-grid { grid-template-columns: repeat(2, 1fr); }
	.tom-whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
	.tom-whatsapp-float svg { width: 26px; height: 26px; }
	.tom-sidebar-box { padding: 20px; }
}

/* ==========================================================================
   16. CONTACT PAGE
   ========================================================================== */
.tom-contact-hero {
	background: linear-gradient(160deg, var(--tom-navy), #0c1219);
	color: #fff;
	padding: 64px 0;
	text-align: center;
}
.tom-contact-hero .tom-hero__eyebrow { margin-bottom: 18px; }
.tom-contact-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 48px); margin-bottom: 14px; }
.tom-contact-hero h1 em { font-style: normal; color: var(--tom-orange); }
.tom-contact-hero p { color: rgba(255,255,255,.75); font-size: 17px; max-width: 560px; margin: 0 auto; }

.tom-contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }

.tom-contact-form-card {
	background: #fff;
	border: 1px solid var(--tom-border);
	border-radius: var(--tom-radius-lg);
	box-shadow: var(--tom-shadow-card);
	padding: 32px;
}
.tom-contact-form-card h2 { font-size: 22px; margin-bottom: 6px; }
.tom-contact-form-card > p { color: var(--tom-grey); font-size: 14px; margin-bottom: 22px; }
.tom-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tom-contact-form__field { margin-bottom: 16px; }
.tom-contact-form__field label { display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--tom-grey); margin-bottom: 6px; }
.tom-contact-form__field input,
.tom-contact-form__field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--tom-border);
	border-radius: var(--tom-radius-sm);
	font-family: var(--tom-font-body);
	font-size: 14px;
	color: var(--tom-charcoal);
	background: var(--tom-bg-soft);
}
.tom-contact-form__field input:focus,
.tom-contact-form__field textarea:focus { outline: none; border-color: var(--tom-blue); background: #fff; }
.tom-contact-form__note { font-size: 12.5px; color: var(--tom-grey); text-align: center; margin-top: 12px; }

.tom-contact-info-card {
	background: linear-gradient(160deg, #3D8BEF, var(--tom-blue-dark));
	border-radius: var(--tom-radius-lg);
	padding: 30px;
	color: #fff;
}
.tom-contact-info-card h3 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 24px; }
.tom-contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.tom-contact-info-item svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.9); }
.tom-contact-info-item__label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.55); font-weight: 700; margin-bottom: 4px; }
.tom-contact-info-item__value { display: block; font-size: 14.5px; line-height: 1.5; color: #fff; }

.tom-contact-map { border-radius: var(--tom-radius-lg); overflow: hidden; box-shadow: var(--tom-shadow-card); }
.tom-contact-map iframe { display: block; }

@media (max-width: 900px) {
	.tom-contact-grid { grid-template-columns: 1fr; }
	.tom-contact-form__row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   17. BLOG ARCHIVE PAGE
   ========================================================================== */
.tom-blog-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.tom-blog-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--tom-radius-lg);
	overflow: hidden;
	box-shadow: var(--tom-shadow-card);
	border: 1px solid var(--tom-border);
	transition: transform .2s ease, box-shadow .2s ease;
}
.tom-blog-card:hover { transform: translateY(-4px); box-shadow: var(--tom-shadow-card-hover); }
.tom-blog-card__img { aspect-ratio: 16/10; overflow: hidden; }
.tom-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tom-blog-card:hover .tom-blog-card__img img { transform: scale(1.05); }
.tom-blog-card__img--placeholder { width: 100%; height: 100%; background: var(--tom-bg-soft); }
.tom-blog-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.tom-blog-card__date { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--tom-grey); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 10px; }
.tom-blog-card__date svg { width: 14px; height: 14px; }
.tom-blog-card__title { font-size: 18px; font-weight: 800; color: var(--tom-navy); margin-bottom: 10px; line-height: 1.35; }
.tom-blog-card__excerpt { font-size: 14px; color: var(--tom-grey); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.tom-blog-card__readmore { font-size: 13.5px; font-weight: 700; color: var(--tom-blue); margin-top: auto; }

.tom-blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.tom-blog-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 10px;
	border-radius: var(--tom-radius-sm); border: 1px solid var(--tom-border);
	color: var(--tom-charcoal); font-weight: 600; font-size: 14px;
}
.tom-blog-pagination .page-numbers.current { background: var(--tom-blue); border-color: var(--tom-blue); color: #fff; }
.tom-blog-pagination .page-numbers.dots { border: none; }

@media (max-width: 1000px) {
	.tom-blog-archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.tom-blog-archive-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   18. ABOUT PAGE
   ========================================================================== */
.tom-about-intro { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.tom-about-intro p { font-size: 16.5px; line-height: 1.75; color: var(--tom-charcoal); margin-bottom: 20px; }

.tom-about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 820px;
	margin: 0 auto;
	padding: 32px;
	background: var(--tom-bg-soft);
	border-radius: var(--tom-radius-lg);
}
.tom-about-stat { text-align: center; }
.tom-about-stat strong { display: block; font-family: var(--tom-font-heading); font-size: 30px; font-weight: 800; color: var(--tom-blue); }
.tom-about-stat span { display: block; font-size: 13px; color: var(--tom-grey); margin-top: 4px; }

.tom-about-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}
.tom-about-feature-card {
	background: #fff;
	border: 1px solid var(--tom-border);
	border-radius: var(--tom-radius-lg);
	box-shadow: var(--tom-shadow-card);
	padding: 28px;
	transition: transform .2s ease, box-shadow .2s ease;
}
.tom-about-feature-card:hover { transform: translateY(-4px); box-shadow: var(--tom-shadow-card-hover); }
.tom-about-feature-card__icon {
	width: 48px; height: 48px;
	display: flex; align-items: center; justify-content: center;
	border-radius: var(--tom-radius-md);
	background: var(--tom-orange-light);
	color: var(--tom-blue);
	margin-bottom: 18px;
}
.tom-about-feature-card__icon svg { width: 24px; height: 24px; }
.tom-about-feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.tom-about-feature-card p { font-size: 14px; color: var(--tom-grey); line-height: 1.6; }

.tom-about-cta {
	background: linear-gradient(160deg, #3D8BEF, var(--tom-blue-dark));
	color: #fff;
	text-align: center;
	padding: 72px 0;
}
.tom-about-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 12px; }
.tom-about-cta p { color: rgba(255,255,255,.85); font-size: 16px; margin-bottom: 28px; }
.tom-about-cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.tom-about-cta .tom-btn--outline { border-color: rgba(255,255,255,.6); }

@media (max-width: 900px) {
	.tom-about-stats { grid-template-columns: repeat(2, 1fr); }
	.tom-about-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.tom-about-stats { grid-template-columns: 1fr 1fr; }
	.tom-about-features { grid-template-columns: 1fr; }
}
