/*
 * theme.css
 * Palawan Transfers — Global Theme Styles
 * Loads on every page
 *
 * Contents:
 *   1. CSS Variables / Tokens
 *   2. Reset & Base
 *   3. Typography
 *   4. Header
 *   5. Navigation & Dropdown
 *   6. Mobile Menu
 *   7. Footer
 *   8. Buttons
 *   9. Utility Classes
 */


/* ═══════════════════════════════════
   1. CSS VARIABLES
   ═══════════════════════════════════ */
:root {
	--pvt-ocean:       #0B4F6C;
	--pvt-ocean-dark:  #072D3E;
	--pvt-ocean-mid:   #1A7A9E;
	--pvt-sand:        #F5EDD8;
	--pvt-sand-dark:   #E8D9B8;
	--pvt-coral:       #E05A2B;
	--pvt-coral-dark:  #c94e22;
	--pvt-white:       #FFFFFF;
	--pvt-ink:         #141414;
	--pvt-ink-soft:    #3A3A3A;
	--pvt-muted:       #7A7A6E;
	--pvt-green:       #74DFB8;
	--pvt-border:      rgba(0,0,0,0.09);
	--pvt-radius-sm:   8px;
	--pvt-radius-md:   16px;
	--pvt-radius-lg:   24px;
	--pvt-font-head:   'Sora', sans-serif;
	--pvt-font-body:   'Inter', sans-serif;
	--pvt-max-w:       1200px;
	--pvt-header-h:    90px;
}


/* ═══════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════ */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--pvt-font-body);
	font-size: 16px;
	color: var(--pvt-ink);
	background: var(--pvt-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul, ol {
	list-style: none;
}

button {
	font-family: var(--pvt-font-body);
}


/* ═══════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--pvt-font-head);
	font-weight: 700;
	line-height: 1.15;
	color: var(--pvt-ink);
}

p {
	line-height: 1.65;
	color: var(--pvt-ink-soft);
}


/* ═══════════════════════════════════
   4. HEADER
   ═══════════════════════════════════ */
#masthead {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #fff;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

#masthead.scrolled {
	background: #072D3E;
	box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.pvt-header-inner {
	display: flex;
	align-items: center;
	max-width: var(--pvt-max-w);
	margin: 0 auto;
	padding: 0 24px;
	height: var(--pvt-header-h);
}

/* Logo — 20% */
.site-branding {
	width: 20%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.site-branding .custom-logo-link {
	display: flex;
	align-items: center;
	line-height: 1;
}

.site-branding .custom-logo-link img,
.site-branding .custom-logo {
	height: 90px;
	width: auto;
	display: block;
}

.site-description {
	display: none;
}

/* Nav — 80% */
.main-navigation {
	width: 80%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
}


/* ═══════════════════════════════════
   5. NAVIGATION & DROPDOWN
   ═══════════════════════════════════ */

/* Menu list */
.pvt-nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

/* Top level items */
.pvt-nav-menu > li {
	position: relative;
	padding: 0 5px;
}

/* Top level links */
.pvt-nav-menu > li > a {
	display: flex;
	align-items: center;
	gap: 4px;
	font-family: var(--pvt-font-body);
	font-size: 14px;
	font-weight: 500;
	color: rgba(7,45,62,0.97);
	text-decoration: none;
	padding: 8px 14px;
	border-radius: var(--pvt-radius-sm);
	white-space: nowrap;
	transition: color 0.2s, background 0.2s;
}

.pvt-nav-menu > li > a:hover,
.pvt-nav-menu > li:hover > a,
.pvt-nav-menu > li.current-menu-item > a,
.pvt-nav-menu > li.current-menu-parent > a {
	color: #ffffff;
	background: rgba(7,45,62,0.97);
}

/* Dropdown arrow */
.pvt-nav-menu > li.menu-item-has-children > a::after {
	content: '';
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	transition: transform 0.25s;
	display: inline-block;
	margin-left: 2px;
	line-height: 1;
}

.pvt-nav-menu > li.menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
	color: #ffffff;
}

/* Dropdown panel */
.pvt-nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 240px;
	background: var(--pvt-ocean-dark);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--pvt-radius-md);
	padding: 8px;
	list-style: none;
	margin: 0;
	box-shadow: 0 12px 40px rgba(0,0,0,0.35);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease,
	            visibility 0.2s ease,
	            transform 0.2s ease;
}

/* Show dropdown */
.pvt-nav-menu > li:hover > .sub-menu,
.pvt-nav-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Submenu items — each on new line */
.pvt-nav-menu .sub-menu,
.pvt-nav-menu .sub-menu li,
.pvt-nav-menu .sub-menu ul {
	display: block !important;
	flex-direction: unset !important;
	width: 100%;
}

.pvt-nav-menu .sub-menu li {
	float: none !important;
	clear: both !important;
	margin: 0;
	padding: 0;
}

.pvt-nav-menu .sub-menu li a {
	display: block !important;
	width: 100% !important;
	font-family: var(--pvt-font-body);
	font-size: 14px;
	font-weight: 400;
	color: rgba(255,255,255,0.75);
	text-decoration: none;
	padding: 10px 14px;
	border-radius: var(--pvt-radius-sm);
	white-space: nowrap;
	transition: background 0.15s, color 0.15s;
}

.pvt-nav-menu .sub-menu li a:hover {
	background: rgba(255,255,255,0.08);
	color: #ffffff;
}

.pvt-nav-menu .sub-menu li.current-menu-item > a {
	color: var(--pvt-green);
	background: rgba(116,223,184,0.08);
}


/* ── BOOK NOW BUTTON ── */
.pvt-header-cta {
	display: inline-block;
	background: var(--pvt-coral);
	color: #ffffff !important;
	font-family: var(--pvt-font-body);
	font-size: 14px;
	font-weight: 700;
	padding: 9px 22px;
	border-radius: 50px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	margin-left: 12px;
	transition: background 0.2s, transform 0.15s;
}

.pvt-header-cta:hover {
	background: var(--pvt-coral-dark);
	transform: translateY(-1px);
	color: #ffffff !important;
}


/* ── HAMBURGER ── */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: var(--pvt-radius-sm);
	transition: background 0.2s;
	order: 3;
}

.menu-toggle:hover {
	background: rgba(255,255,255,0.08);
}

.pvt-hamburger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 22px;
}

.pvt-hamburger span {
	display: block;
	height: 2px;
	background: rgba(7,45,62,0.97);
	border-radius: 2px;
	transition: transform 0.3s ease,
	            opacity 0.3s ease,
	            width 0.3s ease;
}

.pvt-hamburger span:nth-child(3) {
	width: 14px;
}

