/**
 * Sacred Journey - Editorial Pilgrimage Design
 *
 * A refined, editorial magazine aesthetic with:
 * - Elegant serif typography (Cormorant Garamond)
 * - Sacred blue and gold color palette
 * - Asymmetric magazine layouts
 * - Smooth scroll animations
 * - Contemplative, spiritual atmosphere
 */

/* ============================================================================
   Typography & Fonts
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Figtree:wght@300;400;500;600;700&display=swap');

:root {
	/* Sacred Color Palette */
	--sacred-blue-deep: #1a365d;
	--sacred-blue: #2f4089;
	--sacred-blue-light: #4b96da;
	--sacred-gold: #D4AF37;
	--sacred-gold-light: #E5C158;
	--sacred-cream: #FBF9F6;
	--sacred-ivory: #F5F3EF;
	--sacred-charcoal: #2d3748;
	--sacred-text: #1f2937;
	--sacred-text-light: #6b7280;

	/* Typography */
	--font-serif: 'Cormorant Garamond', Georgia, serif;
	--font-sans: 'Figtree', -apple-system, sans-serif;

	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2.5rem;
	--spacing-xl: 4rem;
	--spacing-2xl: 6rem;

	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.06);
	--shadow-md: 0 4px 16px rgba(26, 54, 93, 0.1);
	--shadow-lg: 0 8px 32px rgba(26, 54, 93, 0.15);
	--shadow-xl: 0 20px 60px rgba(26, 54, 93, 0.2);
}

/* ============================================================================
   Base Styles
   ========================================================================= */

.pilgrimage-editorial {
	background: var(--sacred-cream);
	color: var(--sacred-text);
	font-family: var(--font-sans);
	line-height: 1.7;
	overflow-x: hidden;
}

.pilgrimage-editorial h1,
.pilgrimage-editorial h2,
.pilgrimage-editorial h3 {
	font-family: var(--font-serif);
	font-weight: 600;
	color: var(--sacred-blue-deep);
	line-height: 1.2;
}

/* ============================================================================
   Immersive Hero Section
   ========================================================================= */

/* Ensure header sits above hero without pushing it down */
#trans_header {
	position: relative;
	z-index: var(--z-dropdown);
}

/* Header styling - ensure contrast on light hero */
body.single-pilgrimage .elementor-sticky,
body.single-pilgrimage [data-id="c8deb65"],
body.single-pilgrimage #trans_header {
	background: var(--color-primary, #2f4089) !important;
	transition: background-color 0.3s ease, background 0.3s ease !important;
}

/* Ensure the header wrapper itself is solid (Elementor location header) */
body.single-pilgrimage .elementor-location-header,
body.single-pilgrimage .elementor-location-header > .elementor-section,
body.single-pilgrimage .elementor-location-header > .e-con {
	background: var(--color-primary, #2f4089) !important;
}

/* Apply solid background when sticky effects are active (on scroll) */
body.single-pilgrimage .elementor-sticky.elementor-sticky--effects,
body.single-pilgrimage [data-id="c8deb65"].elementor-sticky--effects {
	background: var(--color-primary, #2f4089) !important; /* Solid brand color */
}

/* Header text/icon contrast */
body.single-pilgrimage header,
body.single-pilgrimage header a,
body.single-pilgrimage .elementor-nav-menu--main .elementor-item,
body.single-pilgrimage .elementor-nav-menu--main .elementor-item:before,
body.single-pilgrimage .elementor-nav-menu--main .elementor-item:after {
	color: #ffffff !important;
	fill: #ffffff !important;
}

body.single-pilgrimage .elementor-nav-menu--main .elementor-item:hover,
body.single-pilgrimage .elementor-nav-menu--main .elementor-item.elementor-item-active {
	color: #e4e9f7 !important;
}

.pilgrimage-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center top; /* Position from top to ensure coverage */
	background-attachment: fixed;
	isolation: isolate;
	overflow: hidden; /* Clip content but allow background to extend via negative margin */
	margin-top: -100px; /* Negative margin to push background under header */
	padding-top: 100px; /* Push content down so it doesn't overlap nav */
	padding-bottom: 6rem; /* Match standard hero component spacing */
	width: 100%;
	z-index: 1;
}

/* Ensure background-image extends properly */
.pilgrimage-hero[style*="background-image"] {
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

/* Video Background */
.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}

/* YouTube Video Background */
.hero-video-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: 56.25vw; /* 16:9 aspect ratio */
	min-height: 100vh;
	min-width: 177.77vh; /* 16:9 aspect ratio */
	z-index: 0;
	pointer-events: none;
}

