/* Shared styles for the Destination campaign pages (parallel system to the
   hotel/homestay stylesheets — same proven patterns, same brand tokens,
   own .dst- namespace). New destination pages link to this same file. */

.dst-landing {
	--dst-primary: #d83030;
	--dst-primary-dark: #b22323;
	--dst-navy: #032e42;
	--dst-gold: #e8a33d;
	--dst-gray: #676767;
	--dst-light: #f3f3f3;
	--dst-line: #e6e6e6;
	--dst-radius: 14px;

	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--dst-navy);
	line-height: 1.6;
	overflow-x: hidden;
}

.dst-landing * { box-sizing: border-box; }
.dst-landing img { max-width: 100%; height: auto; display: block; }
.dst-landing picture { display: block; }

.dst-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

.dst-landing h1,
.dst-landing h2,
.dst-landing h3 {
	font-family: 'Poppins', 'Inter', sans-serif;
	color: var(--dst-navy);
	margin: 0 0 14px;
	line-height: 1.25;
	letter-spacing: -.01em;
}

.dst-section { padding: 64px 0; }
.dst-section:nth-child(even) { background: var(--dst-light); }
.dst-section__title { text-align: center; font-size: 30px; margin-bottom: 8px; }
.dst-section__sub { text-align: center; color: var(--dst-gray); margin-bottom: 36px; }

/* Breadcrumb */
.dst-crumbs {
	max-width: 1140px;
	margin: 0 auto;
	padding: 14px 20px;
	font-size: 13px;
	color: var(--dst-gray);
	white-space: nowrap;
	overflow-x: auto;
}
.dst-crumbs a { color: var(--dst-gray); text-decoration: none; padding: 10px 2px; display: inline-block; }
.dst-crumbs span[aria-hidden] { margin: 0 6px; }