.menu-toggle[aria-expanded="true"] .pvt-hamburger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .pvt-hamburger span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] .pvt-hamburger span:nth-child(3) {
	width: 22px;
	transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════
   6. MOBILE MENU
   ═══════════════════════════════════ */
@media (max-width: 768px) {

	.site-branding {
		width: auto;
		flex: 1;
	}

	.main-navigation {
		width: auto;
	}

	.menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.pvt-header-cta {
		display: none;
	}

	#primary-menu {
		position: fixed;
		top: var(--pvt-header-h);
		left: 0;
		right: 0;
		background: var(--pvt-ocean-dark);
		overflow-y: auto;
		padding: 12px 20px 48px;
		flex-direction: column;
		gap: 0;
		border-top: 1px solid rgba(255,255,255,0.1);
		z-index: 9998;
	}

	#primary-menu.toggled {
		display: flex;
	}

	.pvt-nav-menu {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.pvt-nav-menu > li {
		border-bottom: 1px solid rgba(255,255,255,0.08);
		width: 100%;
	}

	.pvt-nav-menu > li:last-child {
		border-bottom: none;
	}

	.pvt-nav-menu > li > a {
		font-size: 16px;
		font-weight: 600;
		padding: 16px 8px;
		border-radius: 0;
		color: #ffffff;
		background: none;
		justify-content: space-between;
		width: 100%;
	}

	.pvt-nav-menu > li > a:hover {
		background: none;
		color: var(--pvt-green);
	}

	.pvt-nav-menu > li.menu-item-has-children > a::after {
		transform: none;
		color: rgba(255,255,255,0.4);
	}

	.pvt-nav-menu > li.menu-item-has-children.open > a::after {
		transform: rotate(180deg);
		color: #ffffff;
	}

	/* Mobile submenu */
	.pvt-nav-menu .sub-menu {
		position: relative !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		box-shadow: none !important;
		border: none !important;
		border-radius: var(--pvt-radius-sm) !important;
		background: rgba(255,255,255,0.04) !important;
		padding: 4px 0 4px 12px !important;
		margin: 0 0 8px !important;
		min-width: unset !important;
		width: 100% !important;
		transition: none !important;
	}

	.pvt-nav-menu > li.open > .sub-menu {
		display: block !important;
	}

	.pvt-nav-menu .sub-menu li a {
		font-size: 15px;
		padding: 12px 14px;
		white-space: normal;
	}

	.pvt-nav-menu::after {
		content: 'Book Now →';
		display: block;
		text-align: center;
		background: var(--pvt-coral);
		color: #ffffff;
		font-family: var(--pvt-font-body);
		font-size: 16px;
		font-weight: 700;
		padding: 14px 24px;
		border-radius: 50px;
		margin-top: 24px;
		cursor: pointer;
	}
}


/* ═══════════════════════════════════
   7. FOOTER
   ═══════════════════════════════════ */
.site-footer {
	background: var(--pvt-ocean-dark);
	color: rgba(255,255,255,0.7);
	padding: 56px 24px 32px;
}

.pvt-footer-inner {
	max-width: var(--pvt-max-w);
	margin: 0 auto;
}


/* ═══════════════════════════════════
   8. BUTTONS
   ═══════════════════════════════════ */
.pvt-btn {
	display: inline-block;
	font-family: var(--pvt-font-body);
	font-size: 15px;
	font-weight: 700;
	padding: 14px 32px;
	border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	border: none;
	transition: background 0.2s, transform 0.15s;
}

.pvt-btn--coral {
	background: var(--pvt-coral);
	color: #ffffff;
}

.pvt-btn--coral:hover {
	background: var(--pvt-coral-dark);
	transform: translateY(-1px);
	color: #ffffff;
}

.pvt-btn--ocean {
	background: var(--pvt-ocean);
	color: #ffffff;
}

.pvt-btn--ocean:hover {
	background: var(--pvt-ocean-dark);
	color: #ffffff;
}

.pvt-btn--ghost {
	background: rgba(255,255,255,0.1);
	color: #ffffff;
	border: 1.5px solid rgba(255,255,255,0.3);
}

.pvt-btn--ghost:hover {
	background: rgba(255,255,255,0.18);
	color: #ffffff;
}

.pvt-btn--white {
	background: #ffffff;
	color: var(--pvt-coral);
}

.pvt-btn--white:hover {
	transform: translateY(-2px);
	color: var(--pvt-coral);
}


/* ═══════════════════════════════════
   9. UTILITY CLASSES
   ═══════════════════════════════════ */
.pvt-container {
	max-width: var(--pvt-max-w);
	margin-inline: auto;
	padding-inline: 24px;
}

.pvt-container--narrow {
	max-width: 780px;
}

.pvt-eyebrow-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--pvt-coral);
	margin-bottom: 8px;
	display: block;
}

.pvt-eyebrow-label--light {
	color: var(--pvt-green);
}

.pvt-section-title {
	font-family: var(--pvt-font-head);
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 700;
	color: var(--pvt-ink);
	line-height: 1.15;
	margin-bottom: 12px;
}

.pvt-section-title--light {
	color: #ffffff;
}

.pvt-section-sub {
	font-size: 16px;
	color: var(--pvt-muted);
	max-width: 540px;
	line-height: 1.65;
	margin-bottom: 48px;
}

.pvt-section-sub--light {
	color: rgba(255,255,255,0.65);
}


/* ═══════════════════════════════════
   PUSH CONTENT BELOW FIXED HEADER
   ═══════════════════════════════════ */
.site-content,
#content {
	padding-top: var(--pvt-header-h);
}

body.menu-open {
	overflow: hidden;
}


/* ═══════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		transition: none !important;
		animation: none !important;
	}
}


/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */

.site-footer {
	background: var(--pvt-ocean-dark);
	color: rgba(255,255,255,0.7);
	padding: 64px 0 0;
}

.pvt-footer-inner {
	max-width: var(--pvt-max-w);
}

/* ── TOP GRID ── */
.pvt-footer-top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
	gap: 32px;
	padding-bottom: 48px;
}


/* ── BRAND COLUMN ── */
.pvt-footer-brand {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pvt-footer-logo {
	display: flex;
	align-items: center;
}

.pvt-footer-logo img,
.pvt-footer-logo .custom-logo {
	height: 45px;
	width: auto;
	 /* makes logo white if it's dark */
}

.pvt-footer-logo-text {
	font-family: var(--pvt-font-head);
	font-size: 19px;
	font-weight: 700;
	color: #ffffff;
}

.pvt-footer-desc {
	font-family: var(--pvt-font-body);
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	line-height: 1.7;
	max-width: 280px;
}

.pvt-footer-socials {
	display: flex;
	gap: 10px;
	margin-top: 4px;
}

.pvt-footer-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 50%;
	color: rgba(255,255,255,0.75);
	transition: background 0.2s, color 0.2s, transform 0.2s;
}

.pvt-footer-socials a:hover {
	background: var(--pvt-coral);
	border-color: var(--pvt-coral);
	color: #ffffff;
	transform: translateY(-2px);
}


/* ── LINK COLUMNS ── */
.pvt-footer-col-title {
	font-family: var(--pvt-font-head);
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.02em;
	margin-bottom: 18px;
}

.pvt-footer-links,
.pvt-footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.pvt-footer-links a {
	font-family: var(--pvt-font-body);
	font-size: 14px;
	color: rgba(255,255,255,0.62);
	text-decoration: none;
	transition: color 0.2s, padding-left 0.2s;
	display: inline-block;
}

.pvt-footer-links a:hover {
	color: var(--pvt-green);
	padding-left: 4px;
}


/* ── CONTACT COLUMN ── */
.pvt-footer-contact li {
	font-family: var(--pvt-font-body);
	font-size: 14px;
	color: rgba(255,255,255,0.62);
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.5;
}

.pvt-footer-contact a {
	color: rgba(255,255,255,0.62);
	text-decoration: none;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	transition: color 0.2s;
}

.pvt-footer-contact a:hover {
	color: var(--pvt-green);
}

.pvt-footer-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: #25D366;
	color: #ffffff;
	font-family: var(--pvt-font-body);
	font-size: 13px;
	font-weight: 700;
	padding: 10px 18px;
	border-radius: 50px;
	text-decoration: none;
	margin-top: 18px;
	width: fit-content;
	transition: background 0.2s, transform 0.15s;
}

.pvt-footer-cta:hover {
	background: #1ebe5a;
	transform: translateY(-1px);
	color: #ffffff;
}


/* ── DIVIDER ── */
.pvt-footer-divider {
	border: none;
	border-top: 1px solid rgba(255,255,255,0.1);
	margin: 0;
}


/* ── BOTTOM BAR ── */
.site-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 24px 0;
}

.pvt-footer-copy {
	font-family: var(--pvt-font-body);
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	margin: 0;
}

.pvt-footer-legal {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--pvt-font-body);
	font-size: 13px;
}

.pvt-footer-legal a {
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	transition: color 0.2s;
}

.pvt-footer-legal a:hover {
	color: #ffffff;
}