.hero-video-youtube {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Hero overlay with sacred gradient */
.hero-veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(26, 54, 93, 0.85) 0%,
		rgba(47, 64, 137, 0.75) 50%,
		rgba(75, 150, 218, 0.65) 100%
	);
	z-index: 1;
}

.hero-veil::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
	mix-blend-mode: overlay;
}

.hero-content-wrapper {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

.hero-inner {
	text-align: center;
	color: #ffffff;
}

.hero-inner h1,
.hero-inner h2,
.hero-inner h3,
.hero-inner h4,
.hero-inner h5,
.hero-inner h6,
.hero-inner p {
	color: #ffffff;
}

/* Destination Badge */
.destination-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.5rem;
	background: rgba(255, 255, 255, 0.15);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em; /* 1px converted to em (1/16 ≈ 0.0625em) */
	text-transform: uppercase;
	margin-bottom: 2rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.badge-icon {
	flex-shrink: 0;
}

/* Hero Typography */
.hero-title {
	font-size: clamp(3rem, 7vw, 5.5rem);
	font-weight: 600;
	margin: 0 0 1.5rem;
	padding-top: 10rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.hero-route {
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 400;
	font-style: italic;
	margin: 0 0 2rem;
	opacity: 0.95;
	letter-spacing: 0.01em;
}

.hero-divider {
	margin: 2rem auto;
	opacity: 0.9;
}

.hero-excerpt {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto 3rem;
	opacity: 0.9;
	font-weight: 300;
}

/* Hero Meta Badges */
.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
	margin-bottom: 3rem;
}

.meta-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	font-size: 0.9375rem;
	font-weight: 500;
}

.meta-icon {
	flex-shrink: 0;
	opacity: 0.9;
}

/* Hero CTA */
.hero-actions {
	margin-top: 3rem;
}

.btn-sacred {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 2.5rem;
	background: var(--sacred-gold);
	color: var(--sacred-blue-deep);
	font-family: var(--font-sans);
	font-size: 1.125rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	border: 2px solid var(--sacred-gold);
	box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.btn-sacred::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
	transform: translateX(-100%);
	transition: transform 0.5s;
}

.btn-sacred:hover::before {
	transform: translateX(100%);
}