/* Buttons */
.dst-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	font-size: 16px;
	transition: transform .15s ease, box-shadow .15s ease;
	min-height: 48px;
	overflow: hidden;
	isolation: isolate;
}
.dst-btn::before {
	content: "";
	position: absolute;
	top: 0; left: -60%;
	width: 40%; height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
	transform: skewX(-20deg);
	transition: left .55s ease;
	z-index: -1;
}
.dst-btn:hover::before { left: 120%; }
.dst-btn:hover { transform: translateY(-2px); }
.dst-btn--whatsapp { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.dst-btn--outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px #fff; }
.dst-btn--outline-light { background: #fff; color: var(--dst-primary); }
.dst-btn--small { padding: 10px 18px; font-size: 14px; background: var(--dst-primary); color: #fff; width: 100%; justify-content: center; }
.dst-btn--small:hover { background: var(--dst-primary-dark); }
.dst-btn--small.dst-btn--wa { background: #25D366; }
.dst-btn--small.dst-btn--wa:hover { background: #1ea952; }

.dst-cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }

/* Hero */
.dst-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 120px 0 80px;
	overflow: hidden;
}
.dst-hero::before {
	content: "";
	position: absolute; inset: 0;
	background-image: inherit;
	background-size: cover;
	background-position: center;
	animation: dstKenBurns 22s ease-in-out infinite alternate;
	z-index: 0;
}
.dst-hero--paused::before { animation-play-state: paused; }
.dst-hero > * { position: relative; }
/* For a destination with no real photo available yet — a styled gradient
   instead of an unrelated stock image. Swap to a real photo (remove this
   class, add the inline background-image style) as soon as one exists. */
.dst-hero--no-photo {
	background: linear-gradient(135deg, var(--dst-navy) 0%, #0a4a68 55%, var(--dst-primary-dark) 100%);
}
.dst-hero--no-photo::before { content: none; }
@keyframes dstKenBurns {
	0%   { transform: scale(1) translate(0, 0); }
	100% { transform: scale(1.12) translate(-1%, -1%); }
}
.dst-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(3,46,66,.6) 0%, rgba(3,46,66,.88) 100%);
	z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
	.dst-hero::before { animation: none; }
}
.dst-hero__inner { position: relative; z-index: 2; }
.dst-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 13px;
	color: var(--dst-gold);
	font-weight: 700;
	margin-bottom: 10px;
}
.dst-hero h1 {
	color: #fff;
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 6px;
	text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.dst-hero__sub { font-size: 18px; color: #eef3f6; max-width: 640px; margin-bottom: 22px; }

.dst-hero__facts { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; font-size: 14px; }
.dst-hero__facts div {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 50px;
	padding: 8px 16px;
	backdrop-filter: blur(4px);
}
.dst-hero__facts .ico { color: var(--dst-gold); }

.dst-hero__scroll {
	position: absolute;
	bottom: 20px; left: 50%;
	transform: translateX(-50%);
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.3);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	animation: dstBounce 2s ease-in-out infinite;
}
@keyframes dstBounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) { .dst-hero__scroll { animation: none; } }

/* Quick-facts badge strip (with mobile swipe pattern) */
.dst-trustbadges { padding-top: 32px; padding-bottom: 32px; background: linear-gradient(180deg, var(--dst-light) 0%, #fff 100%); }
.dst-trustbadges__hint { display: none; }
.dst-trustbadges__scroller { position: relative; }
.dst-trustbadges__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dst-trustbadge {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--dst-line);
	border-radius: 12px;
	padding: 14px 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--dst-navy);
	transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.dst-trustbadge:hover { box-shadow: 0 12px 24px rgba(3,46,66,.1); transform: translateY(-3px); border-color: transparent; }
.dst-trustbadge__icon {
	flex-shrink: 0;
	width: 36px; height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: #fff;
}
.dst-trustbadge--navy .dst-trustbadge__icon { background: var(--dst-navy); }
.dst-trustbadge--red .dst-trustbadge__icon { background: var(--dst-primary); }
.dst-trustbadge--gold .dst-trustbadge__icon { background: linear-gradient(135deg, var(--dst-gold), var(--dst-primary)); }
.dst-trustbadge--green .dst-trustbadge__icon { background: #1a9b5c; }

/* About */
.dst-about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.dst-about__text p { color: var(--dst-gray); }
.dst-about__facts { display: flex; gap: 14px; margin: 22px 0; flex-wrap: wrap; }
.dst-about__fact { display: flex; align-items: center; gap: 10px; background: var(--dst-light); border-radius: 12px; padding: 12px 16px; flex: 1; min-width: 150px; }
.dst-about__fact .ico {
	width: 34px; height: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--dst-gold), var(--dst-primary));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
}
.dst-about__fact strong { display: block; font-size: 14px; color: var(--dst-navy); }
.dst-about__fact span { font-size: 11px; color: var(--dst-gray); }
.dst-about__image { position: relative; }
.dst-about__image img { border-radius: var(--dst-radius); }
.dst-about__image-badge {
	position: absolute;
	bottom: 16px; left: 16px;
	background: rgba(3,46,66,.85);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	font-style: italic;
	padding: 8px 16px;
	border-radius: 30px;
	backdrop-filter: blur(4px);
}
.dst-about__image-badge .ico { color: var(--dst-gold); margin-right: 4px; }

/* Top Things To Do — image cards */
.dst-do-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dst-do-card {
	background: #fff;
	border: 1px solid var(--dst-line);
	border-radius: var(--dst-radius);
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--dst-navy);
	transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.dst-do-card::before {
	content: "";
	position: absolute; top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--dst-gold), var(--dst-primary));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s ease;
}
.dst-do-card:hover::before { transform: scaleX(1); }
.dst-do-card:hover { box-shadow: 0 20px 40px rgba(3,46,66,.16); transform: translateY(-6px); }
.dst-do-card__img-wrap { position: relative; overflow: hidden; height: 190px; }
.dst-do-card__img-wrap img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s ease; }
.dst-do-card:hover .dst-do-card__img-wrap img { transform: scale(1.08); }
.dst-do-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.dst-do-card h3 { font-size: 17px; margin-bottom: 0; }
.dst-do-card p { color: var(--dst-gray); font-size: 13.5px; margin: 0; flex: 1; }
.dst-do-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--dst-primary); margin-top: 8px; }
.dst-do-card__link .ico { font-size: 11px; transition: transform .2s ease; }
.dst-do-card:hover .dst-do-card__link .ico { transform: translateX(4px); }

/* Gallery */
.dst-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dst-gallery__item { display: block; border-radius: var(--dst-radius); overflow: hidden; }
.dst-gallery__item img { height: 200px; width: 100%; object-fit: cover; transition: transform .3s ease; }
.dst-gallery__item:hover img { transform: scale(1.06); }
@media (max-width: 700px) {
	.dst-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.dst-gallery__item img { height: 160px; }
}