.pvt-footer-legal span {
	color: rgba(255,255,255,0.3);
}


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width: 1024px) {

	.pvt-footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 36px 24px;
	}

	.pvt-footer-brand {
		grid-column: 1 / -1;
		max-width: 460px;
	}
}

@media (max-width: 600px) {

	.site-footer {
		padding: 48px 0 0;
	}

	.pvt-footer-top {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-bottom: 36px;
	}

	.pvt-footer-brand {
		max-width: 100%;
	}

	.site-info {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 0 28px;
	}
}


.container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	width: 100%;
}

@media (max-width: 768px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 480px) {
	.container {
		padding-left: 16px;
		padding-right: 16px;
	}
}


/* ═══════════════════════════════════
   HERO BANNER
   ═══════════════════════════════════ */

.hero-banner {
	position: relative;
	min-height: 75vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: calc(var(--pvt-header-h) + 60px) 24px 80px;
	overflow: hidden;
	isolation: isolate;
}

/* ── BACKGROUND IMAGE ── */
.hero-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image: url('https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?w=1600&q=80');

	/* Replace the URL above with your own image:
	   background-image: url('/wp-content/uploads/hero-el-nido.jpg'); */

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* ── DARK OVERLAY ── */
.hero-banner::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		160deg,
		rgba(7, 45, 62, 0.88) 0%,
		rgba(11, 79, 108, 0.80) 50%,
		rgba(26, 122, 158, 0.70) 100%
	);
}

/* ── DOT PATTERN OVERLAY ── */
.hero-banner .hero-dots {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: radial-gradient(
		circle,
		rgba(255,255,255,0.05) 1px,
		transparent 1px
	);
	background-size: 32px 32px;
	pointer-events: none;
}

/* All direct children sit above overlays */
.hero-banner > * {
	position: relative;
	z-index: 1;
}

/* Max width wrapper */
.hero-banner .hero-inner {
	max-width: var(--pvt-max-w);
	width: 100%;
	margin: 0 auto;
}


/* ── EYEBROW LABEL ── */
.hero-banner > span,
.hero-banner .hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	color: rgba(255,255,255,0.92);
	font-family: var(--pvt-font-body);
	font-size: 13px;
	font-weight: 500;
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 24px;
	width: fit-content;
}

.hero-banner > span::before {
	content: '';
	width: 6px;
	height: 6px;
	background: #5EE7AA;
	border-radius: 50%;
	flex-shrink: 0;
}


/* ── H1 ── */
.hero-banner h1 {
	font-family: var(--pvt-font-head);
	font-size: clamp(32px, 5.5vw, 64px);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.08;
	max-width: 760px;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

/* Highlight "El Nido" */
.hero-banner h1 em {
	font-style: normal;
	color: #74DFB8;
}


/* ── SUBHEADLINE ── */
.hero-banner p {
	font-family: var(--pvt-font-body);
	font-size: clamp(15px, 1.8vw, 18px);
	color: rgba(255,255,255,0.78) !important;
	max-width: 560px;
	line-height: 1.65;
	margin-bottom: 36px;
}


/* ── CTA BUTTON ── */
.hero-banner > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--pvt-coral);
	color: #ffffff;
	font-family: var(--pvt-font-body);
	font-size: 16px;
	font-weight: 700;
	padding: 14px 32px;
	border-radius: 50px;
	text-decoration: none;
	width: fit-content;
	margin-bottom: 48px;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
	box-shadow: 0 4px 20px rgba(224,90,43,0.4);
}

.hero-banner > a:hover {
	background: var(--pvt-coral-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(224,90,43,0.5);
	color: #ffffff;
}


/* ── STATS ROW ── */
.hero-banner ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 40px;
	list-style: none;
	padding: 0;
	margin: 30px 0 48px;
}

.hero-banner ul li {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hero-banner ul li strong,
.hero-banner ul li::before {
	font-family: var(--pvt-font-head);
	font-size: 26px;
	font-weight: 700;
	color: #ffffff;
	display: block;
	line-height: 1.1;
}

.hero-banner ul li {
	font-family: var(--pvt-font-body);
	font-size: 13px;
	color: rgba(255,255,255,0.6);
}

/* Split stat number from label using · as separator */
.hero-banner ul li {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255,255,255,0.85);
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	padding: 10px 16px;
	border-radius: 50px;
	white-space: nowrap;
}


/* ── TRUST BAR (emoji items after ul) ── */
.hero-banner .trust-bar,
.hero-trust-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,0.12);
	margin-top: 8px;
}

.hero-trust-bar span,
.hero-banner .trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--pvt-font-body);
	font-size: 13px;
	font-weight: 500;
	color: rgba(255,255,255,0.75);
	white-space: nowrap;
}


/* ── WAVE BOTTOM ── */
.hero-banner .hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	line-height: 0;
	pointer-events: none;
}

.hero-banner .hero-wave svg {
	width: 100%;
	height: 80px;
}


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 768px) {

	.hero-banner {
		min-height: 80vh;
		padding: calc(var(--pvt-header-h) + 40px) 20px 60px;
		justify-content: flex-end;
	}

	/* On mobile background focuses on right side — beach view */
	.hero-banner::before {
		background-position: 70% center;
	}

	.hero-banner h1 {
		font-size: clamp(28px, 7vw, 40px);
	}

	.hero-banner > ul {
		gap: 10px;
	}

	.hero-banner > ul li {
		font-size: 12px;
		padding: 8px 12px;
	}

	.hero-trust-bar {
		gap: 10px 16px;
	}

	.hero-trust-bar span {
		font-size: 12px;
	}
}

@media (max-width: 480px) {

	.hero-banner > a {
		width: 100%;
		justify-content: center;
	}

	.hero-banner > ul {
		flex-direction: column;
		gap: 8px;
	}

	.hero-banner > ul li {
		width: fit-content;
	}
}

/* ═══════════════════════════════════
   PRICING / VAN OPTIONS SECTION
   ═══════════════════════════════════ */


.pvt-pricing-section {
    background: var(--pvt-sand);
    padding: 80px 0;
}

.pvt-pricing-section .pvt-section-sub {
    margin-bottom: 0;
}

/* ── TRAVEL LIST — card grid ── */
.travel-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}


/* ═══════════════════════════════════
   CARD BASE
   ═══════════════════════════════════ */
.cards {
    position: relative;
    background: #ffffff;
    border-radius: var(--pvt-radius-lg);
    border: 1.5px solid var(--pvt-sand-dark);
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow 0.25s ease, border-color 0.25s ease,
                transform 0.2s ease;
}

.cards:hover {
    box-shadow: 0 12px 40px rgba(11, 79, 108, 0.12);
    border-color: var(--pvt-ocean-mid);
    transform: translateY(-2px);
}

/* Featured card — private van */
.cards--featured {
    border-color: var(--pvt-ocean);
    box-shadow: 0 8px 32px rgba(11, 79, 108, 0.1);
}

.cards--featured:hover {
    box-shadow: 0 16px 48px rgba(11, 79, 108, 0.18);
}


/* ── BADGE ── */
.cards__badge {
    position: absolute;
    top: -14px;
    left: 28px;
    background: var(--pvt-ocean);
    color: #ffffff;
    font-family: var(--pvt-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(11, 79, 108, 0.3);
}


/* ── ICON ── */
.cards__icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}


/* ── TYPE / TITLE ── */
.cards__type {
    font-family: var(--pvt-font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--pvt-ink);
    margin-bottom: 10px;
    line-height: 1.2;
}