.btn-sacred:hover {
	background: var(--sacred-gold-light);
	border-color: var(--sacred-gold-light);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.btn-arrow {
	transition: transform 0.3s;
}

.btn-sacred:hover .btn-arrow {
	transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	z-index: 2;
}

.scroll-line {
	width: 2px;
	height: 40px;
	background: linear-gradient(to bottom, transparent, var(--sacred-gold));
	animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
	font-size: 0.75rem;
	letter-spacing: 0.09em; /* 1.5px converted to em (1.5/16 ≈ 0.09375em) */
	text-transform: uppercase;
	font-weight: 600;
}

@keyframes scrollPulse {
	0%, 100% { opacity: 0.4; transform: translateY(0); }
	50% { opacity: 1; transform: translateY(8px); }
}

/* ============================================================================
   Editorial Container & Layout
   ========================================================================= */

.editorial-container {
	position: relative;
	max-width: var(--container-xl);
	margin: 0 auto;
	padding: var(--spacing-2xl) 2rem;
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 3rem;
	align-items: start;
	overflow: visible;
}

/* Sticky Pricing Panel - within parent container */
.pricing-feature {
	position: sticky;
	top: 80px;
	width: 100%;
	z-index: var(--z-dropdown);
	height: fit-content;
	align-self: start;
	order: 2;
}

/* Editorial Content Area - position first */
.editorial-content {
	order: 1;
}

.pricing-inner {
	background: linear-gradient(135deg, var(--sacred-blue-deep) 0%, var(--sacred-blue) 100%);
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: var(--shadow-xl);
	color: #ffffff;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.pricing-inner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
	animation: priceGlow 6s ease-in-out infinite;
}

.pricing-inner h1,
.pricing-inner h2,
.pricing-inner h3,
.pricing-inner h4,
.pricing-inner h5,
.pricing-inner h6,
.pricing-inner p {
	color: #ffffff;
}

@keyframes priceGlow {
	0%, 100% { transform: translate(0, 0); opacity: 0.5; }
	50% { transform: translate(-20px, -20px); opacity: 0.8; }
}

.pricing-label {
	font-family: var(--font-serif);
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 1.5rem;
	letter-spacing: 0.06em; /* 1px converted to em */
	text-transform: uppercase;
	opacity: 0.9;
	position: relative;
	z-index: 1;
	color: #ffffff;
}

.price-option {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-radius: 12px;
	margin-bottom: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	position: relative;
	z-index: 1;
	color: #ffffff;
}

.price-option:last-of-type {
	margin-bottom: 0;
}

.price-option h4,
.price-option h5,
.price-option h6,
.price-option p,
.price-option span {
	color: #ffffff;
}

.price-value {
	font-family: var(--font-serif);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.5rem;
	color: var(--sacred-gold-light);
}

.price-detail {
	font-size: 0.875rem;
	opacity: 0.85;
	line-height: 1.5; /* Fixed from 1.4 to meet WCAG 1.4.12 minimum */
	color: #ffffff;
}

.price-notes {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	font-size: 0.8125rem;
	opacity: 0.8;
	line-height: 1.5;
	position: relative;
	z-index: 1;
	color: #ffffff;
}

/* Signup Modal Button */
.btn-signup-modal {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 1rem 1.5rem;
	background: var(--sacred-gold);
	color: var(--sacred-blue-deep);
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 12px;
	border: 2px solid var(--sacred-gold);
	box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 1;
	cursor: pointer;
	overflow: hidden;
}

.btn-signup-modal::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15));
	transform: translateX(-100%);
	transition: transform 0.4s;
}

.btn-signup-modal:hover::before {
	transform: translateX(100%);
}

