/* ============================================================
   Ringchan Tour Detail – style.css
   Colors : #096f30 (green) | #ffbe0f (gold) | #2c97de (blue)
   Font   : Cormorant Garamond
   ============================================================ */

:root {
	--rtd-green  : #096f30;
	--rtd-gold   : #ffbe0f;
	--rtd-blue   : #2c97de;
	--rtd-dark   : #1a2740;
	--rtd-text   : #3a3a3a;
	--rtd-muted  : #777;
	--rtd-border : #e4e0d8;
	--rtd-bg     : #faf9f6;
	--rtd-white  : #ffffff;
	--rtd-font   : 'Cormorant Garamond', Georgia, serif;
	--rtd-card-w : 300px;
	--rtd-gap    : 48px;
}

/* ── Layout wrapper ── */
.rtd-wrap {
	display: grid;
	grid-template-columns: 1fr var(--rtd-card-w);
	gap: var(--rtd-gap);
	max-width: 1160px;
	margin: 0 auto;
	padding: 56px 24px 80px;
	align-items: start;
	font-family: var(--rtd-font);
	color: var(--rtd-text);
}

/* ── Sections ── */
.rtd-section {
	margin-bottom: 52px;
}
.rtd-section:last-child {
	margin-bottom: 0;
}

/* Section title (Overview) */
.rtd-section-title {
	font-size: clamp(28px, 3.5vw, 38px);
	font-weight: 700;
	font-style: italic;
	color: var(--rtd-gold);
	margin: 0 0 10px;
	line-height: 1.1;
}

.rtd-section-rule {
	width: 44px;
	height: 3px;
	background: var(--rtd-gold);
	border-radius: 2px;
	margin-bottom: 20px;
}

.rtd-overview-text {
	font-size: 16px;
	line-height: 1.8;
	color: var(--rtd-muted);
	max-width: 580px;
	margin: 0;
}

/* Sub titles */
.rtd-sub-title {
	font-size: clamp(20px, 2.5vw, 26px);
	font-weight: 600;
	color: var(--rtd-dark);
	margin: 0 0 24px;
	border-bottom: 1px solid var(--rtd-border);
	padding-bottom: 10px;
}

/* ── Highlights ── */
.rtd-highlights {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 24px;
}

.rtd-highlight-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--rtd-bg);
	border: 1px solid var(--rtd-border);
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 15px;
	color: var(--rtd-dark);
}

.rtd-hi-icon {
	font-size: 17px;
	flex-shrink: 0;
}

/* ── Itinerary ── */
.rtd-itinerary {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.rtd-day {
	display: flex;
	gap: 20px;
}

.rtd-day__marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	width: 18px;
}

.rtd-day__dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--rtd-gold);
	border: 2px solid var(--rtd-white);
	box-shadow: 0 0 0 2px var(--rtd-gold);
	flex-shrink: 0;
	margin-top: 4px;
}

.rtd-day__line {
	flex: 1;
	width: 2px;
	background: var(--rtd-border);
	margin: 6px 0;
}

.rtd-day:last-child .rtd-day__line {
	display: none;
}

.rtd-day__body {
	padding-bottom: 32px;
	flex: 1;
}

.rtd-day:last-child .rtd-day__body {
	padding-bottom: 0;
}

.rtd-day__label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--rtd-gold);
	background: #fff8e6;
	border: 1px solid #f5d97a;
	border-radius: 20px;
	padding: 2px 10px;
	margin-bottom: 8px;
}

.rtd-day__title {
	font-size: 18px;
	font-weight: 600;
	color: var(--rtd-dark);
	margin: 0 0 10px;
}

.rtd-day__list {
	margin: 0;
	padding: 0 0 0 18px;
	list-style: disc;
}

.rtd-day__list li {
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--rtd-muted);
	margin-bottom: 3px;
}

/* ── Inclusions / Exclusions ── */
.rtd-ie-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.rtd-ie-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px;
}

.rtd-ie-title--inc { color: var(--rtd-green); }
.rtd-ie-title--exc { color: #c0392b; }

.rtd-ie-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.rtd-ie-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: var(--rtd-text);
	line-height: 1.5;
}

.rtd-ie-icon {
	font-size: 10px;
	margin-top: 4px;
	flex-shrink: 0;
}