/* ── PRICE ── */
.cards__price {
    font-family: var(--pvt-font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--pvt-ocean);
    margin-bottom: 6px;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.cards__price span {
    font-family: var(--pvt-font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--pvt-muted);
}


/* ── DESCRIPTION ── */
.cards__desc {
    font-family: var(--pvt-font-body);
    font-size: 14px;
    color: var(--pvt-muted);
    line-height: 1.65;
    margin-bottom: 20px;
    margin-top: 4px;
}


/* ── FEATURES LIST ── */
.cards__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.cards__features li {
    font-family: var(--pvt-font-body);
    font-size: 14px;
    color: var(--pvt-ink-soft);
    line-height: 1.45;
    padding-left: 24px;
    position: relative;
}

/* Checkmark before each feature */
.cards__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #1D9E75;
    font-weight: 700;
    font-size: 14px;
}


/* ── BUTTON ── */
.cards__btn {
    display: block;
    text-align: center;
    width: 100%;
    background: var(--pvt-ocean);
    color: #ffffff;
    font-family: var(--pvt-font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cards__btn:hover {
    background: var(--pvt-ocean-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(11, 79, 108, 0.3);
    color: #ffffff;
}

/* Outline variant — shared van */
.cards__btn--outline {
    background: transparent;
    border: 2px solid var(--pvt-ocean);
    color: var(--pvt-ocean);
}

.cards__btn--outline:hover {
    background: var(--pvt-ocean);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(11, 79, 108, 0.25);
}


/* ── DIVIDER between price and features ── */
.cards__features {
    border-top: 1px solid var(--pvt-sand-dark);
    padding-top: 18px;
    margin-top: 4px;
}


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 768px) {

    .pvt-pricing-section {
        padding: 56px 0;
    }

    .travel-list {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 36px;
    }

    /* Featured card shows first on mobile */
    .cards--featured {
        order: -1;
    }

    .cards {
        padding: 32px 22px 24px;
    }

    .cards__price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    .cards {
        padding: 28px 18px 20px;
    }

    .cards__type {
        font-size: 18px;
    }

    .cards__btn {
        font-size: 14px;
        padding: 13px 16px;
    }
}


/* ═══════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════ */

.pvt-how-section {
    background: #ffffff;
    padding: 80px 0;
}

/* Steps ordered list */
.pvt-steps {
    list-style: none;
    padding: 0;
    margin: 48px 0 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    counter-reset: steps;
    position: relative;
}

/* Connecting line between steps */
.pvt-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(10% + 14px);
    right: calc(10% + 14px);
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--pvt-ocean) 0,
        var(--pvt-ocean) 8px,
        transparent 8px,
        transparent 18px
    );
    z-index: 0;
}

/* Each step */
.pvt-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Step number circle */
.pvt-step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pvt-ocean);
    color: #ffffff;
    font-family: var(--pvt-font-head);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(11, 79, 108, 0.3);
    border: 3px solid #ffffff;
    outline: 2px solid var(--pvt-ocean);
    transition: background 0.2s, transform 0.2s;
}

.pvt-step:hover .pvt-step__num {
    background: var(--pvt-coral);
    outline-color: var(--pvt-coral);
    transform: scale(1.08);
}

/* Step content */
.pvt-step__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pvt-step__title {
    font-family: var(--pvt-font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--pvt-ink);
    line-height: 1.3;
    margin: 0;
}

.pvt-step__desc {
    font-family: var(--pvt-font-body);
    font-size: 13px;
    color: var(--pvt-muted);
    line-height: 1.6;
    margin: 0;
}


/* ═══════════════════════════════════
   WHY CHOOSE US SECTION
   ═══════════════════════════════════ */

.pvt-why-section {
    background: var(--pvt-ocean-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.pvt-why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255,255,255,0.03) 1px,
        transparent 1px
    );
    background-size: 32px 32px;
    pointer-events: none;
}

.pvt-why-section .container {
    position: relative;
    z-index: 1;
}

/* Why grid — 3 columns */
.pvt-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

/* Why card */
.pvt-why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--pvt-radius-md);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: default;
}

.pvt-why-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* Icon */
.pvt-why-card__icon {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 4px;
}