.btn-signup-modal:hover {
	background: var(--sacred-gold-light);
	border-color: var(--sacred-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-signup-modal .btn-arrow {
	flex-shrink: 0;
	transition: transform 0.3s;
}

.btn-signup-modal:hover .btn-arrow {
	transform: translateX(2px);
}


/* ============================================================================
   Content Sections
   ========================================================================= */

.content-section {
	margin-bottom: var(--spacing-2xl);
}

.section-title {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 600;
	color: var(--sacred-blue-deep);
	text-align: center;
	margin: 0 0 var(--spacing-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	position: relative;
}

.title-line {
	flex: 1;
	height: 2px;
	background: linear-gradient(
		to right,
		transparent,
		var(--sacred-gold) 30%,
		var(--sacred-gold) 70%,
		transparent
	);
	max-width: 120px;
}

.section-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: var(--spacing-md);
}

.section-icon {
	color: var(--sacred-gold);
	flex-shrink: 0;
}

/* ============================================================================
   Introduction Section
   ========================================================================= */

.intro-section {
	padding: var(--spacing-xl) 0;
}

.intro-text,
.intro-section > *:not(.intro-text) {
	font-size: 1.1875rem;
	line-height: 1.8;
	color: var(--sacred-text);
}

.intro-text p:first-of-type::first-letter {
	font-family: var(--font-serif);
	font-size: 4.5rem;
	font-weight: 600;
	line-height: 1.2; /* Fixed from 0.9 to meet WCAG 1.4.12 - large heading can use 1.2 */
	float: left;
	margin: 0.1em 0.15em 0 0;
	color: var(--sacred-blue-deep);
}

/* ============================================================================
   Scheduled Dates Section
   ========================================================================= */

.dates-timeline {
	display: grid;
	gap: 1.25rem;
	margin-top: var(--spacing-lg);
}

.date-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.75rem 2rem;
	background: #ffffff;
	border: 2px solid var(--sacred-ivory);
	border-radius: 16px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.date-card:hover {
	border-color: var(--sacred-gold);
	transform: translateX(8px);
	box-shadow: var(--shadow-md);
}

.date-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.date-icon {
	color: var(--sacred-blue);
	flex-shrink: 0;
}

.date-info {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: var(--font-serif);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--sacred-blue-deep);
}

.date-separator {
	color: var(--sacred-gold);
	font-size: 1.5rem;
}

.date-status {
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	white-space: nowrap;
}

.date-status.status-open {
	background: linear-gradient(135deg, #d4edda, #c3e6cb);
	color: #155724;
}

.date-status.status-filling {
	background: linear-gradient(135deg, #fff3cd, #ffeaa7);
	color: #856404;
}

.date-status.status-waitlist,
.date-status.status-sold_out,
.date-status.status-sold-out {
	background: linear-gradient(135deg, #f8d7da, #f5c6cb);
	color: #721c24;
}

.date-status.status-completed {
	background: linear-gradient(135deg, #d6d8db, #c6c8ca);
	color: #383d41;
}

/* ============================================================================
   Historical Context Section
   ========================================================================= */

.historical-section {
	padding: var(--spacing-xl);
	background: #ffffff;
	border-radius: 20px;
	border: 3px solid var(--sacred-ivory);
	position: relative;
	overflow: hidden;
}

.historical-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(to bottom, var(--sacred-gold), var(--sacred-blue));
}

.historical-text {
	font-size: 1.0625rem;
	line-height: 1.9;
	color: var(--sacred-charcoal);
}

.historical-text p {
	margin-bottom: 1.5rem;
}

/* ============================================================================
   What's Included Section
   ========================================================================= */

.included-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1rem;
	margin-top: var(--spacing-lg);
}

.included-item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 1.25rem;
	background: #ffffff;
	border: 2px solid var(--sacred-ivory);
	border-radius: 12px;
	transition: all 0.3s;
}

.included-item:hover {
	border-color: var(--sacred-gold);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.check-icon {
	flex-shrink: 0;
	color: var(--sacred-gold);
	margin-top: 2px;
}

.included-item span {
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--sacred-text);
}

.not-included-note {
	margin-top: 2rem;
	padding: 1.75rem;
	background: linear-gradient(135deg, #fef3f1, #fef9f7);
	border-left: 4px solid #dc3545;
	border-radius: 8px;
}

.note-header {
	font-weight: 700;
	color: #dc3545;
	margin-bottom: 0.75rem;
	font-size: 1rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.not-included-note p {
	margin: 0;
	color: var(--sacred-text-light);
	line-height: 1.6;
}

/* ============================================================================
   Optional Add-ons Section
   ========================================================================= */

.addons-list {
	display: grid;
	gap: 1.5rem;
	margin-top: var(--spacing-lg);
}

.addon-item {
	background: #ffffff;
	border: 2px solid var(--sacred-ivory);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.addon-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(40%, -40%);
}

.addon-item:hover {
	border-color: var(--sacred-gold);
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.addon-title {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--sacred-blue-deep);
	margin: 0 0 0.75rem;
}

.addon-description {
	color: var(--sacred-text-light);
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.addon-meta {
	display: flex;
	align-items: center;
	gap: 2rem;
	font-size: 0.9375rem;
}

.addon-dates {
	color: var(--sacred-text-light);
}

.addon-price {
	font-family: var(--font-serif);
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--sacred-blue);
}

/* ============================================================================
   Photo Gallery Section
   ========================================================================= */

.editorial-gallery {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1rem;
	margin-top: var(--spacing-lg);
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	display: block;
	cursor: pointer;
}

.gallery-item::before {
	content: '';
	display: block;
	padding-bottom: 100%;
}

.gallery-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 54, 93, 0.8), rgba(212, 175, 55, 0.6));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.gallery-overlay svg {
	color: #ffffff;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

/* Magazine-style asymmetric grid */
.gallery-item-1 {
	grid-column: span 7;
	grid-row: span 2;
}

.gallery-item-2 {
	grid-column: span 5;
}

.gallery-item-3 {
	grid-column: span 5;
}

.gallery-item-4 {
	grid-column: span 5;
	grid-row: span 2;
}

.gallery-item-5 {
	grid-column: span 7;
}

/* ============================================================================
   Logistics Section
   ========================================================================= */

.logistics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: var(--spacing-lg);
}

.logistics-item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 2rem;
	background: #ffffff;
	border: 2px solid var(--sacred-ivory);
	border-radius: 16px;
	transition: all 0.3s;
}

.logistics-item:hover {
	border-color: var(--sacred-blue-light);
	box-shadow: var(--shadow-sm);
}

.logistics-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--sacred-blue-light), var(--sacred-blue));
	border-radius: 12px;
	color: #ffffff;
}