/* How to Reach */
.dst-reach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dst-reach-card {
	background: #fff;
	border: 1px solid var(--dst-line);
	border-radius: var(--dst-radius);
	padding: 26px 22px;
	transition: box-shadow .3s ease, transform .3s ease;
}
.dst-reach-card:hover { box-shadow: 0 16px 32px rgba(3,46,66,.1); transform: translateY(-4px); }
.dst-reach-card .ico {
	width: 42px; height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--dst-gold), var(--dst-primary));
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	margin-bottom: 14px;
}
.dst-reach-card h3 { font-size: 17px; margin-bottom: 8px; }
.dst-reach-card p { color: var(--dst-gray); font-size: 14px; margin: 0; }

/* Where to Stay — cross-sell cards */
.dst-stay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.dst-stay-card {
	background: #fff;
	border: 1px solid var(--dst-line);
	border-radius: var(--dst-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .3s ease, transform .3s ease;
}
.dst-stay-card:hover { box-shadow: 0 20px 40px rgba(3,46,66,.16); transform: translateY(-6px); }
.dst-stay-card__img-wrap { height: 190px; overflow: hidden; }
.dst-stay-card__img-wrap img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s ease; }
.dst-stay-card:hover .dst-stay-card__img-wrap img { transform: scale(1.08); }
.dst-stay-card__body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.dst-stay-card h3 { font-size: 18px; margin-bottom: 0; }
.dst-stay-card__meta { color: var(--dst-gray); font-size: 13.5px; margin: 0 0 8px; flex: 1; }
.dst-stay-card .dst-btn--small { margin-top: auto; }

/* Key Landmarks */
.dst-landmark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dst-landmark-card {
	background: #fff;
	border: 1px solid var(--dst-line);
	border-radius: var(--dst-radius);
	padding: 22px 20px;
	transition: box-shadow .3s ease, transform .3s ease;
}
.dst-landmark-card:hover { box-shadow: 0 16px 32px rgba(3,46,66,.1); transform: translateY(-4px); }
.dst-landmark-card .ico {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--dst-gold), var(--dst-primary));
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	margin-bottom: 10px;
}
.dst-landmark-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.dst-landmark-card p { color: var(--dst-gray); font-size: 13px; margin: 0; }

/* Map */
.dst-content-block { max-width: 820px; margin: 0 auto; }
.dst-content-block h3 { font-size: 20px; margin-top: 28px; }
.dst-content-block p, .dst-content-block li { color: var(--dst-gray); font-size: 15px; }
.dst-content-block ul { padding-left: 20px; }
.dst-map { border-radius: var(--dst-radius); overflow: hidden; box-shadow: 0 12px 32px rgba(3,46,66,.1); line-height: 0; }

/* Nearby / cross-links */
.dst-nearby__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dst-nearby__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border: 1px solid var(--dst-line);
	border-radius: 10px;
	padding: 14px 18px;
	text-decoration: none;
	color: var(--dst-navy);
	font-weight: 600;
	font-size: 14px;
}
.dst-nearby__item:hover { border-color: var(--dst-primary); color: var(--dst-primary); }
.dst-nearby__item .ico:last-child { color: var(--dst-gray); font-size: 12px; }

/* FAQ */
.dst-faq__list { max-width: 780px; margin: 0 auto; }
.dst-faq__item { border-bottom: 1px solid var(--dst-line); }
.dst-faq__q {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 18px 4px;
	font-size: 16px;
	font-weight: 700;
	color: var(--dst-navy);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.dst-faq__icon { color: var(--dst-primary); font-size: 20px; font-weight: 800; flex-shrink: 0; display: inline-block; transition: transform .3s ease, color .3s ease; }
.dst-faq__item.is-open .dst-faq__icon { transform: rotate(135deg); color: var(--dst-navy); }
.dst-faq__q { transition: color .2s ease; }
.dst-faq__item.is-open .dst-faq__q { color: var(--dst-primary); }
.dst-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s ease; padding: 0 4px; color: var(--dst-gray); }
.dst-faq__a p { margin: 0 0 16px; }
.dst-faq__item.is-open .dst-faq__a { max-height: 1000px; }