/* Title */
.pvt-why-card__title {
    font-family: var(--pvt-font-head);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

/* Description */
.pvt-why-card__desc {
    font-family: var(--pvt-font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin: 0;
}


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {

    .pvt-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    /* Hide connecting line on tablet */
    .pvt-steps::before {
        display: none;
    }

    .pvt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {

    .pvt-how-section,
    .pvt-why-section {
        padding: 56px 0;
    }

    .pvt-steps {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 36px;
    }

    .pvt-steps::before {
        display: none;
    }

    /* Mobile steps — horizontal layout */
    .pvt-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid var(--pvt-sand-dark);
    }

    .pvt-step:last-child {
        border-bottom: none;
    }

    /* Vertical connector line on mobile */
    .pvt-step:not(:last-child)::after {
        display: none;
    }

    .pvt-step__num {
        width: 48px;
        height: 48px;
        font-size: 18px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .pvt-step__title {
        font-size: 16px;
    }

    .pvt-step__desc {
        font-size: 14px;
    }

    .pvt-why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 32px;
    }

    .pvt-why-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 18px;
    }

    .pvt-why-card__icon {
        font-size: 28px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .pvt-why-card__title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .pvt-why-card {
        padding: 18px 16px;
    }

    .pvt-step__num {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}




/* ═══════════════════════════════════
   1. ROUTE INFO SECTION
   ═══════════════════════════════════ */

.pvt-route-section {
	background: var(--pvt-sand);
	padding: 80px 0;
}

.pvt-route-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	margin-top: 48px;
	align-items: start;
}

/* Route facts card */
.pvt-route-facts {
	background: #ffffff;
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: var(--pvt-radius-lg);
	padding: 32px 28px;
}

.pvt-route-facts__title {
	font-family: var(--pvt-font-head);
	font-size: 16px;
	font-weight: 700;
	color: var(--pvt-ink);
	margin-bottom: 20px;
}

.pvt-route-facts__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pvt-route-fact {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--pvt-sand-dark);
}

.pvt-route-fact:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.pvt-route-fact dt {
	font-family: var(--pvt-font-body);
	font-size: 13px;
	font-weight: 500;
	color: var(--pvt-muted);
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	flex-shrink: 0;
}

.pvt-route-fact dd {
	font-family: var(--pvt-font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--pvt-ink);
	text-align: right;
	margin: 0;
}

/* Right side — note + tags */
.pvt-route-side {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pvt-route-note {
	background: #ffffff;
	border: 1.5px solid var(--pvt-sand-dark);
	border-left: 4px solid var(--pvt-ocean);
	border-radius: var(--pvt-radius-md);
	padding: 18px 20px;
	font-family: var(--pvt-font-body);
	font-size: 14px;
	color: var(--pvt-ink-soft);
	line-height: 1.65;
}

.pvt-route-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pvt-route-tag {
	background: #ffffff;
	border: 1px solid var(--pvt-sand-dark);
	color: var(--pvt-ocean-dark);
	font-family: var(--pvt-font-body);
	font-size: 13px;
	font-weight: 500;
	padding: 6px 14px;
	border-radius: 50px;
}


/* ═══════════════════════════════════
   2. SCHEDULE SECTION
   ═══════════════════════════════════ */

.pvt-schedule-section {
	background: #ffffff;
	padding: 80px 0;
}

.pvt-schedule-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 48px;
}

.pvt-schedule-card {
	background: var(--pvt-sand);
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: var(--pvt-radius-md);
	padding: 28px 26px;
}

.pvt-schedule-card__title {
	font-family: var(--pvt-font-head);
	font-size: 17px;
	font-weight: 700;
	color: var(--pvt-ocean-dark);
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.pvt-schedule-times {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pvt-schedule-times li {
	background: #ffffff;
	border: 1px solid var(--pvt-sand-dark);
	color: var(--pvt-ink);
	font-family: var(--pvt-font-body);
	font-size: 13px;
	font-weight: 600;
	padding: 7px 16px;
	border-radius: 50px;
}

.pvt-schedule-note {
	font-family: var(--pvt-font-body);
	font-size: 13px;
	color: var(--pvt-muted);
	line-height: 1.6;
	margin: 0;
}


/* ═══════════════════════════════════
   3. REVIEWS SECTION
   ═══════════════════════════════════ */

.pvt-reviews-section {
	background: var(--pvt-sand);
	padding: 80px 0;
}

.pvt-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.pvt-review {
	background: #ffffff;
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: var(--pvt-radius-md);
	padding: 26px 24px;
	margin: 0;
	display: flex;
	flex-direction: column;
}

.pvt-review__stars {
	color: #F4A105;
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 14px;
}

.pvt-review__text {
	font-family: var(--pvt-font-body);
	font-size: 15px;
	font-style: italic;
	color: var(--pvt-ink-soft);
	line-height: 1.65;
	margin: 0 0 18px;
	flex: 1;
}

.pvt-review__footer {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: 16px;
	border-top: 1px solid var(--pvt-sand-dark);
}

.pvt-review__author {
	font-family: var(--pvt-font-body);
	font-size: 14px;
	font-weight: 600;
	font-style: normal;
	color: var(--pvt-ink);
}

.pvt-review__origin {
	font-family: var(--pvt-font-body);
	font-size: 12px;
	color: var(--pvt-muted);
}

.pvt-google-review-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	margin: 36px auto 0;
	background: #ffffff;
	border: 1.5px solid var(--pvt-sand-dark);
	color: var(--pvt-ink);
	font-family: var(--pvt-font-body);
	font-size: 14px;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
}

.pvt-google-review-btn:hover {
	background: var(--pvt-sand-dark);
	border-color: var(--pvt-ocean);
	color: var(--pvt-ink);
}


/* ═══════════════════════════════════
   4. FAQ SECTION
   ═══════════════════════════════════ */

.pvt-faq-section {
	background: #ffffff;
	padding: 80px 0;
}

.container--narrow {
	max-width: 780px;
}

.pvt-faq-list {
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pvt-faq-item {
	background: var(--pvt-sand);
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: var(--pvt-radius-md);
	overflow: hidden;
}

.pvt-faq-q {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	font-family: var(--pvt-font-head);
	font-weight: 600;
	font-size: 16px;
	color: var(--pvt-ink);
	line-height: 1.4;
}

.pvt-faq-q:focus-visible {
	outline: 2px solid var(--pvt-ocean);
	outline-offset: -2px;
}

.pvt-faq-arrow {
	font-size: 20px;
	color: var(--pvt-ocean);
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.pvt-faq-item[data-open="true"] .pvt-faq-arrow {
	transform: rotate(180deg);
}

.pvt-faq-a {
	font-family: var(--pvt-font-body);
	font-size: 15px;
	color: var(--pvt-ink-soft);
	line-height: 1.7;
	overflow: hidden;
	max-height: 0;
	padding: 0 24px;
	transition: max-height 0.35s ease, padding 0.3s ease;
}

.pvt-faq-item[data-open="true"] .pvt-faq-a {
	max-height: 400px;
	padding-bottom: 20px;
}

.pvt-faq-a[hidden] {
	display: block !important;
	max-height: 0;
	padding-bottom: 0;
}

.pvt-faq-a p {
	margin: 0;
}


/* ═══════════════════════════════════
   5. CTA BANNER
   ═══════════════════════════════════ */

.pvt-cta-section {
	background: var(--pvt-coral);
	padding: 80px 0;
}

.pvt-cta-inner {
	text-align: center;
}

.pvt-cta-title {
	font-family: var(--pvt-font-head);
	font-size: clamp(28px, 5vw, 48px);
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 14px;
	line-height: 1.15;
}

.pvt-cta-sub {
	font-family: var(--pvt-font-body);
	font-size: 17px;
	color: rgba(255,255,255,0.9);
	max-width: 580px;
	margin: 0 auto 36px;
	line-height: 1.6;
}


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width: 900px) {

	.pvt-route-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.pvt-reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {

	.pvt-route-section,
	.pvt-schedule-section,
	.pvt-reviews-section,
	.pvt-faq-section,
	.pvt-cta-section {
		padding: 56px 0;
	}

	.pvt-schedule-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.pvt-reviews-grid {
		grid-template-columns: 1fr;
	}

	.pvt-route-fact {
		flex-direction: column;
		gap: 4px;
	}

	.pvt-route-fact dd {
		text-align: left;
	}

	.pvt-faq-q {
		font-size: 15px;
		padding: 18px 18px;
	}

	.pvt-faq-a {
		padding: 0 18px;
	}

	.pvt-faq-item[data-open="true"] .pvt-faq-a {
		padding-bottom: 18px;
	}
}

@media (max-width: 480px) {

	.pvt-route-facts,
	.pvt-route-note {
		padding: 22px 18px;
	}

	.pvt-schedule-card {
		padding: 22px 18px;
	}

	.pvt-review {
		padding: 22px 18px;
	}

	.pvt-cta-sub {
		font-size: 15px;
	}
}



.pvt-breadcrumb {
	background: var(--pvt-sand);
	border-bottom: 1px solid var(--pvt-sand-dark);
	padding: 14px 0;
	margin-top: var(--pvt-header-h);
}

.pvt-breadcrumb .container {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--pvt-font-body);
	font-size: 13px;
	color: var(--pvt-muted);
}

.pvt-breadcrumb a {
	color: var(--pvt-ocean);
	text-decoration: none;
	transition: color 0.2s;
}

.pvt-breadcrumb a:hover {
	color: var(--pvt-coral);
}

.pvt-breadcrumb span[aria-current] {
	color: var(--pvt-ink);
	font-weight: 600;
}


/* ═══════════════════════════════════
   ROUTE HERO
   ═══════════════════════════════════ */

.pvt-route-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: flex-end;
	padding: 60px 0 64px;
	overflow: hidden;
	isolation: isolate;
}

.pvt-route-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: var(--pvt-ocean-dark); /* fallback if image missing */
}

.pvt-route-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		180deg,
		rgba(7,45,62,0.55) 0%,
		rgba(7,45,62,0.75) 60%,
		rgba(7,45,62,0.92) 100%
	);
}

.pvt-route-hero__dots {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
	background-size: 32px 32px;
	pointer-events: none;
}

.pvt-route-hero__inner {
	position: relative;
	z-index: 1;
}

.pvt-route-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	color: rgba(255,255,255,0.92);
	font-family: var(--pvt-font-body);
	font-size: 13px;
	font-weight: 500;
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 20px;
}

.pvt-route-hero__eyebrow-dot {
	width: 6px;
	height: 6px;
	background: #5EE7AA;
	border-radius: 50%;
	flex-shrink: 0;
}

.pvt-route-hero__h1 {
	font-family: var(--pvt-font-head);
	font-size: clamp(28px, 4.5vw, 48px);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.12;
	max-width: 720px;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.pvt-route-hero__intro {
	font-family: var(--pvt-font-body);
	font-size: 16px;
	color: rgba(255,255,255,0.78);
	max-width: 540px;
	line-height: 1.65;
	margin-bottom: 28px;
}

.pvt-route-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 40px;
}

.pvt-route-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.pvt-route-hero__stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	padding: 12px 18px;
	border-radius: var(--pvt-radius-md);
}

.pvt-route-hero__stat strong {
	font-family: var(--pvt-font-head);
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
}

.pvt-route-hero__stat span {
	font-family: var(--pvt-font-body);
	font-size: 12px;
	color: rgba(255,255,255,0.6);
}


/* ═══════════════════════════════════
   PRICING SECTION (route page version)
   ═══════════════════════════════════ */

.pvt-route-pricing {
	background: var(--pvt-sand);
	padding: 72px 0;
}

.pvt-cards-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 44px;
}


/* ═══════════════════════════════════
   WHAT'S INCLUDED (extends route-side)
   ═══════════════════════════════════ */