.logistics-label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--sacred-text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

.logistics-value {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--sacred-blue-deep);
}

/* ============================================================================
   Sacred CTA Section
   ========================================================================= */

.sacred-cta {
	background: linear-gradient(135deg, var(--sacred-blue-deep) 0%, var(--sacred-blue) 100%);
	padding: var(--spacing-2xl) 2rem;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.sacred-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
	z-index: -1;
}

.cta-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	color: #ffffff;
}

.cta-container h1,
.cta-container h2,
.cta-container h3,
.cta-container h4,
.cta-container h5,
.cta-container h6,
.cta-container p {
	color: #ffffff;
}

.cta-ornament {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	color: var(--sacred-gold);
	opacity: 0.7;
}

.cta-title {
	font-family: var(--font-serif);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 600;
	margin: 0 0 1.5rem;
	line-height: 1.2;
	color: #ffffff;
}

.cta-text {
	font-size: 1.25rem;
	line-height: 1.7;
	margin-bottom: 3rem;
	opacity: 0.95;
	font-weight: 300;
	color: #ffffff;
}

.cta-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.btn-sacred-large {
	padding: 1.5rem 3rem;
	background: var(--sacred-gold);
	color: var(--sacred-blue-deep);
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
}

.btn-sacred-large:hover {
	background: var(--sacred-gold-light);
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.btn-outline-sacred {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: transparent;
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	transition: all 0.3s;
}

.btn-outline-sacred:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--sacred-gold);
}

.btn-text-sacred {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
}

.btn-text-sacred:hover {
	color: var(--sacred-gold);
	gap: 0.75rem;
}

/* ============================================================================
   Responsive Design
   ========================================================================= */

@media (max-width: 1200px) {
	.editorial-container {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: var(--spacing-xl) 2rem;
	}

	.pricing-feature {
		position: static;
		max-height: none;
		overflow-y: visible;
		margin-bottom: 2rem;
	}
}

@media (max-width: 968px) {
	:root {
		--spacing-xl: 3rem;
		--spacing-2xl: 4rem;
	}

	.pilgrimage-hero {
		background-attachment: scroll;
		margin-top: -100px;
		padding-top: 100px;
	}

	.hero-content-wrapper {
		padding: 0 1.5rem;
	}

	.hero-title {
		font-size: clamp(2.5rem, 8vw, 4rem);
	}

	.hero-meta {
		gap: 1rem;
	}

	.editorial-gallery {
		grid-template-columns: repeat(6, 1fr);
	}

	.gallery-item-1,
	.gallery-item-2,
	.gallery-item-3,
	.gallery-item-4,
	.gallery-item-5 {
		grid-column: span 6;
		grid-row: span 1;
	}
}