/* Popular searches keyword cloud */
.dst-keywords { padding-top: 48px; padding-bottom: 48px; }
.dst-keywords__cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 980px; margin: 0 auto; }
.dst-keywords__cloud span {
	background: #fff;
	border: 1px solid var(--dst-line);
	color: var(--dst-gray);
	font-size: 12.5px;
	line-height: 1.4;
	padding: 7px 14px;
	border-radius: 20px;
	white-space: nowrap;
}

/* Final CTA */
.dst-final-cta { background: linear-gradient(135deg, var(--dst-primary), var(--dst-primary-dark)); color: #fff; padding: 64px 0; text-align: center; }
.dst-final-cta h2 { color: #fff; font-size: 30px; }
.dst-final-cta p { color: #ffe3e3; margin-bottom: 8px; }
.dst-final-cta .dst-cta-row { justify-content: center; }

/* Sticky mobile bar */
.dst-sticky-bar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	display: none;
	z-index: 999;
	background: #fff;
	box-shadow: 0 -4px 18px rgba(0,0,0,.12);
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
	gap: 10px;
}
.dst-sticky-bar__btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 10px;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
	font-size: 15px;
	min-height: 48px;
}
.dst-sticky-bar__btn--whatsapp { background: #25D366; color: #fff; }
.dst-sticky-bar__btn--call { background: var(--dst-navy); color: #fff; }

/* Inline mid-page CTA */
.dst-inline-cta {
	margin-top: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	background: linear-gradient(90deg, rgba(232,163,61,.1), rgba(216,48,48,.06));
	border: 1px solid rgba(232,163,61,.35);
	border-radius: 50px;
	padding: 14px 26px;
	text-align: center;
}
.dst-inline-cta p { margin: 0; font-size: 14.5px; font-weight: 600; color: var(--dst-navy); }
.dst-inline-cta p .ico { color: var(--dst-primary); margin-right: 6px; }
.dst-inline-cta .dst-btn { padding: 10px 22px; font-size: 14px; min-height: 0; width: auto; flex-shrink: 0; }

/* Responsive */
@media (max-width: 900px) {
	.dst-about__grid { grid-template-columns: 1fr; }
	.dst-do-grid { grid-template-columns: repeat(2, 1fr); }
	.dst-reach-grid { grid-template-columns: 1fr; }
	.dst-landmark-grid { grid-template-columns: repeat(2, 1fr); }
	.dst-nearby__grid { grid-template-columns: 1fr 1fr; }
	.dst-hero h1 { font-size: 30px; }
}

@media (max-width: 700px) {
	.dst-trustbadges__grid {
		display: flex;
		overflow-x: auto;
		gap: 12px;
		grid-template-columns: none;
		padding-bottom: 8px;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
	}
	.dst-trustbadge { flex: 0 0 auto; white-space: nowrap; scroll-snap-align: start; }
	.dst-trustbadges__hint {
		display: block;
		text-align: center;
		font-size: 12px;
		font-weight: 600;
		color: var(--dst-gray);
		margin-bottom: 10px;
	}
	.dst-trustbadges__hint .ico { color: var(--dst-primary); }
	.dst-trustbadges__scroller::after {
		content: "";
		position: absolute;
		top: 0; right: 0; bottom: 8px;
		width: 28px;
		background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,.95));
		pointer-events: none;
	}
}

@media (max-width: 600px) {
	.dst-hero { padding: 90px 0 48px; }
	.dst-hero__sub { font-size: 15.5px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }
	.dst-hero h1 { font-size: 26px; }
	.dst-hero__inner { display: flex; flex-direction: column; }
	.dst-eyebrow { order: 1; }
	.dst-hero h1 { order: 2; }
	.dst-hero__sub { order: 3; }
	.dst-cta-row { order: 4; margin-top: 18px; margin-bottom: 22px; }
	.dst-hero__facts { order: 5; }
	.dst-do-grid,
	.dst-stay-grid,
	.dst-landmark-grid,
	.dst-nearby__grid { grid-template-columns: 1fr; }
	.dst-cta-row { flex-direction: column; }
	.dst-btn { width: 100%; justify-content: center; }
	.dst-sticky-bar { display: flex; }
	.dst-landing { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
	.dst-inline-cta { border-radius: 16px; padding: 16px 18px; flex-direction: column; }
	.dst-inline-cta .dst-btn { width: 100%; justify-content: center; }
}

@media (prefers-color-scheme: dark) {
	/* Landing page intentionally keeps a fixed light design regardless of OS
	   theme, matching the rest of the site which does not support dark mode. */
}