.pvt-route-included {
	background: #ffffff;
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: var(--pvt-radius-md);
	padding: 22px 22px;
}

.pvt-route-included__title {
	font-family: var(--pvt-font-head);
	font-size: 15px;
	font-weight: 700;
	color: var(--pvt-ink);
	margin-bottom: 14px;
}

.pvt-route-included__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pvt-route-included__list li {
	font-family: var(--pvt-font-body);
	font-size: 14px;
	color: var(--pvt-ink-soft);
	line-height: 1.5;
	padding-left: 24px;
	position: relative;
}

.pvt-route-included__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: #1D9E75;
	font-weight: 700;
}


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width: 900px) {

	.pvt-cards-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.cards--featured {
		order: -1;
	}
}

@media (max-width: 768px) {

	.pvt-route-hero {
		min-height: 70vh;
		padding: 48px 0 48px;
		align-items: flex-end;
	}

	.pvt-route-pricing {
		padding: 48px 0;
	}

	.pvt-route-hero__stats {
		gap: 8px;
	}

	.pvt-route-hero__stat {
		padding: 10px 14px;
	}

	.pvt-route-hero__stat strong {
		font-size: 17px;
	}

	.pvt-route-hero__actions a {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
}

@media (max-width: 480px) {

	.pvt-route-hero__h1 {
		font-size: 26px;
	}

	.pvt-route-hero__stats {
		flex-direction: column;
	}

	.pvt-route-hero__stat {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}


/* ═══════════════════════════════════
   BOOKING SECTION — Form + WhatsApp
   (id="pvt-booking-form")
   ═══════════════════════════════════ */

.pvt-booking-section {
	background: var(--pvt-sand);
	padding: 72px 0;
}

.pvt-booking-wrap {
	max-width: 1100px;
}

.pvt-booking-header {
	text-align: center;
	margin-bottom: 48px;
}

.pvt-booking-header .pvt-eyebrow-label {
	display: block;
}

.pvt-booking-header .pvt-section-title {
	margin-bottom: 10px;
}

.pvt-booking-header .pvt-section-sub {
	max-width: 500px;
}


/* ── TWO COLUMN LAYOUT ── */
.pvt-booking-columns {
	display: grid;
	grid-template-columns: 1fr auto 380px;
	gap: 0;
	align-items: start;
	background: #ffffff;
	border-radius: var(--pvt-radius-lg);
	border: 1.5px solid var(--pvt-sand-dark);
	overflow: hidden;
}


/* ── SHARED LABEL / BADGE ── */
.pvt-form-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--pvt-font-head);
	font-size: 15px;
	font-weight: 700;
	color: var(--pvt-ink);
	margin-bottom: 24px;
}

.pvt-form-badge {
	background: #E6F1FB;
	color: #185FA5;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 50px;
	letter-spacing: 0.04em;
}

.pvt-form-badge--green {
	background: #EAF3DE;
	color: #3B6D11;
}


/* ── FORM COLUMN ── */
.pvt-form-col {
	padding: 40px 36px;
}


/* ── OR DIVIDER ── */
.pvt-or-divider {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
	min-height: 100%;
	position: relative;
}

.pvt-or-divider::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: var(--pvt-sand-dark);
}

.pvt-or-divider span {
	background: #ffffff;
	border: 1.5px solid var(--pvt-sand-dark);
	color: var(--pvt-muted);
	font-size: 12px;
	font-weight: 700;
	padding: 8px 12px;
	border-radius: 50%;
	position: relative;
	z-index: 1;
	letter-spacing: 0.06em;
}


/* ── WHATSAPP COLUMN ── */
.pvt-wa-col {
	background: var(--pvt-ocean-dark);
	padding: 40px 32px;
}

.pvt-wa-col .pvt-form-label {
	color: #ffffff;
}

.pvt-wa-card {
	display: flex;
	flex-direction: column;
}

.pvt-wa-icon {
	font-size: 40px;
	margin-bottom: 16px;
	line-height: 1;
}

.pvt-wa-title {
	font-family: var(--pvt-font-head);
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
}

.pvt-wa-desc {
	font-family: var(--pvt-font-body);
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	line-height: 1.65;
	margin-bottom: 20px;
}

.pvt-wa-perks {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pvt-wa-perks li {
	font-family: var(--pvt-font-body);
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	line-height: 1.5;
}

.pvt-wa-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #25D366;
	color: #ffffff;
	font-family: var(--pvt-font-head);
	font-size: 16px;
	font-weight: 700;
	padding: 15px 24px;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
	margin-bottom: 16px;
}

.pvt-wa-btn:hover {
	background: #1ebe5a;
	transform: translateY(-1px);
	color: #ffffff;
}

.pvt-wa-hours {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--pvt-font-body);
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	justify-content: center;
	margin-bottom: 24px;
}

.pvt-wa-hours-dot {
	width: 8px;
	height: 8px;
	background: #25D366;
	border-radius: 50%;
	flex-shrink: 0;
}

.pvt-wa-divider {
	border: none;
	border-top: 1px solid rgba(255,255,255,0.12);
	margin-bottom: 20px;
}

.pvt-wa-call-label {
	font-family: var(--pvt-font-body);
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	text-align: center;
	margin-bottom: 10px;
}

.pvt-wa-call-btn {
	display: block;
	text-align: center;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.2);
	color: #ffffff;
	font-family: var(--pvt-font-body);
	font-size: 15px;
	font-weight: 600;
	padding: 12px 20px;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.2s;
}

.pvt-wa-call-btn:hover {
	background: rgba(255,255,255,0.15);
	color: #ffffff;
}


/* ═══════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════ */

.pvt-field-group {
	margin-bottom: 18px;
}

.pvt-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.pvt-label {
	display: block;
	font-family: var(--pvt-font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--pvt-ink-soft);
	margin-bottom: 6px;
}

.pvt-optional {
	font-weight: 400;
	color: var(--pvt-muted);
	font-size: 12px;
}

.pvt-input {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: 8px;
	font-family: var(--pvt-font-body);
	font-size: 14px;
	color: var(--pvt-ink);
	background: #ffffff;
	transition: border-color 0.2s;
	appearance: none;
	-webkit-appearance: none;
}

.pvt-input:focus {
	outline: none;
	border-color: var(--pvt-ocean);
}

.pvt-textarea {
	resize: vertical;
	min-height: 80px;
}

.pvt-radio-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pvt-radio-group--row {
	flex-direction: row;
	gap: 16px;
}

.pvt-radio {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--pvt-font-body);
	font-size: 14px;
	color: var(--pvt-ink-soft);
	cursor: pointer;
}

.pvt-radio input[type="radio"] {
	width: 16px;
	height: 16px;
	accent-color: var(--pvt-ocean);
	flex-shrink: 0;
}

.pvt-submit-btn {
	width: 100%;
	background: var(--pvt-ocean);
	color: #ffffff;
	font-family: var(--pvt-font-head);
	font-size: 16px;
	font-weight: 700;
	padding: 14px 24px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	margin-top: 4px;
}

.pvt-submit-btn:hover {
	background: var(--pvt-ocean-dark);
	transform: translateY(-1px);
}

