/* =========================================================================
   YATRA TRAILS — main stylesheet
   Design concept: "The Route Line" — a dashed trip-map path with waypoint
   pins threads between homepage sections, echoing the distance-and-route
   language tour operators live in (km markers, day-wise itineraries).
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
	--yt-ink: #211d18;
	--yt-ink-soft: #55504a;
	--yt-sand: #f4eee3;
	--yt-cream: #fffcf6;
	--yt-indigo: #1c2b4a;
	--yt-indigo-soft: #2c3e63;
	--yt-terracotta: #c35a3e; /* overridden inline by Customizer accent colour */
	--yt-terracotta-dark: #a4482f;
	--yt-marigold: #e3a63d;
	--yt-sage: #56705b;
	--yt-line: #e2d8c6;

	--yt-display: 'Fraunces', Georgia, 'Times New Roman', serif;
	--yt-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--yt-mono: 'Space Mono', 'Courier New', monospace;

	--yt-radius: 6px;
	--yt-container: 1200px;
	--yt-shadow: 0 18px 40px -20px rgba(28, 43, 74, 0.25);
}

/* ---------- Reset-ish base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--yt-body);
	color: var(--yt-ink);
	background: var(--yt-sand);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
	font-family: var(--yt-display);
	color: var(--yt-indigo);
	line-height: 1.15;
	margin: 0 0 0.5em;
	font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.container { max-width: var(--yt-container); margin: 0 auto; padding: 0 24px; }

/* Focus visibility kept everywhere, including custom components */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
	outline: 3px solid var(--yt-marigold);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.eyebrow {
	font-family: var(--yt-mono);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	color: var(--yt-terracotta);
	font-weight: 700;
	margin: 0 0 0.6em;
	display: inline-block;
}
.eyebrow--light { color: var(--yt-marigold); }

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

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--yt-radius);
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid transparent;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	white-space: nowrap;
}
.btn--primary { background: var(--yt-terracotta); color: #fff; }
.btn--primary:hover { background: var(--yt-terracotta-dark); transform: translateY(-2px); }
.btn--outline { border-color: var(--yt-indigo); color: var(--yt-indigo); }
.btn--outline:hover { background: var(--yt-indigo); color: #fff; }
.btn--outline-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--yt-indigo); }
.btn--ghost-light { border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(255,255,255,0.08); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.2); }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; margin-top: 10px; }
.btn--header { margin-left: auto; }