@media (max-width: 640px) {
	.pilgrimage-hero {
		margin-top: -100px;
		padding-top: 100px;
		padding-bottom: 3rem;
		min-height: auto;
		height: auto;
	}

	.hero-video-wrapper {
		min-height: auto;
		height: 100%;
		position: absolute;
	}

	.hero-title {
		padding-top: 4rem;
		margin-bottom: 1rem;
	}

	.hero-route {
		margin-bottom: 1rem;
	}

	.hero-excerpt {
		margin-bottom: 1.5rem;
	}

	.hero-meta {
		margin-bottom: 1.5rem;
	}

	.hero-actions {
		margin-top: 1.5rem;
	}

	.hero-content-wrapper {
		padding: 0 1.25rem;
	}

	.destination-badge {
		font-size: 0.75rem;
		padding: 0.5rem 1rem;
	}

	.section-title {
		flex-direction: column;
		gap: 1rem;
	}

	.title-line {
		max-width: 60px;
	}

	.included-grid {
		grid-template-columns: 1fr;
	}

	.date-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		padding: 1.5rem;
	}

	.date-info {
		flex-wrap: wrap;
	}

	.logistics-grid {
		grid-template-columns: 1fr;
	}

	.addon-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.cta-actions {
		width: 100%;
	}

	.btn-sacred-large,
	.btn-outline-sacred {
		width: 100%;
		justify-content: center;
	}
}

/* ============================================================================
   Modal Styles
   ========================================================================= */

.pilgrimage-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
	pointer-events: none;
}

.pilgrimage-modal.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	cursor: pointer;
	pointer-events: auto;
	z-index: 1;
}

.modal-content {
	position: relative;
	z-index: 100000;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 700px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: auto;
	isolation: isolate;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.modal-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f3ef;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	color: var(--sacred-blue-deep);
	transition: all 0.2s;
	z-index: var(--z-modal);
	padding: 0;
	pointer-events: auto;
}

.modal-close:hover {
	background: var(--sacred-gold);
	color: #ffffff;
	transform: rotate(90deg);
}

.modal-inner {
	padding: 3rem 2rem;
	position: relative;
	z-index: 2;
	pointer-events: auto;
}

.modal-title {
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 600;
	color: var(--sacred-blue-deep);
	margin: 0 0 1rem;
	line-height: 1.2;
}

.modal-description {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--sacred-text-light);
	margin: 0 0 2rem;
}

/* Form Styles */
.signup-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	pointer-events: auto;
	position: relative;
	z-index: 2;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	pointer-events: auto;
	position: relative;
	z-index: 2;
}

.form-group label {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--sacred-blue-deep);
	pointer-events: auto;
}

.form-group input {
	padding: 0.875rem 1rem;
	border: 2px solid var(--sacred-ivory);
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.2s;
	pointer-events: auto;
	position: relative;
	z-index: 2;
}

.form-group input:focus {
	outline: none;
	border-color: var(--sacred-gold);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
	color: var(--sacred-text-light);
	opacity: 0.6;
}

.btn-submit-form {
	padding: 1rem 1.5rem;
	background: var(--sacred-gold);
	color: var(--sacred-blue-deep);
	font-size: 1rem;
	font-weight: 700;
	border: 2px solid var(--sacred-gold);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin-top: 0.5rem;
	pointer-events: auto;
	position: relative;
	z-index: 2;
}

.btn-submit-form:hover {
	background: var(--sacred-gold-light);
	border-color: var(--sacred-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}

.btn-submit-form:active {
	transform: translateY(0);
}

/* Zoho Form in Modal Styling */
.signup-form-container {
	margin-top: 1.5rem;
}

.signup-form-container iframe {
	border-radius: 8px;
	max-height: 70vh;
}

/* Make buttons work as modal triggers */
.btn-sacred,
.btn-sacred-large {
	cursor: pointer;
}

/* Modal responsive */
@media (max-width: 640px) {
	.modal-content {
		width: 95%;
		border-radius: 12px;
	}

	.modal-inner {
		padding: 2rem 1.5rem;
	}

	.modal-title {
		font-size: 1.5rem;
	}

	.modal-close {
		width: 36px;
		height: 36px;
		top: 1rem;
		right: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