.pvt-form-note {
	text-align: center;
	font-family: var(--pvt-font-body);
	font-size: 13px;
	color: var(--pvt-muted);
	margin-top: 12px;
}


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width: 900px) {

	.pvt-booking-columns {
		grid-template-columns: 1fr;
	}

	.pvt-or-divider {
		flex-direction: row;
		padding: 0 24px 24px;
		min-height: auto;
	}

	.pvt-or-divider::before {
		top: 50%;
		bottom: auto;
		left: 0;
		right: 0;
		width: 100%;
		height: 1px;
	}

	.pvt-wa-col {
		border-radius: 0;
	}

	.pvt-field-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {

	.pvt-form-col {
		padding: 28px 20px;
	}

	.pvt-wa-col {
		padding: 28px 20px;
	}

	.pvt-radio-group--row {
		flex-direction: column;
	}
}


/*
 * pages.css
 * Palawan Transfers — Contact, About, FAQ, Blog pages
 *
 * Depends on theme.css for: variables, .container, .pvt-breadcrumb,
 * .pvt-eyebrow-label, .pvt-section-title, .pvt-section-sub,
 * .pvt-why-grid/.pvt-why-card, .pvt-cta-section, .pvt-faq-list,
 * .pvt-route-tag, form field classes (.pvt-input, .pvt-field-group
 * etc), .pvt-btn variants.
 *
 * This file adds page-specific layout only.
 */


/* ═══════════════════════════════════
   SHARED — GENERIC PAGE HERO
   (used by Contact, About, FAQ, Blog)
   ═══════════════════════════════════ */

.pvt-page-hero {
	position: relative;
	background: var(--pvt-ocean-dark);
	padding: 64px 0 56px;
	margin-top: var(--pvt-header-h);
	overflow: hidden;
}

.pvt-page-hero__dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
	background-size: 32px 32px;
	pointer-events: none;
}

.pvt-page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.pvt-page-hero__h1 {
	font-family: var(--pvt-font-head);
	font-size: clamp(28px, 4.5vw, 44px);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.15;
	margin-bottom: 14px;
}

.pvt-page-hero__sub {
	font-family: var(--pvt-font-body);
	font-size: 16px;
	color: rgba(255,255,255,0.75);
	line-height: 1.65;
	max-width: 600px;
}

/* Fix breadcrumb margin since page hero now handles top spacing */
.pvt-contact-page .pvt-breadcrumb,
.pvt-about-page .pvt-breadcrumb,
.pvt-faq-page .pvt-breadcrumb,
.pvt-blog-page .pvt-breadcrumb,
.pvt-single-post .pvt-breadcrumb {
	margin-top: var(--pvt-header-h);
}

.pvt-contact-page .pvt-page-hero,
.pvt-about-page .pvt-page-hero,
.pvt-faq-page .pvt-page-hero,
.pvt-blog-page .pvt-page-hero {
	margin-top: 0;
}


/* ═══════════════════════════════════
   1. CONTACT PAGE
   ═══════════════════════════════════ */

.pvt-contact-section {
	background: var(--pvt-sand);
	padding: 64px 0;
}

.pvt-contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 32px;
	align-items: start;
}

/* Contact method cards */
.pvt-contact-methods {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pvt-contact-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: #ffffff;
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: var(--pvt-radius-md);
	padding: 20px 22px;
	text-decoration: none;
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.pvt-contact-card:not(.pvt-contact-card--static):hover {
	border-color: var(--pvt-ocean);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(11,79,108,0.1);
}

.pvt-contact-card--whatsapp {
	border-color: #25D366;
	background: #F3FBF6;
}

.pvt-contact-card--whatsapp:hover {
	border-color: #1ebe5a;
}

.pvt-contact-card--static {
	cursor: default;
}

.pvt-contact-card__icon {
	font-size: 26px;
	flex-shrink: 0;
	line-height: 1;
}

.pvt-contact-card__body h3 {
	font-family: var(--pvt-font-head);
	font-size: 15px;
	font-weight: 700;
	color: var(--pvt-ink);
	margin-bottom: 3px;
}

.pvt-contact-card__body p {
	font-family: var(--pvt-font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--pvt-ocean-dark);
	margin-bottom: 4px;
}

.pvt-contact-card__note {
	display: block;
	font-family: var(--pvt-font-body);
	font-size: 12px;
	color: var(--pvt-muted);
	line-height: 1.5;
}

/* Hours box */
.pvt-contact-hours {
	background: var(--pvt-ocean-dark);
	border-radius: var(--pvt-radius-md);
	padding: 22px 24px;
	margin-top: 4px;
}

.pvt-contact-hours__title {
	font-family: var(--pvt-font-head);
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.pvt-contact-hours__row {
	display: flex;
	justify-content: space-between;
	font-family: var(--pvt-font-body);
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}

.pvt-contact-hours__note {
	font-family: var(--pvt-font-body);
	font-size: 12px;
	color: rgba(255,255,255,0.55);
	line-height: 1.6;
	margin: 0;
}

/* Contact form column */
.pvt-contact-form-col {
	background: #ffffff;
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: var(--pvt-radius-lg);
	padding: 36px 32px;
}

/* Map */
.pvt-map-section {
	line-height: 0;
}

.pvt-map-section iframe {
	display: block;
	filter: grayscale(15%);
}


/* ═══════════════════════════════════
   2. ABOUT PAGE
   ═══════════════════════════════════ */

.pvt-about-story {
	background: #ffffff;
	padding: 72px 0;
}

.pvt-about-story__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	align-items: start;
}

.pvt-about-story__text p {
	font-family: var(--pvt-font-body);
	font-size: 16px;
	color: var(--pvt-ink-soft);
	line-height: 1.75;
	margin-bottom: 18px;
}

.pvt-about-story__text p:last-child {
	margin-bottom: 0;
}

/* Stats grid */
.pvt-about-story__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.pvt-about-stat {
	background: var(--pvt-sand);
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: var(--pvt-radius-md);
	padding: 22px 18px;
	text-align: center;
}

.pvt-about-stat strong {
	display: block;
	font-family: var(--pvt-font-head);
	font-size: 28px;
	font-weight: 700;
	color: var(--pvt-ocean);
	line-height: 1.1;
	margin-bottom: 4px;
}

.pvt-about-stat span {
	font-family: var(--pvt-font-body);
	font-size: 12px;
	color: var(--pvt-muted);
}

/* Team section */
.pvt-about-team {
	background: var(--pvt-sand);
	padding: 72px 0;
}

.pvt-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.pvt-team-card {
	background: #ffffff;
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: var(--pvt-radius-md);
	padding: 32px 24px;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
}

.pvt-team-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(11,79,108,0.1);
}

.pvt-team-card__avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--pvt-sand);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin: 0 auto 16px;
}

.pvt-team-card__name {
	font-family: var(--pvt-font-head);
	font-size: 16px;
	font-weight: 700;
	color: var(--pvt-ink);
	margin-bottom: 4px;
}

.pvt-team-card__role {
	font-family: var(--pvt-font-body);
	font-size: 13px;
	color: var(--pvt-muted);
}


/* ═══════════════════════════════════
   3. FAQ PAGE
   ═══════════════════════════════════ */

.pvt-faq-group {
	margin-bottom: 44px;
}

.pvt-faq-group:last-child {
	margin-bottom: 0;
}

.pvt-faq-group__title {
	font-family: var(--pvt-font-head);
	font-size: 18px;
	font-weight: 700;
	color: var(--pvt-ocean-dark);
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--pvt-sand-dark);
}

/* "Still have questions" CTA */
.pvt-faq-cta {
	background: var(--pvt-sand);
	padding: 56px 0 72px;
}

.pvt-faq-cta__inner {
	max-width: 560px;
	text-align: center;
}

.pvt-faq-cta__icon {
	font-size: 40px;
	margin-bottom: 16px;
}

.pvt-faq-cta__title {
	font-family: var(--pvt-font-head);
	font-size: 24px;
	font-weight: 700;
	color: var(--pvt-ink);
	margin-bottom: 10px;
}

.pvt-faq-cta__sub {
	font-family: var(--pvt-font-body);
	font-size: 15px;
	color: var(--pvt-muted);
	line-height: 1.6;
	margin-bottom: 28px;
}