/* ---------- Top contact bar ---------- */
.topbar { background: var(--yt-indigo); color: #dfe6f2; font-size: 0.85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 9px 24px; flex-wrap: wrap; gap: 8px; }
.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__contact a { opacity: 0.9; }
.topbar__contact a:hover { opacity: 1; color: var(--yt-marigold); }
.topbar__actions { display: flex; align-items: center; gap: 16px; }
.topbar__whatsapp { background: #25d366; color: #06371e; padding: 5px 14px; border-radius: 20px; font-weight: 600; font-size: 0.8rem; }
.social-icons { display: flex; gap: 10px; }
.social-icon { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.12); }
.social-icon svg { width: 14px; height: 14px; fill: #fff; }
.social-icon:hover { background: var(--yt-marigold); }
.social-icon:hover svg { fill: var(--yt-indigo); }

/* ---------- Header ---------- */
.site-header { background: var(--yt-cream); border-bottom: 1px solid var(--yt-line); position: sticky; top: 0; z-index: 50; }
.site-header__inner { display: flex; align-items: center; gap: 28px; padding: 14px 24px; }
.site-branding { display: flex; flex-direction: column; }
.site-title { font-family: var(--yt-display); font-size: 1.5rem; font-weight: 700; color: var(--yt-indigo); }
.site-tagline { font-size: 0.75rem; color: var(--yt-ink-soft); margin: 0; }
.custom-logo-link img { max-height: 60px; width: auto; }

.primary-nav { flex: 1; }
.primary-nav__list { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.primary-nav__list > li { position: relative; }
.primary-nav__list > li > a {
	display: block;
	padding: 10px 14px;
	font-weight: 600;
	font-size: 0.94rem;
	color: var(--yt-ink);
	border-radius: var(--yt-radius);
}
.primary-nav__list > li > a:hover { color: var(--yt-terracotta); }
.primary-nav__list li.menu-item-has-children > a::after { content: ' \25BE'; font-size: 0.7em; }
.primary-nav__list ul.sub-menu {
	position: absolute;
	top: 100%; left: 0;
	background: #fff;
	min-width: 240px;
	box-shadow: var(--yt-shadow);
	border-radius: var(--yt-radius);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.18s ease;
	z-index: 60;
}
.primary-nav__list li:hover > ul.sub-menu,
.primary-nav__list li:focus-within > ul.sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav__list .sub-menu a { padding: 9px 12px; border-radius: 4px; font-size: 0.9rem; font-weight: 500; }
.primary-nav__list .sub-menu a:hover { background: var(--yt-sand); }
.primary-nav__list .sub-menu .sub-menu { top: 0; left: 100%; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--yt-indigo); border-radius: 2px; }

/* ---------- Route divider (signature element) ---------- */
.route-divider { position: relative; height: 56px; display: flex; align-items: center; justify-content: center; }
.route-divider svg { width: 100%; max-width: 300px; height: 40px; stroke: var(--yt-terracotta); stroke-width: 2.5; stroke-dasharray: 6 8; fill: none; opacity: 0.55; }
.route-divider__pin {
	position: absolute;
	width: 11px; height: 11px;
	border-radius: 50%;
	background: var(--yt-terracotta);
	box-shadow: 0 0 0 5px var(--yt-sand), 0 0 0 6px var(--yt-line);
}
.route-divider__pin em {
	position: absolute;
	top: 16px; left: 50%;
	transform: translateX(-50%);
	font-style: normal;
	font-family: var(--yt-mono);
	font-size: 0.68rem;
	letter-spacing: 0.06em;
	color: var(--yt-ink-soft);
	white-space: nowrap;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	background: linear-gradient(160deg, var(--yt-indigo) 0%, #142038 100%);
	background-image: var(--hero-image, none);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,43,74,0.55) 0%, rgba(20,32,56,0.88) 100%); }
.hero__inner { position: relative; z-index: 2; color: #fff; max-width: 720px; padding-top: 60px; padding-bottom: 90px; }
.hero__heading { color: #fff; }
.hero__sub { font-size: 1.1rem; color: #dce3f2; max-width: 560px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero__routemark { position: absolute; left: 0; right: 0; bottom: -6px; z-index: 1; opacity: 0.5; }
.hero__routemark svg { width: 100%; height: 60px; stroke: var(--yt-marigold); stroke-width: 2; stroke-dasharray: 5 9; fill: none; }

/* ---------- Section scaffolding ---------- */
.section { padding: 76px 0; }
.section--why { background: var(--yt-cream); }
.section--testimonials { background: var(--yt-indigo); color: #eef1f8; }
.section--testimonials h2 { color: #fff; }
.section--cta-banner { background: var(--yt-terracotta); }
.section__head { max-width: 640px; margin: 0 0 40px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__lede { color: var(--yt-ink-soft); font-size: 1.05rem; }
.section__cta { text-align: center; margin-top: 36px; }

/* ---------- Tour cards ---------- */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tour-card {
	background: var(--yt-cream);
	border-radius: var(--yt-radius);
	overflow: hidden;
	box-shadow: 0 10px 24px -16px rgba(28,43,74,0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--yt-shadow); }
.tour-card__media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--yt-line); }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tour-card__placeholder { display: block; width: 100%; height: 100%; background: repeating-linear-gradient(135deg, var(--yt-line), var(--yt-line) 10px, var(--yt-sand) 10px, var(--yt-sand) 20px); }
.tour-card__badge {
	position: absolute; top: 12px; left: 12px;
	background: var(--yt-indigo); color: #fff;
	font-family: var(--yt-mono); font-size: 0.72rem;
	padding: 4px 10px; border-radius: 20px;
}
.tour-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.tour-card__title { font-size: 1.1rem; margin-bottom: 8px; }
.tour-card__title a:hover { color: var(--yt-terracotta); }
.tour-card__excerpt { color: var(--yt-ink-soft); font-size: 0.92rem; flex: 1; }
.tour-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--yt-line); }
.tour-card__price { font-family: var(--yt-mono); font-weight: 700; color: var(--yt-terracotta); font-size: 0.9rem; }
.tour-card__link { font-weight: 600; font-size: 0.88rem; color: var(--yt-indigo); }
.tour-card__link:hover { color: var(--yt-terracotta); }

/* ---------- Why-us / stats ---------- */
.why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.why-list { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.why-list li { display: flex; flex-direction: column; gap: 4px; padding-left: 22px; position: relative; }
.why-list li::before { content: ''; position: absolute; left: 0; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--yt-terracotta); }
.why-list strong { color: var(--yt-indigo); }
.why-list span { color: var(--yt-ink-soft); font-size: 0.95rem; }
.why-grid__stats { display: grid; grid-template-columns: 1fr; gap: 18px; }
.why-grid__stats--full { grid-template-columns: repeat(3, 1fr); }
.stat-card { background: var(--yt-indigo); color: #fff; border-radius: var(--yt-radius); padding: 26px 24px; text-align: center; }
.stat-card__number { display: block; font-family: var(--yt-display); font-size: 2.4rem; font-weight: 700; color: var(--yt-marigold); }
.stat-card__label { display: block; margin-top: 6px; font-size: 0.86rem; color: #d7deee; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--yt-radius); padding: 26px; margin: 0; }
.testimonial-card p { font-size: 0.98rem; color: #eef1f8; }
.testimonial-card p::before { content: '“'; font-family: var(--yt-display); font-size: 1.6rem; color: var(--yt-marigold); }
.testimonial-card footer { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.testimonial-card__avatar { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; }
.testimonial-card cite { font-style: normal; font-weight: 600; font-size: 0.88rem; color: var(--yt-marigold); }

/* ---------- Blog grid ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card__media { display: block; aspect-ratio: 4/3; border-radius: var(--yt-radius); overflow: hidden; background: var(--yt-line); margin-bottom: 14px; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__date { font-family: var(--yt-mono); font-size: 0.76rem; color: var(--yt-terracotta); }
.blog-card h3 { margin-top: 6px; font-size: 1.1rem; }
.blog-card h3 a:hover { color: var(--yt-terracotta); }

/* ---------- CTA banner ---------- */
.cta-banner__inner { text-align: center; color: #fff; max-width: 640px; margin: 0 auto; }
.cta-banner__inner h2 { color: #fff; }
.cta-banner__inner .btn--primary { background: var(--yt-indigo); margin-top: 18px; }
.cta-banner__inner .btn--primary:hover { background: #142038; }

/* ---------- Generic page / content layout ---------- */
.page-hero { background: var(--yt-indigo); color: #fff; padding: 64px 0 44px; }
.page-hero h1 { color: #fff; }
.page-hero__lede { color: #d7deee; max-width: 620px; }
.page-layout { padding: 60px 0; display: block; }
.page-layout--with-sidebar { display: grid; grid-template-columns: 2.2fr 1fr; gap: 50px; align-items: start; }
.page-content, .single-post, .tour-archive, .blog-list { max-width: 100%; }
.page-content img, .single-post__content img { border-radius: var(--yt-radius); }
.page-content__thumb { margin-bottom: 24px; border-radius: var(--yt-radius); overflow: hidden; }

/* ---------- About page ---------- */
.about-story { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; padding: 20px 0; }
.about-story__media img { border-radius: var(--yt-radius); box-shadow: var(--yt-shadow); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card { background: var(--yt-cream); border-radius: var(--yt-radius); padding: 28px; border-top: 3px solid var(--yt-terracotta); }

/* ---------- Contact page ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: -40px; position: relative; z-index: 3; margin-bottom: 20px; }
.contact-card {
	background: var(--yt-cream);
	border-radius: var(--yt-radius);
	padding: 24px 20px;
	box-shadow: var(--yt-shadow);
	display: flex;
	flex-direction: column;
	gap: 4px;
	transition: transform 0.15s ease;
}
.contact-card:hover { transform: translateY(-3px); }
.contact-card__icon { font-size: 1.6rem; }
.contact-card strong { color: var(--yt-indigo); }
.contact-card span { color: var(--yt-ink-soft); font-size: 0.9rem; }
.contact-layout { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 50px; }
.contact-layout__prefill { background: var(--yt-cream); border-left: 3px solid var(--yt-terracotta); padding: 10px 16px; border-radius: 4px; }
.contact-map { border-radius: var(--yt-radius); overflow: hidden; margin: 20px 0; }
.contact-hours { font-family: var(--yt-mono); font-size: 0.88rem; color: var(--yt-ink-soft); }

/* ---------- Forms ---------- */
.enquiry-form { background: var(--yt-cream); padding: 28px; border-radius: var(--yt-radius); box-shadow: var(--yt-shadow); }
.enquiry-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-form__field { margin-bottom: 16px; }
.enquiry-form__field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--yt-indigo); }
.enquiry-form input, .enquiry-form textarea, .search-form input {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--yt-line);
	border-radius: 4px;
	font-family: var(--yt-body);
	font-size: 0.95rem;
	background: #fff;
}
.enquiry-form__hp { position: absolute; left: -9999px; }
.form-notice { padding: 14px 18px; border-radius: 4px; margin-bottom: 20px; font-size: 0.92rem; }
.form-notice--success { background: #e4f3e8; color: #205c34; border: 1px solid #b6dcc0; }
.form-notice--error { background: #fbe7e4; color: #8a2f21; border: 1px solid #f0b6ab; }

.search-form { display: flex; gap: 10px; max-width: 480px; margin: 20px 0; }
.search-form button { padding: 11px 20px; background: var(--yt-indigo); color: #fff; border: none; border-radius: 4px; font-weight: 600; }

/* ---------- Tour package single ---------- */
.tour-hero {
	position: relative; min-height: 46vh; display: flex; align-items: flex-end;
	background: var(--yt-indigo);
	background-image: var(--tour-hero-image, none);
	background-size: cover; background-position: center;
}
.tour-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,43,74,0.35), rgba(20,32,56,0.85)); }
.tour-hero__inner { position: relative; z-index: 2; color: #fff; padding: 60px 0 40px; }
.tour-hero__inner h1 { color: #fff; }
.tour-hero__duration { font-family: var(--yt-mono); color: var(--yt-marigold); }
.tour-layout { display: grid; grid-template-columns: 2.1fr 1fr; gap: 50px; padding: 56px 0; align-items: start; }
.tour-block { margin-bottom: 40px; }
.highlight-list li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.highlight-list li::before { content: '✓'; position: absolute; left: 0; color: var(--yt-sage); font-weight: 700; }
.itinerary-list { counter-reset: day; }
.itinerary-list li { position: relative; padding: 14px 0 14px 46px; border-bottom: 1px dashed var(--yt-line); }
.itinerary-list li:last-child { border-bottom: none; }
.itinerary-list li::before {
	counter-increment: day; content: counter(day);
	position: absolute; left: 0; top: 12px;
	width: 28px; height: 28px; border-radius: 50%;
	background: var(--yt-terracotta); color: #fff;
	font-family: var(--yt-mono); font-size: 0.8rem;
	display: flex; align-items: center; justify-content: center;
}
.booking-card { background: var(--yt-cream); border-radius: var(--yt-radius); padding: 26px; box-shadow: var(--yt-shadow); position: sticky; top: 100px; }
.booking-card__price { font-family: var(--yt-display); font-size: 1.6rem; color: var(--yt-terracotta); font-weight: 700; margin-bottom: 14px; }
.booking-card__facts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.booking-card__facts li { display: flex; justify-content: space-between; font-size: 0.9rem; border-bottom: 1px dashed var(--yt-line); padding-bottom: 8px; }
.booking-card__facts span { color: var(--yt-ink-soft); }

/* ---------- Destinations index ---------- */
.destination-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.destination-card { position: relative; display: block; border-radius: var(--yt-radius); overflow: hidden; min-height: 200px; background: var(--yt-indigo); }
.destination-card__media { position: absolute; inset: 0; background: repeating-linear-gradient(135deg, var(--yt-indigo-soft), var(--yt-indigo-soft) 10px, var(--yt-indigo) 10px, var(--yt-indigo) 20px); opacity: 0.9; }
.destination-card__body { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding: 20px; color: #fff; gap: 4px; }
.destination-card strong { font-family: var(--yt-display); font-size: 1.2rem; }
.destination-card span { font-family: var(--yt-mono); font-size: 0.8rem; color: var(--yt-marigold); }
.destination-card:hover .destination-card__media { opacity: 1; }

/* ---------- Blog list / single ---------- */
.blog-list__item { display: grid; grid-template-columns: 260px 1fr; gap: 26px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--yt-line); }
.blog-list__media { border-radius: var(--yt-radius); overflow: hidden; aspect-ratio: 4/3; }
.blog-list__body h2 { font-size: 1.4rem; }
.blog-list__more { font-weight: 600; color: var(--yt-terracotta); }
.single-post__header { max-width: 760px; }
.single-post__meta { color: var(--yt-ink-soft); font-family: var(--yt-mono); font-size: 0.85rem; }
.single-post__thumb { margin: 24px 0; border-radius: var(--yt-radius); overflow: hidden; }
.single-post__content { max-width: 760px; font-size: 1.05rem; }
.tag-list a { display: inline-block; background: var(--yt-cream); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; margin: 4px 6px 0 0; }

/* ---------- Widgets / footer ---------- */
.widget, .footer-widget { margin-bottom: 30px; }
.widget__title, .footer-widget__title { font-size: 1.05rem; margin-bottom: 14px; }
.filter-list li { margin-bottom: 8px; }
.filter-list a:hover { color: var(--yt-terracotta); }

.site-footer { background: var(--yt-indigo); color: #cfd7e8; }
.site-footer__top { padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-col--about p { color: #b9c3da; font-size: 0.92rem; }
.footer-logo-text { font-family: var(--yt-display); font-size: 1.4rem; color: #fff; }
.site-footer .footer-widget__title, .site-footer h3 { color: #fff; }
.footer-menu li { margin-bottom: 8px; }
.footer-menu a:hover { color: var(--yt-marigold); }
.footer-contact-list li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-contact-list a:hover { color: var(--yt-marigold); }
.site-footer .social-icon { background: rgba(255,255,255,0.1); }

.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; }
.site-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { margin: 0; font-size: 0.85rem; color: #a9b4cc; }
.footer-whatsapp-fab { width: 40px; height: 40px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; }
.footer-whatsapp-fab svg { width: 22px; height: 22px; fill: #06371e; }

/* ---------- 404 ---------- */
.error-404 { text-align: center; padding: 100px 0; max-width: 560px; margin: 0 auto; }
.error-404 .search-form { margin: 24px auto; justify-content: center; }
.error-404 .btn { margin-top: 10px; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
	.tour-grid, .blog-grid, .testimonial-grid, .trust-grid, .destination-grid { grid-template-columns: repeat(2, 1fr); }
	.why-grid, .about-story, .contact-layout, .tour-layout { grid-template-columns: 1fr; }
	.why-grid__stats--full { grid-template-columns: 1fr; }
	.contact-cards { grid-template-columns: repeat(2, 1fr); }
	.page-layout--with-sidebar { grid-template-columns: 1fr; }
	.booking-card { position: static; }
}

@media (max-width: 782px) {
	.topbar__contact span.topbar__address { display: none; }
	.primary-nav {
		position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw);
		background: #fff; padding: 90px 24px 24px; transform: translateX(100%);
		transition: transform 0.25s ease; z-index: 70; overflow-y: auto;
	}
	.primary-nav.is-open { transform: translateX(0); }
	.primary-nav__list { flex-direction: column; align-items: stretch; }
	.primary-nav__list ul.sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 14px; display: none; }
	.primary-nav__list li.is-expanded > ul.sub-menu { display: block; }
	.menu-toggle { display: flex; }
	.btn--header { display: none; }
	.hero { min-height: auto; padding: 70px 0 90px; }
	.tour-grid, .blog-grid, .testimonial-grid, .trust-grid, .destination-grid, .contact-cards { grid-template-columns: 1fr; }
	.blog-list__item { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.site-header__inner { flex-wrap: wrap; }
}
