/**Front Page Container **/

.front_page_container {
	width: 92%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0px auto;
}

/*Hero / Featured Posts Section*/

.updated_featured_post {
	display: grid;
	gap: 20px;
	width: 80%;
	margin: 10px auto;
	align-items: center;
}

/* LEFT SIDE (big post) */
.updated_featured_post_left {
	width: 100%;
	box-shadow: var(--sha);
	border-radius: 15px;
	border: 1px solid #faf9f9;
	padding: 8px;
}

.updated_featured_post_left_main {
	background: #fff;
	overflow: hidden;
}

.updated_featured_post_left_main img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

.updated_featured_post_left_main h2 {
	font-size: 20px;
	line-height: 1.4;
	margin: 10px;
	font-weight: bold;
	color: #111;
	text-align: left;
}

.updated_featured_post_left_main h2 a {
	color: var(--bgdim);
	font-weight: 500;
}

/* Category badge (left side) */
.updated_featured_post_left_main .category-badge {
	display: inline-block;
	background: #c00;
	color: #fff;
	font-size: 13px;
	padding: 4px 10px;
	border-radius: 20px;
	margin: 10px;
}

/* RIGHT SIDE (list of posts) */
.updated_featured_post_right {
	display: grid;
	grid-template-columns: repeat(auto-fit, 350px);
	justify-content: center;
	gap: 9px;
}

.updated_featured_post_right_main {
	display: flex;
	gap: 10px;
	background: #fff;
	padding: 0px;
	align-items: center;
	box-shadow: var(--sha);
}

.updated_featured_post_right_main img {
	width: 100px;
	height: 70px;
	object-fit: contain;
	margin-left: 10px;
	border-radius: 14px;
}

.updated_featured_post_right_main h2 {
	font-size: 15px;
	line-height: 1.4;
	margin: 0;
	font-weight: 600;
	color: #111;
	text-align: left;
}

.updated_featured_post_right_main h2 a {
	color: var(--bgdim);
	font-weight: 500;
	position: relative;
	z-index: 9999;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Category badge (right side) */
.updated_featured_post_right_main .category-badge {
	display: inline-block;
	background: #c00;
	color: #fff;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 15px;
	margin-bottom: 4px;
}

/** Follow Us On Instagram **/

.jsm_ig_car_upper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.jsm_ig_car {
	max-width: 100%;
	display: grid;
	justify-content: center;
	margin: 0px auto;
	text-align: center;
	gap: 19px;
	width: 100%;
	padding: 10px;
	height: max-content;
	background: white;
	grid-template-columns: repeat(auto-fit, 300px);
}

.jsm_ig_car img {
	width: 300px;
	box-shadow: var(--hoversha);
	border-radius: var(--curve);
	border: 1px solid #e9e9e9;
}

button.jsm_ig_button {
	width: 200px;
	height: 40px;
	background: #ffffff;
	color: var(--bgdim);
	border-radius: var(--curve);
	font-size: 18px;
	display: flex;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--brclr);
	box-shadow: var(--sha);
}

.bloqclass {
	width: 100%;
	background: white;
	box-shadow: var(--sha);
}

.bloqclass img {
	cursor: pointer;
	width: 100%;
}

.Caption {
	display: none !important;
}

/* Tablet / Mobile — max-width: 988px */

@media screen and (max-width: 988px) {

	.updated_featured_post {
		display: flex;
		gap: 20px;
		width: 100%;
		margin: 10px auto;
		align-items: center;
	}

	.hero_header {
		width: 100%;
		margin: 15px auto;
		display: flex;
		min-height: 269px;
		background: white;
		box-shadow: var(--sha);
		gap: 21px;
		border-radius: 15px;
		justify-content: center;
		flex-direction: column-reverse;
		text-align: center;
		align-items: center;
	}

	.hero_header_left {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		width: 95%;
		text-align: center;
		align-items: center;
		margin: 20px 0px 0px 0px;
	}

	.hero_header_left_left {
		width: unset !important;
	}

	.hero_header_left_right {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(auto-fit, 100%);
		justify-content: center;
		grid-gap: 20px;
		text-align: left;
	}

	.hero_header_right {
		width: 100%;
		margin: 14px;
	}

	.hero_header_buttons {
		display: grid;
		width: 100%;
		grid-gap: 20px;
		--herobtnwidth: 200px;
		margin: 0px auto;
		grid-template-columns: repeat(auto-fit, var(--herobtnwidth));
		place-content: center;
		place-items: center;
	}

	.hero_header_buttons div button {
		border: none;
		height: 44px;
		width: 100%;
		color: white;
		background: var(--pri);
		border-radius: 22px;
		width: var(--herobtnwidth);
		cursor: pointer;
	}
}