.pvt-faq-cta__actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.pvt-btn--ghost-light {
	display: inline-block;
	background: transparent;
	color: var(--pvt-ocean-dark);
	border: 1.5px solid var(--pvt-ocean-dark);
	font-family: var(--pvt-font-body);
	font-size: 15px;
	font-weight: 700;
	padding: 13px 30px;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.pvt-btn--ghost-light:hover {
	background: var(--pvt-ocean-dark);
	color: #ffffff;
}


/* ═══════════════════════════════════
   4. BLOG LANDING PAGE
   ═══════════════════════════════════ */

.pvt-blog-featured {
	background: #ffffff;
	padding: 56px 0 0;
}

.pvt-featured-card {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
	background: var(--pvt-sand);
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: var(--pvt-radius-lg);
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow 0.25s;
}

.pvt-featured-card:hover {
	box-shadow: 0 16px 48px rgba(11,79,108,0.14);
}

.pvt-featured-card__media {
	background: var(--pvt-ocean);
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.pvt-featured-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pvt-featured-card__placeholder {
	font-size: 56px;
}

.pvt-featured-card__body {
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pvt-blog-tag {
	display: inline-block;
	width: fit-content;
	background: var(--pvt-coral);
	color: #ffffff;
	font-family: var(--pvt-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 50px;
	margin-bottom: 16px;
}

.pvt-featured-card__title {
	font-family: var(--pvt-font-head);
	font-size: 26px;
	font-weight: 700;
	color: var(--pvt-ink);
	line-height: 1.25;
	margin-bottom: 14px;
}

.pvt-featured-card__excerpt {
	font-family: var(--pvt-font-body);
	font-size: 15px;
	color: var(--pvt-ink-soft);
	line-height: 1.65;
	margin-bottom: 18px;
}

.pvt-featured-card__readmore {
	font-family: var(--pvt-font-body);
	font-size: 14px;
	font-weight: 700;
	color: var(--pvt-ocean);
}


/* Blog grid */
.pvt-blog-grid-section {
	background: #ffffff;
	padding: 56px 0 72px;
}

.pvt-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}

.pvt-blog-card {
	display: flex;
	flex-direction: column;
	background: var(--pvt-sand);
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: var(--pvt-radius-md);
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.pvt-blog-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(11,79,108,0.12);
}

.pvt-blog-card__media {
	background: var(--pvt-ocean-mid);
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.pvt-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pvt-blog-card__placeholder {
	font-size: 36px;
}

.pvt-blog-card__body {
	padding: 20px 20px 22px;
}

.pvt-blog-card__date {
	font-family: var(--pvt-font-body);
	font-size: 12px;
	color: var(--pvt-muted);
	display: block;
	margin-bottom: 8px;
}

.pvt-blog-card__title {
	font-family: var(--pvt-font-head);
	font-size: 17px;
	font-weight: 700;
	color: var(--pvt-ink);
	line-height: 1.3;
	margin-bottom: 8px;
}

.pvt-blog-card__excerpt {
	font-family: var(--pvt-font-body);
	font-size: 13px;
	color: var(--pvt-ink-soft);
	line-height: 1.6;
}

/* Pagination */
.pvt-blog-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
}

.pvt-blog-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	background: #ffffff;
	border: 1.5px solid var(--pvt-sand-dark);
	border-radius: 50px;
	font-family: var(--pvt-font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--pvt-ink);
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.pvt-blog-pagination .page-numbers.current {
	background: var(--pvt-ocean);
	border-color: var(--pvt-ocean);
	color: #ffffff;
}

.pvt-blog-pagination .page-numbers:hover:not(.current) {
	background: var(--pvt-sand);
}

.pvt-blog-empty {
	text-align: center;
	padding: 60px 0;
	font-family: var(--pvt-font-body);
	color: var(--pvt-muted);
}


/* ═══════════════════════════════════
   5. SINGLE BLOG POST
   ═══════════════════════════════════ */

.pvt-post-header {
	background: var(--pvt-sand);
	padding: 48px 0 40px;
	margin-top: var(--pvt-header-h);
}

.pvt-post-header__title {
	font-family: var(--pvt-font-head);
	font-size: clamp(26px, 4vw, 38px);
	font-weight: 700;
	color: var(--pvt-ink);
	line-height: 1.2;
	margin: 10px 0 16px;
}

.pvt-post-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--pvt-font-body);
	font-size: 13px;
	color: var(--pvt-muted);
}

/* Featured image */
.pvt-post-featured-img {
	margin-top: -1px;
}

.pvt-post-featured-img img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
	border-radius: 0 0 var(--pvt-radius-lg) var(--pvt-radius-lg);
}

/* Post content / prose */
.pvt-post-content {
	background: #ffffff;
	padding: 56px 0 0;
}

.pvt-post-prose {
	font-family: var(--pvt-font-body);
	font-size: 17px;
	color: var(--pvt-ink-soft);
	line-height: 1.8;
}

.pvt-post-prose p {
	margin-bottom: 22px;
}

.pvt-post-prose h2 {
	font-family: var(--pvt-font-head);
	font-size: 24px;
	font-weight: 700;
	color: var(--pvt-ink);
	margin: 40px 0 16px;
	line-height: 1.3;
}

.pvt-post-prose h3 {
	font-family: var(--pvt-font-head);
	font-size: 19px;
	font-weight: 700;
	color: var(--pvt-ink);
	margin: 32px 0 14px;
}

.pvt-post-prose ul,
.pvt-post-prose ol {
	margin: 0 0 22px;
	padding-left: 22px;
}

.pvt-post-prose li {
	margin-bottom: 8px;
}

.pvt-post-prose img {
	border-radius: var(--pvt-radius-md);
	margin: 24px 0;
}

.pvt-post-prose a {
	color: var(--pvt-ocean);
	text-decoration: underline;
}

.pvt-post-prose blockquote {
	border-left: 4px solid var(--pvt-coral);
	background: var(--pvt-sand);
	padding: 18px 22px;
	margin: 28px 0;
	border-radius: 0 var(--pvt-radius-sm) var(--pvt-radius-sm) 0;
	font-style: italic;
}

/* Tags */
.pvt-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid var(--pvt-sand-dark);
}

/* Inline CTA box */
.pvt-post-inline-cta {
	background: #ffffff;
	padding: 48px 0 56px;
}

.pvt-post-inline-cta__box {
	display: flex;
	align-items: center;
	gap: 24px;
	background: var(--pvt-ocean-dark);
	border-radius: var(--pvt-radius-lg);
	padding: 32px 36px;
}

.pvt-post-inline-cta__icon {
	font-size: 40px;
	flex-shrink: 0;
}

.pvt-post-inline-cta__body {
	flex: 1;
}

.pvt-post-inline-cta__body h3 {
	font-family: var(--pvt-font-head);
	font-size: 19px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 6px;
}

.pvt-post-inline-cta__body p {
	font-family: var(--pvt-font-body);
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	margin: 0;
}

/* Related posts */
.pvt-related-posts {
	background: var(--pvt-sand);
	padding: 56px 0 72px;
}


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width: 900px) {

	.pvt-contact-grid {
		grid-template-columns: 1fr;
	}

	.pvt-about-story__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pvt-featured-card {
		grid-template-columns: 1fr;
	}

	.pvt-featured-card__media {
		min-height: 220px;
	}

	.pvt-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pvt-team-grid {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin-inline: auto;
	}
}

@media (max-width: 768px) {

	.pvt-page-hero {
		padding: 48px 0 40px;
	}

	.pvt-contact-section,
	.pvt-about-story,
	.pvt-about-team {
		padding: 48px 0;
	}

	.pvt-contact-form-col {
		padding: 28px 22px;
	}

	.pvt-about-story__stats {
		grid-template-columns: 1fr 1fr;
	}

	.pvt-blog-grid {
		grid-template-columns: 1fr;
	}

	.pvt-post-inline-cta__box {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.pvt-post-prose {
		font-size: 16px;
	}
}

@media (max-width: 480px) {

	.pvt-contact-card {
		padding: 16px 18px;
	}

	.pvt-faq-cta__actions {
		flex-direction: column;
	}

	.pvt-faq-cta__actions a {
		width: 100%;
		text-align: center;
	}
}