.rtd-ie-icon--inc { color: var(--rtd-green); }
.rtd-ie-icon--exc { color: #c0392b; }

/* ── Pricing ── */
.rtd-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 12px;
}

.rtd-pkg {
	position: relative;
	border: 1px solid var(--rtd-border);
	border-radius: 10px;
	padding: 28px 20px 24px;
	text-align: center;
	background: var(--rtd-white);
	transition: box-shadow .2s;
}

.rtd-pkg:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.rtd-pkg--popular {
	border: 2px solid var(--rtd-gold);
	background: #fffdf4;
}

.rtd-pkg__badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--rtd-dark);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 20px;
	white-space: nowrap;
}

.rtd-pkg__name {
	font-size: 17px;
	font-weight: 600;
	color: var(--rtd-dark);
	margin: 0 0 10px;
}

.rtd-pkg__price {
	font-size: 26px;
	font-weight: 700;
	color: var(--rtd-gold);
	line-height: 1.1;
	margin-bottom: 2px;
}

.rtd-pkg--popular .rtd-pkg__price {
	font-size: 30px;
}

.rtd-pkg__per {
	font-size: 12px;
	color: var(--rtd-muted);
	margin-bottom: 18px;
}

.rtd-pkg__features {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.rtd-pkg__features li {
	font-size: 14px;
	color: var(--rtd-text);
	display: flex;
	align-items: center;
	gap: 8px;
}

.rtd-pkg__features li span {
	color: var(--rtd-green);
	font-size: 13px;
	font-weight: 700;
}

.rtd-pricing-note {
	font-size: 13px;
	color: var(--rtd-muted);
	text-align: center;
	font-style: italic;
	margin: 0;
}

/* ── Sidebar ── */
.rtd-sidebar {
	/* JS handles sticky via inline style; CSS sets top anchor */
}

.rtd-card {
	background: var(--rtd-white);
	border: 1px solid var(--rtd-border);
	border-radius: 10px;
	padding: 28px 24px;
	box-shadow: 0 4px 24px rgba(0,0,0,.08);
	position: sticky;
	top: 28px;
}

.rtd-card__from {
	font-size: 12px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--rtd-muted);
	margin: 0 0 4px;
}

.rtd-card__price {
	font-size: 30px;
	font-weight: 700;
	color: var(--rtd-dark);
	margin-bottom: 12px;
	line-height: 1;
}

.rtd-card__note {
	font-size: 13.5px;
	color: var(--rtd-muted);
	line-height: 1.6;
	margin: 0 0 20px;
}

/* Buttons */
.rtd-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 16px;
	border-radius: 6px;
	font-family: var(--rtd-font);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .08em;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: opacity .2s, transform .15s;
	box-sizing: border-box;
	margin-bottom: 10px;
}

.rtd-btn:hover { opacity: .88; transform: translateY(-1px); }

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

.rtd-btn--enquire {
	background: var(--rtd-gold);
	color: #111;
}

.rtd-card__divider {
	height: 1px;
	background: var(--rtd-border);
	margin: 20px 0;
}

.rtd-card__guide-label {
	font-size: 11px;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--rtd-muted);
	margin: 0 0 12px;
	font-weight: 600;
}

.rtd-card__guide {
	display: flex;
	align-items: center;
	gap: 12px;
}

.rtd-card__guide-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--rtd-gold);
	flex-shrink: 0;
}

.rtd-card__guide-avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rtd-card__guide-name {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--rtd-dark);
}

.rtd-card__guide-title {
	display: block;
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--rtd-muted);
	margin-top: 2px;
}

/* ── Responsive ── */

/* Tablet: collapse to single column, card moves below */
@media (max-width: 960px) {
	.rtd-wrap {
		grid-template-columns: 1fr;
		padding: 40px 20px 64px;
	}

	.rtd-sidebar {
		order: -1;
	}

	.rtd-card {
		position: static;
		max-width: 480px;
	}
}

@media (max-width: 680px) {
	.rtd-highlights {
		grid-template-columns: 1fr;
	}

	.rtd-ie-row {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.rtd-pricing {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin: 0 auto 12px;
	}
}

@media (max-width: 480px) {
	.rtd-wrap { padding: 28px 14px 48px; }
	.rtd-section { margin-bottom: 36px; }
	.rtd-card { padding: 20px 16px; }
}