/* Small Mobile — max-width: 400px */

@media screen and (max-width: 400px) {

	.hero_header {
		width: 100%;
		margin: 15px auto;
		text-align: center;
		justify-content: center;
		align-items: center;
		display: flex;
		min-height: 200px;
		background: white;
		border-radius: var(--curve);
		box-shadow: var(--sha);
		gap: 0px;
	}

	.hero_header_left h2 {
		font-size: 30px;
		font-weight: 600;
		background: white;
		color: var(--bgdim);
	}

	.hero_header_left p {
		font-size: 16px;
		color: var(--bgdim);
		background: white;
		padding: 8px;
		width: 84%;
		margin: 0px auto;
	}
}

/* Built-in responsive for featured post (768px breakpoint) */

@media (max-width: 768px) {

	.updated_featured_post {
		display: flex;
		flex-direction: column;
	}

	.updated_featured_post_right_main {
		flex-direction: row;
	}
}

/* ===== MINIMAL WHITE HERO ===== */

.hero-travel-wrapper {
    position: relative;
    width: 100%;
    min-height: 460px;
    background: #ffffff;
    background-image: radial-gradient(circle, rgba(90,110,160,0.07) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

/* Canvas particles */
.hero-canvas-particles {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	pointer-events: none;
	z-index: 0;
}

/* Flying plane */
.hero-plane-anim {
	position: absolute;
	top: 14%;
	font-size: 22px;
	opacity: 0.28;
	animation: heroFlyPlane 24s linear infinite;
	pointer-events: none;
	z-index: 1;
	color: var(--pridim);
}

@keyframes heroFlyPlane {
	from { left: -50px; }
	to { left: 108%; }
}

/* Content layout */
.hero-travel-content {
    position: relative;
    z-index: 2;
    width: 88%;
    max-width: 1200px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 0;
}

.hero-travel-left { flex: 1; max-width: 560px; }

/* Tagline pill */
.hero-travel-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(244,67,54,0.06);
	border: 1px solid rgba(244,67,54,0.2);
	color: var(--pridim);
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 30px;
	margin-bottom: 20px;
	letter-spacing: 0.2px;
	text-transform: none;
}

/* Heading */
.hero-travel-title {
	font-size: 3.8rem !important;
	font-weight: 800 !important;
	color: #111 !important;
	line-height: 1.15 !important;
	margin: 0 0 18px !important;
	text-transform: none !important;
}

.hero-travel-title span {
	background: var(--prigri);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-travel-title em {
	font-style: normal;
	font-size: 2rem;
	color: #555 !important;
	-webkit-text-fill-color: #555;
	display: block;
	font-weight: 500;
	margin-top: 8px;
	line-height: 1.4;
}

/* Description */
.hero-travel-desc {
	font-size: 16px !important;
	color: #555 !important;
	line-height: 1.75 !important;
	margin: 0 0 28px !important;
	text-transform: none !important;
}

/* Buttons */
.hero-travel-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero-btn-primary {
	display: inline-block;
	background: var(--prigri);
	color: white !important;
	padding: 12px 26px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.2s, transform 0.2s;
}

.hero-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.hero-btn-secondary {
	display: inline-block;
	background: white;
	border: 1.5px solid #ddd;
	color: #333 !important;
	padding: 12px 26px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.hero-btn-secondary:hover { border-color: var(--pridim); color: var(--pridim) !important; transform: translateY(-1px); }

/* Stats row */
.hero-travel-stats { display: flex; align-items: center; gap: 20px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-size: 2.2rem; font-weight: 800; color: #111; line-height: 1; }
.hero-stat-label { font-size: 1.2rem; color: #888; margin-top: 3px; }
.hero-stat-div { width: 1px; height: 32px; background: #ddd; }

/* Right image — minimal creative */
.hero-travel-right {
	position: relative;
	flex-shrink: 0;
	width: 320px;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Rotated square backdrop — subtle geometric accent */
.hero-travel-right::before {
	content: '';
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 28px;
	border: 1px solid rgba(0,0,0,0.07);
	background: rgba(0,0,0,0.022);
	transform: rotate(14deg);
	z-index: 0;
}

/* Outer dotted ring */
.hero-globe-ring {
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px dashed rgba(0,0,0,0.1);
}

.hero-globe-ring::before { display: none; }

.hero-travel-img {
    display: block;
    width: 270px !important;
    height: 270px !important;
    border-radius: 50% !important;
    object-fit: cover;
    animation: heroFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
    border: 2px dashed gainsboro;
}

/* SVG illustration frame — hidden in favour of the real image */
.hero-svg-frame { display: none; }

/* Google reviews stat link */
.hero-stat-link {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	transition: opacity 0.2s;
}

.hero-stat-link:hover { opacity: 0.75; }
.hero-stat-link .hero-stat-num { color: #F44336; }

@keyframes heroFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* Floating badges */
.hero-float-badge {
	position: absolute;
	background: white;
	border: 1px solid rgba(0,0,0,0.09);
	box-shadow: 0 6px 18px rgba(0,0,0,0.1);
	color: #222;
	font-size: 12.5px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 30px;
	white-space: nowrap;
	z-index: 2;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
	animation: badgeFloat 5s ease-in-out infinite;
}

.hero-float-badge:hover {
	background: var(--pri);
	color: white;
	border-color: transparent;
	box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* Left side — 3 badges, evenly spaced */
.hero-float-1 { top: 5%;    left: -54px; animation-delay: 0s;   }
.hero-float-4 { top: 46%;   left: -76px; animation-delay: 3.5s; }
.hero-float-5 { bottom: 5%; left: -50px; animation-delay: 1s;   }

/* Right side — 2 badges, wide gap between them */
.hero-float-3 { top: 16%;    right: -64px; animation-delay: 1.8s; }
.hero-float-6 { bottom: 16%; right: -66px; animation-delay: 4s;   }

@keyframes badgeFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* Mobile-only tag row — sits below hero wrapper */
.hero-mobile-tags {
	display: none;
}

.hero-mobile-tag {
	display: inline-flex;
	align-items: center;
	background: white;
	border: 1px solid rgba(0,0,0,0.09);
	color: #222;
	font-size: 12.5px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 30px;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(0,0,0,0.1);
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	animation: badgeFloat 5s ease-in-out infinite;
}

.hero-mobile-tag:nth-child(1) { animation-delay: 0s; }
.hero-mobile-tag:nth-child(2) { animation-delay: 1s; }
.hero-mobile-tag:nth-child(3) { animation-delay: 2s; }
.hero-mobile-tag:nth-child(4) { animation-delay: 3s; }
.hero-mobile-tag:nth-child(5) { animation-delay: 4s; }

.hero-mobile-tag:hover {
	background: var(--pri);
	color: white;
	box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 900px) {
	.hero-travel-content {
		flex-direction: column-reverse;
		text-align: center;
		padding: 40px 0 36px;
		gap: 40px;
	}
	.hero-travel-left { max-width: 100%; }
	.hero-travel-right { width: 220px; height: 220px; overflow: visible; }
	.hero-travel-right::before { width: 150px; height: 150px; }
	.hero-travel-img { width: 190px !important; height: 190px !important; }
	.hero-travel-title { font-size: 2.8rem !important; }
	.hero-travel-title em { font-size: 1.7rem; }
	.hero-travel-btns { justify-content: center; }
	.hero-travel-stats { justify-content: center; }
	.hero-travel-wrapper { overflow: visible; }

	/* Float badges around image on mobile — same as desktop */
	.hero-float-badge {
		font-size: 11px;
		padding: 6px 11px;
		box-shadow: 0 4px 14px rgba(0,0,0,0.11);
	}
	.hero-float-1 { top: 5%;    left: -44px; }
	.hero-float-4 { top: 44%;   left: -44px; }
	.hero-float-5 { bottom: 5%; left: -44px; }
	.hero-float-3 { top: 12%;   right: -44px; }
	.hero-float-6 { bottom: 12%; right: -44px; }

	/* Hide the static tag row — badges are now floating */
	.hero-mobile-tags { display: none; }
}

@media (max-width: 480px) {
	.hero-travel-title { font-size: 2.2rem !important; }
	.hero-travel-wrapper { min-height: 420px; }
	.hero-travel-content { width: 92%; }
}

@media (max-width: 768px) {
	.hero-travel-img {
		width: 200px !important;
		height: 200px !important;
	}
}

/* ═══════════════════════════════════════
   Gallery — My Visual Diary
═══════════════════════════════════════ */

.trekgallery {
	background: #fff;
	padding: 64px 0 52px;
}

.tg-header {
	text-align: center;
	margin-bottom: 28px;
}

.tg-eyebrow {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3.5px;
	color: #bbb;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.tg-title {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #111;
	margin: 0 0 10px !important;
	line-height: 1.2;
}

.tg-desc {
	font-size: 1.5rem !important;
	color: #888 !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.65 !important;
}

/* Filter pills */
.tg-filters {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 20px;
	margin-bottom: 40px;
}

.tg-pill {
	padding: 8px 20px;
	border-radius: 50px;
	border: 1.5px solid #e0e0e0;
	background: white;
	font-size: 13px;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1;
}

.tg-pill:hover {
	border-color: var(--pri);
	color: var(--pri);
}

.tg-pill.tg-on {
	background: #12122b;
	border-color: #12122b;
	color: white;
}

/* ── Latest Posts — See All button ───────────────────────────── */
.lp-see-all {
    text-align: center;
    padding: 32px 20px 48px;
    width: 100%;
}
.lp-see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 50px;
    background: #12122b;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(18,18,43,0.18);
}
.lp-see-all-btn:hover {
    background: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233,30,99,0.28);
    color: #fff;
}
.lp-see-all-btn svg { transition: transform .15s; }
.lp-see-all-btn:hover svg { transform: translateX(4px); }

.tg-more {
	padding: 8px 20px;
	border-radius: 50px;
	border: 1.5px solid #12122b;
	background: #12122b;
	font-size: 13px;
	font-weight: 600;
	color: white !important;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.tg-more:hover {
	background: var(--pri);
	border-color: var(--pri);
}

/* Stage — 3-D coverflow */
.tg-stage {
	position: relative;
	height: 330px;
	perspective: 1200px;
	perspective-origin: 50% 50%;
}

.tg-band {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 190px;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 0;
}

.tg-track {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transform-style: preserve-3d;
	z-index: 1;
}

/* Cards */
.tg-card {
	position: absolute;
	width: 232px;
	height: 272px;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
	            opacity  0.45s ease;
	will-change: transform, opacity;
}

.tg-card img {
	width: 100% !important;
	height: 100% !important;
	min-width: unset !important;
	max-width: unset !important;
	object-fit: cover;
	display: block;
	pointer-events: none;
	border-radius: 0 !important;
	box-shadow: none !important;
	margin: 0 !important;
}

.tg-dim {
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
}

/* Nav arrows */
.tg-nav {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 26px;
}

.tg-arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid #ccc;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #444;
	transition: all 0.2s ease;
	box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.tg-arrow:hover {
	border-color: var(--pri);
	color: var(--pri);
	transform: scale(1.07);
	box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 768px) {
	.trekgallery { padding: 48px 0 36px; }
	.tg-stage    { height: 268px; }
	.tg-card     { width: 168px; height: 212px; border-radius: 14px; }
	.tg-band     { height: 144px; }
}

@media (max-width: 480px) {
	.trekgallery { padding: 40px 0 28px; }
	.tg-stage    { height: 224px; }
	.tg-card     { width: 132px; height: 176px; border-radius: 12px; }
	.tg-band     { height: 124px; }
	.tg-title    { font-size: 2.2rem !important; }
}

/* ═══════════════════════════════════════
   Google Reviews Section
   ═══════════════════════════════════════ */

.gr-section {
    background: #f5f6f8;
    padding: 60px 32px 70px;
}

/* Overall rating summary */
.gr-overall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.gr-score {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
}
.gr-total {
    font-size: 14px;
    color: #888;
}
.gr-stars {
    display: inline-flex;
    gap: 2px;
    vertical-align: middle;
}

/* Review grid — 6 virtual columns */
.gr-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* ── Base card ─────────────────────────────────────────────────── */
.gr-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    grid-column: span 2;   /* default: 3 cards per row */
    transition: box-shadow .2s, transform .2s;
}
.gr-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.11);
    transform: translateY(-2px);
}
.gr-card.gr-featured {
    grid-column: span 3;   /* featured: 2 cards per row */
}

/* ── Featured card layout ────────────────────────────────────────*/
.gr-card-head-feat { display: flex; }

.gr-text {
    font-size: 14px;
    line-height: 1.65;
    color: #333;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gr-featured .gr-text { -webkit-line-clamp: 8; line-clamp: 8; }

.gr-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    gap: 10px;
    flex-wrap: wrap;
}
.gr-time-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ── Regular card layout ─────────────────────────────────────────*/
.gr-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.gr-author-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gr-time-only {
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
    margin-top: auto;
}

/* ── Shared author / time / logo ──────────────────────────────── */
.gr-author {
    display: flex;
    align-items: center;
    gap: 9px;
}
.gr-author img {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.gr-avatar-initial {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63, #F44336);
    color: #fff;
    font-size: 16px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.gr-author-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}
.gr-time {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}
.gr-google-logo { display: inline-flex; align-items: center; }

/* ── Owner response ───────────────────────────────────────────── */
.gr-owner-response {
    background: #f9f9f9;
    border-left: 3px solid #E91E63;
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    margin-top: 4px;
}
.gr-response-label {
    font-size: 11px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: block;
    margin-bottom: 5px;
}
.gr-response-text {
    font-size: 13px;
    color: #444;
    line-height: 1.55;
    margin: 0;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
    .gr-grid { grid-template-columns: repeat(4, 1fr); }
    .gr-card.gr-featured { grid-column: span 2; }
    .gr-card { grid-column: span 2; }
}
@media (max-width: 600px) {
    .gr-section { padding: 40px 16px 50px; }
    .gr-grid { grid-template-columns: 1fr; }
    .gr-card, .gr-card.gr-featured { grid-column: span 1; }
}

/* ═══════════════════════════════════════
   Our Team — Card Slider
═══════════════════════════════════════ */

.trek-team {
    background: #fff;
    padding: 20px 0px;
}

.trek-team-head {
    text-align: center;
    max-width: 600px;
    margin: 0px auto;
    padding: 0 20px;
}

.tt-eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--pri);
	margin-bottom: 12px;
}

.tt-title {
	font-size: clamp(2rem, 3.5vw, 2.6rem);
	font-weight: 800;
	color: #111;
	line-height: 1.25;
	margin: 0 0 14px !important;
}

.tt-desc {
	font-size: 1.5rem !important;
	color: #777 !important;
	line-height: 1.7 !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Slider area */
.tt-slider-area {
	padding: 64px 0 12px;
	overflow: hidden;
}

/* Track — all slides are centered here, JS moves them */
.tt-track {
	position: relative;
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Each slide */
.tt-slide {
	position: absolute;
	width: 280px;
	cursor: pointer;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
	            opacity  0.45s ease;
	will-change: transform, opacity;
}

/* Circular avatar — floats above the card */
.tt-avatar-wrap {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	border: 4px solid #fff;
	box-shadow: 0 6px 22px rgba(0,0,0,0.14);
	overflow: hidden;
	background: #f0f0f0;
}

.tt-avatar-wrap img {
	width: 100% !important;
	height: 100% !important;
	min-width: unset !important;
	max-width: unset !important;
	object-fit: cover;
	object-position: top center;
	display: block;
	border-radius: 50% !important;
	box-shadow: none !important;
	margin: 0 !important;
}

.tt-avatar-ph {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #eef4ff, #f5eeff);
}

/* Card body — overlaps the avatar with negative margin */
.tt-card {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 10px 44px rgba(0,0,0,0.13);
	padding: 68px 24px 28px;
	text-align: center;
	margin-top: -55px;
	position: relative;
	overflow: hidden;
}

.tt-name {
	font-size: 17px !important;
	font-weight: 700 !important;
	color: var(--pri) !important;
	margin: 0 0 4px !important;
	padding: 0 !important;
	line-height: 1.2 !important;
}

.tt-role {
	font-size: 12.5px;
	color: #aaa;
	font-weight: 500;
	display: block;
	margin-bottom: 14px;
}

.tt-divider {
	width: 36px;
	height: 2px;
	background: var(--pri);
	margin: 0 auto 14px;
	border-radius: 2px;
	opacity: 0.35;
}

.tt-bio {
	font-size: 13.5px !important;
	color: #555 !important;
	line-height: 1.62 !important;
	margin: 0 0 18px !important;
	padding: 0 !important;
}

/* Social icons */
.tt-socials {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.tt-soc {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1.5px solid #eee;
	background: #fafafa;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bgdim);
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tt-soc:hover {
	background: var(--pri);
	border-color: var(--pri);
	color: white;
}

.tt-soc svg { display: block; }

/* White wash overlay for side cards */
.tt-overlay {
	position: absolute;
	inset: 0;
	background: #fff;
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
	border-radius: 24px;
}

/* Dot indicators */
.tt-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
	margin-top: 30px;
	padding-bottom: 8px;
}

.tt-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ddd;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: all 0.25s ease;
}

.tt-dot.tt-dot-on {
	background: var(--pri);
	transform: scale(1.25);
	outline: 3px solid var(--pri);
	outline-offset: 3px;
}

/* Responsive */
@media (max-width: 560px) {
	.trek-team       { padding: 0px}
	.tt-slider-area  { padding: 0px 0 10px; }
	.tt-track        { height: 380px; }
	.tt-slide        { width: 240px; }
	.tt-avatar-wrap  { width: 90px; height: 90px; }
	.tt-card         { padding: 56px 18px 22px; }
	.tt-bio          { font-size: 12.5px !important; }
}


/* ═══════════════════════════════════════════════════
   GET IN TOUCH — Minimal Animated Contact Section
   ═══════════════════════════════════════════════════ */

.gi-section {
    background: #f8f9fc;
    padding: 64px 32px 80px;
}

/* Status banners */
.gi-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto 28px;
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}
.gi-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.gi-error   { background: #fff1f2; color: #e11d48; border: 1px solid #fecdd3; }

/* Two-column grid */
.gi-wrap {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: start;
}

/* ── Left column ── */
.gi-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}
.gi-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #eef0f4;
}
.gi-info-item:first-child { padding-top: 0; }
.gi-info-item:last-child  { border-bottom: none; }
.gi-icon {
    width: 44px; height: 44px;
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #E91E63;
}
.gi-label {
    display: block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: #aaa; margin-bottom: 3px;
}
.gi-value {
    display: block;
    font-size: 14px; font-weight: 600; color: #1a1a2e;
    text-decoration: none;
}
a.gi-value:hover { color: #E91E63; }

.gi-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #e8eaf0;
}
.gi-map iframe { display: block; }

/* ── Right column — form card ── */
.gi-form {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Floating label fields */
.gi-field {
    position: relative;
}
.gi-field input,
.gi-field textarea {
    width: 100%; padding: 18px 14px 8px;
    border: 1.5px solid #e0e3ea;
    border-radius: 10px;
    font-size: 14px; font-family: inherit;
    background: #fafbfc;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    resize: none;
}
.gi-field input:focus,
.gi-field textarea:focus {
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233,30,99,0.09);
    background: #fff;
}
.gi-field label {
    position: absolute;
    top: 50%; left: 15px;
    transform: translateY(-50%);
    font-size: 14px; color: #aaa; font-family: inherit;
    pointer-events: none;
    transition: top .18s, font-size .18s, color .18s, transform .18s;
}
.gi-area label { top: 18px; transform: none; }

/* Float label up on focus or when has value */
.gi-field input:focus ~ label,
.gi-field input:not(:placeholder-shown) ~ label {
    top: 7px; font-size: 10px; color: #E91E63;
    transform: none;
}
.gi-field textarea:focus ~ label,
.gi-field textarea:not(:placeholder-shown) ~ label {
    top: 5px; font-size: 10px; color: #E91E63;
}

/* Select wrapper */
.gi-select-wrap { position: relative; }
.gi-select-wrap select {
    width: 100%; padding: 22px 38px 8px 14px;
    border: 1.5px solid #e0e3ea; border-radius: 10px;
    font-size: 14px; font-family: inherit;
    background: #fafbfc; appearance: none;
    outline: none; cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.gi-select-wrap select:focus {
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233,30,99,0.09);
    background: #fff;
}
.gi-select-lbl {
    position: absolute; top: 8px; left: 15px;
    font-size: 10px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase;
    color: #aaa; pointer-events: none;
}
.gi-select-arrow {
    position: absolute; right: 14px; top: 50%;
    transform: translateY(-50%); pointer-events: none;
    color: #999;
}

/* Submit button */
.gi-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 15px;
    background: #12122b; color: #fff;
    border: none; border-radius: 12px;
    font-size: 15px; font-weight: 700; font-family: inherit;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(18,18,43,0.15);
}
.gi-btn:hover {
    background: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(233,30,99,0.28);
}
.gi-btn svg { transition: transform .2s; }
.gi-btn:hover svg { transform: translateX(4px) translateY(-2px); }

/* ── Entrance animations ── */
@keyframes giSlideL {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes giSlideR {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
.gi-anim { opacity: 0; }
.gi-anim.gi-in { animation-duration: .65s; animation-fill-mode: both; animation-timing-function: cubic-bezier(.22,.61,.36,1); }
.gi-anim-l.gi-in { animation-name: giSlideL; }
.gi-anim-r.gi-in { animation-name: giSlideR; animation-delay: .12s; }

/* ── Responsive ── */
@media (max-width: 860px) {
    .gi-section { padding: 48px 20px 64px; }
    .gi-wrap { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
    .gi-form { padding: 24px 18px; }
}


/* ============================================================
   PRICING PLANS SECTION
   ============================================================ */

.pp-section {
    padding: 80px 32px 88px;
    background: #f8f9fc;
    overflow: hidden;
}

/* ── Toggle ─────────────────────────────────────── */
.pp-toggle-wrap {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin: 4px 0 44px;
    flex-wrap: wrap;
}
.pp-toggle-label { font-size: 14px; font-weight: 600; color: #555; }
.pp-lbl-group em { font-style: normal; color: #888; font-weight: 400; font-size: 12px; }

.pp-toggle {
    width: 48px; height: 26px; border-radius: 13px;
    background: #dde1e7; border: none; cursor: pointer; position: relative;
    transition: background .25s; padding: 0; flex-shrink: 0;
}
.pp-toggle.pp-toggle-on { background: linear-gradient(90deg, #F44336, #E91E63); }
.pp-toggle-knob {
    position: absolute; top: 3px; left: 3px;
    width: 20px; height: 20px; border-radius: 50%;
    background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.18);
    transition: transform .25s;
}
.pp-toggle.pp-toggle-on .pp-toggle-knob { transform: translateX(22px); }

.pp-toggle-badge {
    font-size: 11px; font-weight: 800; letter-spacing: .4px;
    text-transform: uppercase; color: #E91E63;
    background: rgba(233,30,99,0.1); border: 1px solid rgba(233,30,99,0.2);
    padding: 3px 10px; border-radius: 20px;
}

/* ── Cards grid ─────────────────────────────────── */
.pp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1060px; margin: 0 auto 44px;
    align-items: stretch;
}

/* ── Base card ──────────────────────────────────── */
.pp-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #eaecf0;
    padding: 32px 28px 28px;
    display: flex; flex-direction: column;
    position: relative;
    transition: transform .22s, box-shadow .22s;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}
.pp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.11);
}

/* ── Featured card ──────────────────────────────── */
.pp-card-featured {
    background: linear-gradient(150deg, #F44336 0%, #E91E63 100%);
    border-color: transparent;
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 16px 48px rgba(233,30,99,0.32);
    z-index: 2;
}
.pp-card-featured:hover {
    transform: scale(1.04) translateY(-5px);
    box-shadow: 0 22px 56px rgba(233,30,99,0.38);
}

.pp-badge-pop {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: #21313C; color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
    padding: 5px 18px; border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,.22);
}

/* ── Card header ────────────────────────────────── */
.pp-card-head { margin-bottom: 24px; }
.pp-plan-name {
    font-size: 18px; font-weight: 800; color: #21313C;
    display: block; margin-bottom: 6px;
}
.pp-card-featured .pp-plan-name { color: #fff; }

.pp-plan-desc {
    font-size: 13px; color: #888; line-height: 1.55; margin: 0 0 20px;
    text-transform: none;
}
.pp-card-featured .pp-plan-desc { color: rgba(255,255,255,0.78); }

.pp-price-block {
    display: flex; align-items: flex-end; gap: 2px; flex-wrap: nowrap;
}
.pp-currency {
    font-size: 20px; font-weight: 700; color: #21313C;
    line-height: 1; padding-bottom: 6px;
}
.pp-card-featured .pp-currency { color: #fff; }
.pp-amount {
    font-size: 44px; font-weight: 900; color: #21313C;
    line-height: 1; letter-spacing: -1px;
}
.pp-card-featured .pp-amount { color: #fff; }
.pp-amount-custom {
    font-size: 36px; font-weight: 900; color: #21313C; line-height: 1;
}
.pp-per {
    font-size: 13px; color: #999; font-weight: 500;
    padding-bottom: 8px; margin-left: 4px;
}
.pp-per-custom { padding-bottom: 4px; }
.pp-card-featured .pp-per { color: rgba(255,255,255,0.7); }

/* ── Feature list ───────────────────────────────── */
.pp-features {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 11px;
    flex: 1;
}
.pp-features li {
    display: flex; align-items: center; gap: 9px;
    font-size: 13.5px; font-weight: 500; color: #444;
    text-transform: none;
}
.pp-features li svg { stroke: #E91E63; flex-shrink: 0; }
.pp-card-featured .pp-features li { color: rgba(255,255,255,0.92); }
.pp-card-featured .pp-features li svg { stroke: #fff; }

.pp-feat-dim { opacity: .45; }
.pp-feat-dim svg { stroke: #aaa !important; }

/* ── CTA buttons ────────────────────────────────── */
.pp-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 24px; border-radius: 12px;
    font-size: 14px; font-weight: 700;
    text-decoration: none; transition: background .2s, transform .15s, color .2s;
    margin-top: auto; text-align: center;
}
.pp-btn svg { flex-shrink: 0; }

.pp-btn-outline {
    background: transparent;
    border: 2px solid #dde1e7;
    color: #21313C;
}
.pp-btn-outline:hover {
    background: linear-gradient(90deg, #F44336, #E91E63);
    border-color: transparent; color: #fff;
    transform: translateY(-1px);
}
.pp-btn-white {
    background: #fff; color: #E91E63;
    border: 2px solid transparent;
    box-shadow: 0 2px 14px rgba(0,0,0,.12);
}
.pp-btn-white:hover {
    background: #21313C; color: #fff;
    transform: translateY(-1px);
}
/* Call Now on non-featured cards */
.pp-btn-call {
    background: linear-gradient(90deg, #F44336, #E91E63);
    color: #fff; border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(233,30,99,.25);
}
.pp-btn-call:hover {
    background: #21313C; color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(33,49,60,.3);
}

/* ── Related events block ───────────────────────── */
.pp-events {
    margin: 0 0 18px;
    display: flex; flex-direction: column; gap: 7px;
}
.pp-events-label {
    display: flex; align-items: center; gap: 5px;
    font-size: 10.5px; font-weight: 800; letter-spacing: .5px;
    text-transform: uppercase; color: #aaa; margin-bottom: 2px;
}
.pp-events-featured .pp-events-label { color: rgba(255,255,255,.55); }
.pp-events-featured .pp-events-label svg { stroke: rgba(255,255,255,.55); }

.pp-event-pill {
    display: flex; align-items: center; flex-wrap: wrap; gap: 5px;
    padding: 7px 11px; border-radius: 8px;
    background: rgba(0,0,0,.04); border: 1px solid rgba(0,0,0,.07);
    text-decoration: none; font-size: 12px; font-weight: 600; color: #444;
    transition: background .15s, border-color .15s;
    line-height: 1.3;
    text-transform: none;
}
.pp-event-pill:hover { background: rgba(233,30,99,.07); border-color: rgba(233,30,99,.2); color: #E91E63; }
.pp-event-pill em {
    font-style: normal; font-size: 11px; font-weight: 500; color: #999;
    background: rgba(0,0,0,.06); border-radius: 4px; padding: 1px 6px;
}
/* On featured (gradient) card */
.pp-events-featured .pp-event-pill {
    background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.22); color: #fff;
}
.pp-events-featured .pp-event-pill:hover { background: rgba(255,255,255,.28); border-color: rgba(255,255,255,.4); }
.pp-events-featured .pp-event-pill em { background: rgba(255,255,255,.18); color: rgba(255,255,255,.8); }

/* ── Trust bar ──────────────────────────────────── */
.pp-trust {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 28px; max-width: 700px; margin: 0 auto;
    font-size: 13px; font-weight: 600; color: #666;
}
.pp-trust span {
    display: flex; align-items: center; gap: 7px;
}
.pp-trust svg { stroke: #E91E63; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
    .pp-grid { grid-template-columns: 1fr; max-width: 440px; }
    .pp-card-featured { transform: scale(1); }
    .pp-card-featured:hover { transform: translateY(-5px); }
}
@media (max-width: 560px) {
    .pp-section { padding: 60px 16px 72px; }
    .pp-amount { font-size: 36px; }
}
