/*
   Estilos base para el tema personalizado Mundo Turístico.
   Comienza a escribir tu CSS aquí.
*/

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	/* Design System Colors */
	--primary: #009098;       /* Bright Teal/Turquoise */
	--primary-hover: #007379;
	--secondary: #004D40;     /* Deep Green-Teal */
	--secondary-hover: #00332b;
	--tertiary: #C57143;      /* Warm Terra-Cotta Brown/Orange */
	--tertiary-hover: #a35831;
	--neutral: #F8FAFA;       /* Soft Light Gray-Teal Background */
	
	--text-dark: #1f2937;
	--text-muted: #4b5563;
	--white: #ffffff;
	
	/* Design System Typography */
	--font-title: 'Montserrat', system-ui, -apple-system, sans-serif;
	--font-body: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
}

body {
	font-family: var(--font-body);
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--neutral);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-title);
	color: var(--secondary);
	font-weight: 700;
}


.container {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
}

/* Site Header Styling */
.site-header {
    background-color: var(--primary);
    border-bottom: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 1rem; /* original offset */
    left: 0;
    width: 100%;
    z-index: 10;
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.site-branding .site-title a {
	font-weight: 700;
	text-decoration: none;
	color: var(--primary);
	font-size: 1.6rem;
	letter-spacing: -0.025em;
}

.site-branding .custom-logo-link {
	display: block;
	line-height: 0;
}

.site-branding img.custom-logo {
	max-height: 48px;
	width: auto;
	display: block;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-branding img.custom-logo:hover {
	opacity: 0.9;
	transform: scale(1.02);
}

/* Main Navigation */
.main-navigation {
	display: flex;
	align-items: center;
}

.nav-menu-container ul {
	display: flex;
	gap: 2.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu-container a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
	font-size: 1.05rem;
	position: relative;
	padding: 0.5rem 0;
	transition: color 0.2s ease;
}

.nav-menu-container a:hover {
	color: var(--white);
}

/* Underline for Active/Current menu items */
.nav-menu-container .current-menu-item > a,
.nav-menu-container a.active {
	color: var(--white);
	font-weight: 600;
}

.nav-menu-container .current-menu-item > a::after,
.nav-menu-container a.active::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--white);
	border-radius: 9999px;
}

/* Header CTA Button */
.btn-header-cta {
	background-color: var(--white);
	color: var(--primary);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.65rem 1.8rem;
	border-radius: 9999px; /* Pill shape */
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
	display: inline-block;
	white-space: nowrap;
}

.btn-header-cta:hover {
	background-color: var(--neutral);
	color: var(--primary-hover);
	transform: translateY(-0.5px);
}

.show-on-mobile { display: none; }

@media (max-width: 768px) {
    .hide-on-mobile { display: none; }
    .show-on-mobile { display: inline; }
    
    .header-cta { gap: 0.75rem !important; }
    
    .btn-header-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .header-cta { gap: 0.5rem !important; }
    .btn-header-cta {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Design System Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-title);
	font-weight: 600;
	text-decoration: none;
	border-radius: 9999px; /* Pill curves by default */
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-primary {
	background-color: var(--primary);
	color: var(--white);
}

.btn-primary:hover {
	background-color: var(--primary-hover);
	color: var(--white);
}

.btn-secondary {
	background-color: var(--secondary);
	color: var(--white);
}

.btn-secondary:hover {
	background-color: var(--secondary-hover);
	color: var(--white);
}

.btn-inverted {
	background-color: #1f2937;
	color: var(--white);
}

.btn-inverted:hover {
	background-color: #111827;
	color: var(--white);
}

.btn-outlined {
	border: 1px solid #cbd5e1;
	background-color: var(--white);
	color: var(--text-dark);
}

.btn-outlined:hover {
	background-color: var(--neutral);
	border-color: #94a3b8;
}

/* Responsive Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 22px;
	height: 16px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.hamburger-line {
	width: 100%;
	height: 2px;
	background-color: var(--white);
	transition: all 0.2s ease;
}

/* General Layout Elements */
.site-main {
	padding: 3rem 0;
	flex-grow: 1;
}

body.home .site-main,
body:has(.hero-section) .site-main {
	padding-top: 0;
}

/* Site Footer Styling */
.site-footer {
	background-color: #001f20; /* Deep dark green-teal shade from the image */
	color: #e5e7eb;
	padding: 4.5rem 8% 3.5rem;
	margin-top: auto;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
	display: grid;
	grid-template-columns: 2.2fr 1fr 1fr;
	gap: 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

.footer-brand-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-brand-title {
	color: #64dfdf; /* Bright cyan/teal color matching the image design */
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	margin-bottom: 0.2rem;
}

.footer-brand-subtitle {
	color: #cbd5e1;
	font-size: 1rem;
	line-height: 1.6;
	max-width: 320px;
}

.footer-copyright {
	color: #94a3b8;
	font-size: 0.9rem;
	margin-top: 1rem;
}

.footer-column-title {
	color: #64dfdf; /* Matching bright cyan/teal for header sections */
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	margin-bottom: 1.25rem;
}

.footer-links-list {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links-list a {
	color: #cbd5e1;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	transition: color 0.15s ease;
}

.footer-links-list a:hover {
	color: #64dfdf;
}


/* Responsive Breakpoints */
@media (max-width: 768px) {
	.header-container {
		padding: 1rem 1rem;
		gap: 0.5rem;
	}

	.site-branding img.custom-logo {
		max-height: 35px;
	}

	.menu-toggle {
		display: flex;
	}

	.nav-menu-container {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--white);
		padding: 1.5rem;
		box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
		border-top: 1px solid #f3f4f6;
	}

	.nav-menu-container ul {
		flex-direction: column;
		gap: 1rem;
	}

	.nav-menu-container a {
		color: var(--text-muted);
	}

	.nav-menu-container a:hover,
	.nav-menu-container .current-menu-item > a {
		color: var(--primary);
	}

	.nav-menu-container .current-menu-item > a::after {
		background-color: var(--primary);
	}

	.main-navigation.is-open .nav-menu-container {
		display: block;
	}

	.main-navigation.is-open .hamburger-line:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	
	.main-navigation.is-open .hamburger-line:nth-child(2) {
		opacity: 0;
	}
	
	.main-navigation.is-open .hamburger-line:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.footer-container {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

/* ==========================================================================
   HOMEPAGE CUSTOM LAYOUT STYLES
   ========================================================================== */

/* Hero Section */
.hero-section {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	color: var(--white);
	text-align: center;
	margin: 0;
	padding: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 31, 32, 0.2) 100%);
    z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.hero-title {
	font-size: 3.4rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1.5rem;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2.5rem;
	line-height: 1.6;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.btn-primary-hero {
	background-color: var(--primary);
	color: var(--white);
	font-weight: 600;
	font-size: 1.05rem;
	padding: 0.9rem 2.2rem;
	border-radius: 9999px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.15s ease;
	display: inline-block;
}

.btn-primary-hero:hover {
	background-color: var(--primary-hover);
	transform: translateY(-1px);
}

/* Features Grid */
.features-section {
	padding: 0 0 3.5rem;
	position: relative;
	z-index: 10;
	margin-top: -60px; /* Float cards over Hero */
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.feature-card {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 2.25rem 1.75rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.015);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.feature-icon {
	color: var(--primary);
	margin-bottom: 1.25rem;
	display: inline-block;
}

.feature-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}

.feature-text {
	color: var(--text-muted);
	font-size: 0.925rem;
	line-height: 1.55;
}

/* Stats Section */
.stats-section {
	padding: 2.5rem 0;
	background-color: var(--white);
	border-bottom: 1px solid #f3f4f6;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	text-align: center;
}

.stat-item {
	padding: 1rem 0;
}

.stat-number {
	font-size: 3.25rem;
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 0.5rem;
	letter-spacing: -0.03em;
}

.stat-label {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Inspiracion Section */
.inspiracion-section {
	padding: 6rem 0;
	background-color: var(--white);
}

.inspiracion-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3.5rem;
}

.inspiracion-main-title {
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.inspiracion-subtitle {
	color: var(--text-muted);
	font-size: 1.05rem;
}

.inspiracion-link {
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.15s ease, transform 0.15s ease;
	display: inline-block;
}

.inspiracion-link:hover {
	color: var(--primary-hover);
	transform: translateX(4px);
}

.destinations-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.destination-card {
	position: relative;
	height: 440px;
	border-radius: 16px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	padding: 2.25rem 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
	cursor: pointer;
}

.destination-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.destination-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 31, 32, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 1;
}

.destination-card-content {
	position: relative;
	z-index: 2;
	color: var(--white);
}

.destination-tag {
	background-color: var(--tertiary);
	color: var(--white);
	font-size: 0.725rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	display: inline-block;
	margin-bottom: 0.65rem;
	padding: 0.3rem 0.8rem;
	border-radius: 4px;
}


.destination-title {
	color: var(--white);
	font-size: 1.45rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.25;
}

.destination-desc {
	color: #cbd5e1;
	font-size: 0.925rem;
	line-height: 1.45;
}

/* Premium Full-Width CTA Banner */
.banner-cta-section {
	position: relative;
	width: 100%;
	min-height: 400px;
	padding: 6.5rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-image: url('../images/machupicchu-hero-person.png');
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.banner-cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 45, 50, 0.90) 0%,
		rgba(0, 77, 64, 0.82) 50%,
		rgba(0, 30, 35, 0.92) 100%
	);
	z-index: 1;
}

.banner-cta-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1rem;
}

.banner-cta-title {
	font-family: var(--font-title);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1.25rem;
	line-height: 1.25;
	letter-spacing: -0.01em;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.banner-cta-text {
	font-family: var(--font-body);
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(1rem, 2vw, 1.18rem);
	margin-bottom: 2.75rem;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.65;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.banner-cta-actions {
	display: flex;
	justify-content: center;
}

.btn-banner-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-body);
	background: linear-gradient(135deg, var(--tertiary), #d88052);
	color: var(--white) !important;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 1rem 2.5rem;
	border-radius: 9999px;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
	border: none;
	box-shadow: 0 8px 24px rgba(197, 113, 67, 0.4);
	cursor: pointer;
}

.btn-banner-cta:hover {
	background: linear-gradient(135deg, #d88052, var(--tertiary));
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(197, 113, 67, 0.55);
}

@media (max-width: 768px) {
	.banner-cta-section {
		background-attachment: scroll; /* better support for mobile devices */
		padding: 5rem 1rem;
	}
}

/* Steps Section */
.steps-section {
	padding: 4rem 0;
	background-color: var(--white);
}

.steps-main-title {
	text-align: center;
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 4.5rem;
	letter-spacing: -0.020em;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	position: relative;
}

/* Connector Dotted Line behind steps */
.steps-grid::before {
	content: '';
	position: absolute;
	top: 36px;
	left: 15%;
	right: 15%;
	height: 2px;
	background-image: linear-gradient(to right, #94a3b8 40%, rgba(255,255,255,0) 0%);
	background-position: top;
	background-size: 10px 1px;
	background-repeat: repeat-x;
	z-index: 1;
}

.step-card {
	text-align: center;
	position: relative;
	z-index: 2;
}

.step-icon-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 1.75rem;
}

.step-icon {
	background-color: var(--primary);
	color: var(--white);
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 102, 102, 0.2);
}

.step-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}

.step-desc {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	max-width: 250px;
	margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
	padding: 4rem 0;
	background-color: var(--white);
}

.testimonials-main-title {
	text-align: center;
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.testimonials-subtitle {
	text-align: center;
	color: var(--text-muted);
	font-size: 1.05rem;
	margin-bottom: 4rem;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.testimonial-card {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 2.25rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.stars {
	color: #f59e0b; /* Gold star color */
	display: flex;
	gap: 0.2rem;
	margin-bottom: 1.25rem;
}

.testimonial-text {
	color: var(--text-dark);
	font-size: 0.95rem;
	line-height: 1.65;
	font-style: italic;
	margin-bottom: 1.75rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.author-name {
	font-size: 0.975rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
}

.author-meta {
	color: var(--text-muted);
	font-size: 0.8rem;
	margin: 0;
}

/* Newsletter Section */
.newsletter-signup-section {
	padding: 4rem 0 6rem;
	background-color: var(--white);
}

.newsletter-box {
	background-color: #eef6f6; /* Very light teal shade matching the design */
	border-radius: 20px;
	padding: 4.5rem 3rem;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.newsletter-title {
	font-size: 2.15rem;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.newsletter-subtitle {
	color: var(--text-muted);
	font-size: 1.05rem;
	margin-bottom: 2.5rem;
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.newsletter-signup-form {
	display: flex;
	justify-content: center;
	gap: 1rem;
	max-width: 580px;
	margin: 0 auto;
}

.newsletter-email-input {
	flex-grow: 1;
	background-color: var(--white);
	border: 1px solid #cbd5e1;
	border-radius: 9999px;
	padding: 0.9rem 1.75rem;
	font-size: 1rem;
	color: var(--text-dark);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-email-input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(0, 102, 102, 0.12);
}

.btn-newsletter-submit {
	background-color: var(--primary);
	color: var(--white);
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.9rem 2.2rem;
	border-radius: 9999px;
	border: none;
	cursor: pointer;
	letter-spacing: 0.05em;
	transition: background-color 0.2s ease;
}

.btn-newsletter-submit:hover {
	background-color: var(--primary-hover);
}

/* Homepage Responsiveness */
@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.destinations-grid,
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.4rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.features-grid,
	.destinations-grid,
	.testimonials-grid,
	.stats-grid,
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.features-section {
		margin-top: 0;
		padding-top: 3.5rem;
	}
	
	.steps-grid::before {
		display: none; /* Hide connector lines on mobile */
	}
	
	.newsletter-signup-form {
		flex-direction: column;
		gap: 1rem;
	}
	
	.banner-cta-title,
	.newsletter-title {
		font-size: 1.75rem;
	}
}
/* ==========================================================================
   DESTINOS PAGE CUSTOM LAYOUT STYLES
   ========================================================================== */

.destinos-page-wrapper {
	padding: 5.5rem 0 0;
	background-color: var(--neutral);
}

.destinos-header {
	max-width: 800px;
	margin-bottom: 4rem;
}

.destinos-main-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--secondary);
	margin-bottom: 0.75rem;
	letter-spacing: -0.025em;
}

.destinos-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
	line-height: 1.6;
}

/* Sidebar Layout */
.destinos-layout {
	display: grid;
	grid-template-columns: 290px 1fr;
	gap: 3rem;
	align-items: start;
}

/* Sidebar Filter Card */
.filters-card {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 2.25rem 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.filters-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 2rem;
}

.filter-group {
	margin-bottom: 2.5rem;
}

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

.filter-group-title {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1.25rem;
}

/* Checkbox Custom Styling */
.filter-checkbox-list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.checkbox-container {
	display: block;
	position: relative;
	padding-left: 1.85rem;
	cursor: pointer;
	font-size: 0.975rem;
	font-weight: 500;
	user-select: none;
	color: var(--text-dark);
	transition: color 0.2s ease;
}

.checkbox-container:hover {
	color: var(--primary);
}

.checkbox-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 3px;
	left: 0;
	height: 18px;
	width: 18px;
	background-color: var(--white);
	border: 1.5px solid #cbd5e1;
	border-radius: 4px;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-container input:checked ~ .checkmark {
	background-color: var(--primary);
	border-color: var(--primary);
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
	display: block;
}

.checkbox-container .checkmark:after {
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid var(--white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Attributes Badges list */
.filter-badge-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.filter-badge {
	background-color: var(--white);
	border: 1.5px solid #e5e7eb;
	color: var(--text-muted);
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 0.8rem;
	padding: 0.45rem 1.15rem;
	border-radius: 9999px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.filter-badge:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.filter-badge.active {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

/* Listings Grid */
.destinos-listings-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.destination-item-card {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
	transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.25s ease;
}

.destination-item-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.08);
}

.card-image-wrapper {
	height: 250px;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.75rem;
}

.card-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 31, 32, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
}

.card-badge {
	position: relative;
	z-index: 2;
	color: #cbd5e1;
	font-size: 0.725rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	margin-bottom: 0.35rem;
}

.card-destination-title {
	position: relative;
	z-index: 2;
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
}

.card-body {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
}

.card-description {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.55;
	margin-bottom: 1.5rem;
}

.card-footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.25rem;
	border-top: 1px solid #f3f4f6;
	margin-top: auto;
}

.card-price-info {
	display: flex;
	flex-direction: column;
}

.price-label {
	font-size: 0.725rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.price-value {
	font-size: 1.45rem;
	font-weight: 800;
	color: var(--primary); /* Deep bright teal for price value */
}

/* ==========================================================================
   TOUR CARDS — Premium Redesign
   ========================================================================== */

.tour-card {
	background-color: var(--white);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	border: 1px solid #e8ecf1;
	transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
	            box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tour-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 31, 32, 0.1);
}

/* Image Container */
.tour-card__link {
	display: block;
	text-decoration: none;
	overflow: hidden;
}

.tour-card__image {
	height: 220px;
	background-size: cover;
	background-position: center;
	position: relative;
	transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tour-card:hover .tour-card__image {
	transform: scale(1.06);
}

.tour-card__cat-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(0, 31, 32, 0.65);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--white);
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.35rem 0.7rem;
	border-radius: 8px;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Card Body */
.tour-card__body {
	padding: 1.25rem 1.4rem 1.4rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.tour-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 0.5rem;
	color: var(--secondary);
}

.tour-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tour-card__title a:hover {
	color: var(--primary);
}

.tour-card__desc {
	font-size: 0.85rem;
	line-height: 1.55;
	color: var(--text-muted);
	margin: 0 0 0.85rem;
}

/* Meta Pills (Duration, Difficulty) */
.tour-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 1rem;
}

.tour-card__meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.72rem;
	font-weight: 600;
	color: #475569;
	background: #f1f5f9;
	padding: 0.3rem 0.6rem;
	border-radius: 6px;
	white-space: nowrap;
}

.tour-card__meta-pill svg {
	flex-shrink: 0;
	opacity: 0.7;
}

/* Difficulty color coding */
.tour-card__meta-pill--diff[data-diff="facil"] {
	background: #ecfdf5;
	color: #065f46;
}

.tour-card__meta-pill--diff[data-diff="moderado"] {
	background: #fffbeb;
	color: #92400e;
}

.tour-card__meta-pill--diff[data-diff="dificil"] {
	background: #fef2f2;
	color: #991b1b;
}

/* Card Footer */
.tour-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid #f1f5f9;
}

.tour-card__price {
	display: flex;
	flex-direction: column;
}

.tour-card__price-label {
	font-size: 0.65rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.2;
}

.tour-card__price-value {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--primary);
	line-height: 1.3;
}

.tour-card__cta {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1.15rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--white);
	background: var(--primary);
	border-radius: 9999px;
	text-decoration: none;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	white-space: nowrap;
}

.tour-card__cta:hover {
	background: var(--primary-hover, #006b6f);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 144, 152, 0.3);
}

/* Tour cards responsive */
@media (max-width: 768px) {
	.tour-card__image {
		height: 180px;
	}
	.tour-card__body {
		padding: 1rem 1.15rem 1.15rem;
	}
	.tour-card__title {
		font-size: 0.95rem;
	}
	.tour-card__cta {
		padding: 0.45rem 0.9rem;
		font-size: 0.75rem;
	}
}

.btn-sm {
	padding: 0.55rem 1.35rem;
	font-size: 0.85rem;
	border-radius: 9999px;
}

/* Load More Destinations */
.load-more-container {
	margin-top: 4rem;
	display: flex;
	justify-content: center;
}

.btn-load-more {
	padding: 0.8rem 2.2rem;
	font-size: 0.95rem;
	font-weight: 700;
	border-radius: 9999px;
	background-color: var(--white);
	border-color: #cbd5e1;
	color: var(--text-dark);
	display: inline-flex;
	align-items: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.btn-load-more:hover {
	border-color: var(--primary);
	color: var(--primary);
	background-color: var(--neutral);
	transform: translateY(-0.5px);
}

.reload-icon {
	transition: transform 0.4s ease;
}

.btn-load-more:hover .reload-icon {
	transform: rotate(180deg);
}

/* Responsive Styles for Destinos Page */
@media (max-width: 1024px) {
	.destinos-layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 768px) {
	.destinos-listings-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}
	
	.destinos-main-title {
		font-size: 2rem;
	}
}

/* ==========================================================================
   ITINERARIO PAGE CUSTOM LAYOUT STYLES
   ========================================================================== */

.itinerario-page-wrapper {
	padding: 5.5rem 0 0;
	background-color: var(--neutral);
}

/* Gallery Mosaic */
.gallery-mosaic {
	display: grid;
	grid-template-columns: 1.8fr 1.2fr;
	gap: 0.75rem;
	height: 480px;
	margin-bottom: 3.5rem;
}

.mosaic-main-card {
	position: relative;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	padding: 3rem 2.5rem;
}

.mosaic-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 31, 32, 0.9) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.05) 100%);
	z-index: 1;
}

.mosaic-card-content {
	position: relative;
	z-index: 2;
	color: var(--white);
}

.mosaic-tag {
	background-color: var(--primary);
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	padding: 0.4rem 1rem;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 0.75rem;
}

.mosaic-title {
	color: var(--white);
	font-size: 2.65rem;
	font-weight: 800;
	margin: 0;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.mosaic-side-column {
	display: grid;
	grid-template-rows: 1.1fr 0.9fr;
	gap: 0.75rem;
	height: 100%;
}

.mosaic-side-row-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	height: 100%;
}

.mosaic-side-card-small {
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	height: 100%;
}

.mosaic-side-card-medium {
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	height: 100%;
}

/* Two-column layout */
.itinerario-layout {
	display: grid;
	grid-template-columns: 1fr 370px;
	gap: 3.5rem;
	align-items: start;
}

/* Main Left Column */
.itinerario-main-content {
	min-width: 0;
}

.section-block-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--secondary);
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

/* Experience Card */
.experience-card-section {
	margin-bottom: 3rem;
}

.experience-card {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
}

.experience-text {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.experience-badges-row {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	border-top: 1px solid #f3f4f6;
	padding-top: 1.75rem;
}

.exp-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-dark);
}

.exp-badge svg {
	color: var(--primary);
	flex-shrink: 0;
}

/* Itinerario sugerido timeline */
.itinerary-timeline-section {
	margin-bottom: 3.5rem;
}

.itinerary-title-row {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 2.25rem;
}

.itinerary-title-row .section-block-title {
	margin-bottom: 0;
}

.badge-tag-info {
	background-color: #e6f7f7;
	color: var(--primary);
	font-size: 0.725rem;
	font-weight: 700;
	padding: 0.35rem 0.85rem;
	border-radius: 9999px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.timeline-container {
	position: relative;
	padding-left: 2.25rem;
	border-left: 2px solid #e5e7eb;
	margin-left: 10px;
}

.timeline-item {
	position: relative;
	margin-bottom: 2.5rem;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-dot {
	position: absolute;
	left: -42px;
	top: 5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--primary);
	border: 3px solid var(--white);
	box-shadow: 0 0 0 2px var(--primary);
}

.timeline-day-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 0.65rem;
}

.timeline-day-text {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.65;
}

/* Inclusions cards */
.inclusions-section {
	margin-bottom: 3.5rem;
}

.inclusions-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.inclusions-box {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 2.25rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
}

.inclusions-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.check-icon-heading {
	color: var(--primary);
}

.cross-icon-heading {
	color: #ef4444;
}

.inclusions-list,
.exclusions-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.inclusions-list li,
.exclusions-list li {
	position: relative;
	padding-left: 1.75rem;
	font-size: 0.95rem;
	color: var(--text-muted);
}

.inclusions-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: bold;
	font-size: 1.1rem;
	top: -2px;
}

.exclusions-list li::before {
	content: "✕";
	position: absolute;
	left: 0;
	color: #ef4444;
	font-weight: bold;
	font-size: 0.9rem;
	top: 1px;
}

/* Testimonios section */
.traveler-reviews-section {
	margin-bottom: 3.5rem;
}

.reviews-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.review-card {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 2.25rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.review-text {
	font-size: 0.95rem;
	line-height: 1.65;
	font-style: italic;
	color: var(--text-dark);
	margin-bottom: 1.75rem;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.author-initials {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: var(--secondary);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
}

.author-date {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin: 0;
}

/* Related Tours Section */
.related-tours-section {
	margin-bottom: 1.5rem;
}

.related-tours-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.related-tour-card {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
	transition: transform 0.2s ease;
}

.related-tour-card:hover {
	transform: translateY(-3px);
}

.related-tour-image {
	height: 140px;
	background-size: cover;
	background-position: center;
}

.related-tour-content {
	padding: 1.25rem;
}

.related-tour-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.35rem;
}

.related-tour-desc {
	font-size: 0.8rem;
	color: var(--text-muted);
	line-height: 1.45;
	margin-bottom: 0.75rem;
	min-height: 40px;
}

.related-tour-price {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--primary);
}

/* Booking Sidebar Card */
.itinerario-booking-sidebar {
	position: sticky;
	top: 85px;
	z-index: 10;
	align-self: start;
}

.booking-sidebar-card {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02), 0 4px 6px -2px rgba(0, 0, 0, 0.01);
	overflow: hidden;
}

.booking-sidebar-card.booking-widget {
	padding: 0;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #cbd5e1 transparent;
}

.booking-sidebar-card.booking-widget::-webkit-scrollbar {
	width: 5px;
}
.booking-sidebar-card.booking-widget::-webkit-scrollbar-track {
	background: transparent;
}
.booking-sidebar-card.booking-widget::-webkit-scrollbar-thumb {
	background-color: #cbd5e1;
	border-radius: 9999px;
}

/* ── Booking Widget: Dark Header ── */
.booking-widget__header {
	background-color: var(--secondary);
	padding: 0.75rem 1.25rem;
	text-align: center;
}

.booking-widget__header h3 {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 800;
	margin: 0;
	letter-spacing: 0.02em;
}

/* ── Tour Info ── */
.booking-widget__tour-info {
	padding: 0.85rem 1.25rem 0.65rem;
	text-align: center;
	border-bottom: 1px solid #e5e7eb;
}

.booking-widget__tour-name {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.25rem;
	line-height: 1.25;
}

.booking-widget__price {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--primary);
}

/* ── Divider with label ── */
.booking-widget__divider {
	text-align: center;
	padding: 0.5rem 1.25rem;
	border-bottom: 1px solid #e5e7eb;
}

.booking-widget__divider span {
	font-size: 0.68rem;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* ── Sections ── */
.booking-widget__section {
	padding: 0.85rem 1.25rem;
	border-bottom: 1px solid #f1f1f1;
}

.booking-widget__section:last-of-type {
	border-bottom: none;
}

/* ── Step Labels ── */
.booking-widget__step-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.65rem;
}

.booking-widget__step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: var(--primary);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	flex-shrink: 0;
}

.booking-widget__step-hint {
	font-size: 0.7rem;
	font-weight: 400;
	color: var(--text-muted);
	font-style: italic;
}

/* ── Calendar ── */
.booking-widget__calendar {
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
}

.bw-cal__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0.75rem;
	background: #fafafa;
}

.bw-cal__nav button {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	color: var(--text-dark);
	padding: 0.15rem 0.4rem;
	border-radius: 4px;
	transition: background 0.2s;
}

.bw-cal__nav button:hover {
	background: #e5e7eb;
}

.bw-cal__nav span {
	font-weight: 700;
	font-size: 0.82rem;
	text-transform: uppercase;
	color: var(--text-dark);
}

.bw-cal__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
}

.bw-cal__grid .bw-cal__dow {
	font-size: 0.68rem;
	font-weight: 700;
	color: var(--text-muted);
	padding: 0.35rem 0;
	text-transform: uppercase;
}

.bw-cal__grid .bw-cal__dow:first-child { color: var(--primary); }
.bw-cal__grid .bw-cal__dow:last-child { color: var(--primary); }

.bw-cal__day {
	padding: 0.35rem 0;
	font-size: 0.82rem;
	color: var(--text-dark);
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.15s, color 0.15s;
	margin: 1px;
}

.bw-cal__day:hover {
	background: rgba(0, 144, 152, 0.12);
}

.bw-cal__day--empty {
	cursor: default;
}

.bw-cal__day--today {
	font-weight: 700;
	color: var(--primary);
}

.bw-cal__day--selected {
	background-color: var(--primary) !important;
	color: #fff !important;
	font-weight: 700;
}

.bw-cal__day--past {
	color: #ccc;
	cursor: default;
	text-decoration: line-through;
}

.bw-cal__day--past:hover {
	background: transparent;
}

/* ── Passenger Counter ── */
.booking-widget__pax-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.35rem 0;
}

.booking-widget__pax-label strong {
	display: block;
	font-size: 0.9rem;
	color: var(--text-dark);
}

.booking-widget__pax-label small {
	color: var(--text-muted);
	font-size: 0.72rem;
}

.booking-widget__pax-controls {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.booking-widget__pax-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid var(--primary);
	background: transparent;
	color: var(--primary);
	font-size: 1.15rem;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
	line-height: 1;
}

.booking-widget__pax-btn:hover {
	background: var(--primary);
	color: #fff;
}

.booking-widget__pax-count {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-dark);
	min-width: 20px;
	text-align: center;
}

/* ── Book / WhatsApp Buttons ── */
.booking-widget__book-btn {
	width: 100%;
	font-weight: 700;
	padding: 0.7rem;
	border-radius: 9999px;
	margin-bottom: 0.5rem;
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
	color: #fff !important;
	font-size: 0.9rem;
	transition: background-color 0.25s, transform 0.15s;
}

.booking-widget__book-btn:hover {
	background-color: var(--primary-hover) !important;
	transform: translateY(-1px);
}

.booking-widget__wa-btn {
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #25d366;
	color: white;
	border: none;
	width: 100%;
	font-weight: 700;
	padding: 0.65rem;
	border-radius: 9999px;
	transition: background 0.25s ease;
	font-size: 0.88rem;
}

/* ── Inputs inside widget ── */
.booking-widget .booking-input-group {
	margin-bottom: 0.85rem;
}

.booking-widget .booking-text-input,
.booking-widget .booking-textarea-input {
	width: 100%;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	padding: 0.7rem 1rem;
	font-size: 0.88rem;
	font-family: var(--font-body);
	outline: none;
	background-color: var(--white);
	color: var(--text-dark);
	transition: border-color 0.2s ease;
}

.booking-widget .booking-text-input:focus,
.booking-widget .booking-textarea-input:focus {
	border-color: var(--primary);
}

.booking-widget .booking-textarea-input {
	resize: vertical;
}

/* ── Legacy styles kept for non-widget usage ── */
.booking-input-group {
	margin-bottom: 1rem;
}

.booking-text-input,
.booking-select-input,
.booking-textarea-input {
	width: 100%;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	font-family: var(--font-body);
	outline: none;
	background-color: var(--white);
	color: var(--text-dark);
	transition: border-color 0.2s ease;
}

.booking-text-input:focus,
.booking-select-input:focus,
.booking-textarea-input:focus {
	border-color: var(--primary);
}

.btn-block {
	width: 100%;
	display: flex;
	justify-content: center;
}

.btn-booking-submit {
	margin-top: 1.25rem;
	padding: 0.85rem;
	font-size: 0.95rem;
	border-radius: 9999px;
}

.btn-booking-whatsapp:hover {
	background-color: #128c7e !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.booking-guarantee-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-top: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.booking-guarantee-row svg {
	color: var(--text-muted);
}

/* Responsiveness for Itinerary Page */
@media (max-width: 1024px) {
	.itinerario-layout {
		grid-template-columns: 1fr;
		gap: 3.5rem;
	}
	
	.itinerario-booking-sidebar {
		position: static;
	}
}

@media (max-width: 768px) {
	.gallery-mosaic {
		grid-template-columns: 1fr;
		height: 320px;
	}
	
	.mosaic-side-column {
		display: none; /* Hide side tiles on mobile for clean screen view */
	}
	
	.mosaic-main-card {
		padding: 2rem;
	}
	
	.mosaic-title {
		font-size: 2rem;
	}
	
	.inclusions-grid,
	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.related-tours-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ==========================================================================
   BLOG POST & ARTICLE (SINGLE-21 KYOTO) STYLES
   ========================================================================== */

.article-page-wrapper {
	padding: 2rem 0 4rem;
	background-color: var(--neutral);
}

.container-article {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.article-header {
	text-align: center;
	margin: 0 auto 3.5rem auto;
	max-width: 850px;
}

.article-category-tag {
	color: var(--tertiary);
	font-family: var(--font-title);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	display: inline-block;
	margin-bottom: 1rem;
}

.article-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.15;
	color: var(--secondary);
	margin-bottom: 1.5rem;
}

.article-meta-row {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.95rem;
	color: var(--text-muted);
}

.article-meta-row .meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.article-meta-row svg {
	opacity: 0.7;
	color: var(--primary);
}

.article-meta-row .meta-divider {
	color: #cbd5e1;
}

.article-featured-image-wrapper {
	width: 100%;
	height: 550px;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 4rem;
	box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
}

.article-featured-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.article-body-content {
	font-family: var(--font-body);
	font-size: 1.15rem;
	line-height: 1.85;
	color: var(--text-dark);
	max-width: 800px;
	margin: 0 auto;
}

.article-body-content p {
	margin-bottom: 2rem;
}

.article-body-content h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--secondary);
	margin-top: 3rem;
	margin-bottom: 1.25rem;
	line-height: 1.3;
}

/* Share Bar */
.article-share-bar,
.article-comments-section {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.article-share-bar {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem 0;
	margin: 2.5rem 0;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}

.share-btn-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: none;
	border: 1px solid #e2e8f0;
	border-radius: 9999px;
	padding: 0.5rem 1.25rem;
	font-family: var(--font-title);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-muted);
	cursor: pointer;
	transition: all 0.2s ease;
}

.share-btn-item:hover {
	border-color: var(--primary);
	color: var(--primary);
	background-color: #f1f5f9;
}

.share-btn-item svg {
	color: var(--text-muted);
	transition: color 0.2s ease;
}

.share-btn-item:hover svg {
	color: var(--primary);
}

/* Comments Section */
.article-comments-section {
	margin-top: 3.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid #e2e8f0;
}

.comments-main-title {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: var(--secondary);
}

.comments-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 3rem;
}

.comment-item {
	display: flex;
	gap: 1.25rem;
}

.comment-avatar-badge {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #e2e8f0;
	color: var(--text-muted);
	font-weight: 700;
	font-family: var(--font-title);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
}

.comment-item-author .comment-avatar-badge.author-badge {
	background-color: var(--secondary);
	color: var(--white);
}

.comment-details {
	flex-grow: 1;
	background-color: var(--white);
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.comment-item-author .comment-details {
	border-color: rgba(0, 77, 64, 0.15);
	background-color: #f0f7f7;
}

.comment-header-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5rem;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.comment-author-name {
	font-family: var(--font-title);
	font-weight: 700;
	color: var(--text-dark);
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.badge-role-author {
	background-color: var(--tertiary);
	color: var(--white);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.15rem 0.45rem;
	border-radius: 4px;
	letter-spacing: 0.05em;
}

.comment-date {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.comment-content-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--text-dark);
}

.leave-comment-area {
	background-color: var(--white);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.leave-comment-title {
	font-size: 1.25rem;
	color: var(--secondary);
	margin-bottom: 1.25rem;
}

.comment-textarea-field {
	width: 100%;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	padding: 1rem;
	font-family: var(--font-body);
	font-size: 0.95rem;
	outline: none;
	resize: vertical;
	margin-bottom: 1.25rem;
	transition: border-color 0.2s ease;
}

.comment-textarea-field:focus {
	border-color: var(--primary);
}

.btn-submit-comment {
	padding: 0.75rem 2rem;
	font-size: 0.95rem;
	border-radius: 9999px;
}

/* Plan Trip CTA */
.article-plan-trip-cta {
	margin: 4.5rem 0;
}

.plan-trip-card {
	background-color: #f8fafb;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 3rem 2.5rem;
	text-align: center;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
}

.plan-trip-icon-wrapper {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background-color: rgba(0, 144, 152, 0.1);
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.plan-trip-title {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--secondary);
	margin-bottom: 1.5rem;
}

.plan-trip-selector-text {
	font-size: 1.25rem;
	line-height: 1.7;
	color: var(--text-dark);
	max-width: 680px;
	margin: 0 auto 2.5rem;
}

.interactive-underline {
	font-weight: 700;
	color: var(--primary);
	border-bottom: 2px dotted var(--primary);
	cursor: pointer;
	padding-bottom: 1px;
	transition: color 0.15s ease, border-bottom-color 0.15s ease;
}

.interactive-underline:hover {
	color: var(--primary-hover);
	border-bottom-style: solid;
}

.plan-trip-specs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem 1.5rem;
	margin-bottom: 3rem;
	text-align: left;
}

.spec-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.spec-icon {
	color: var(--primary);
	background-color: rgba(0, 144, 152, 0.05);
	padding: 0.6rem;
	border-radius: 8px;
	display: inline-flex;
}

.spec-details {
	display: flex;
	flex-direction: column;
}

.spec-label {
	font-size: 0.75rem;
	color: var(--text-muted);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
}

.spec-value {
	font-family: var(--font-title);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--secondary);
}

.btn-plan-trip {
	padding: 0.9rem 2.2rem;
	font-size: 1.05rem;
	border-radius: 9999px;
}

/* Related Posts Section */
.article-related-posts-section {
	margin-top: 4.5rem;
	border-top: 1px solid #e2e8f0;
	padding-top: 3.5rem;
}

.related-posts-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2rem;
}

.related-main-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--secondary);
}

.related-view-all-link {
	font-family: var(--font-title);
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.15s ease;
}

.related-view-all-link:hover {
	color: var(--primary-hover);
}

.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.related-post-card {
	background-color: var(--white);
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.06);
}

.related-post-image {
	position: relative;
	aspect-ratio: 16/10;
	background-size: cover;
	background-position: center;
}

.related-post-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
}

.related-post-tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background-color: var(--tertiary);
	color: var(--white);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.25rem 0.65rem;
	border-radius: 4px;
	letter-spacing: 0.05em;
	z-index: 2;
}

.related-post-body {
	padding: 1.5rem;
}

.related-post-card-title {
	font-size: 1.15rem;
	line-height: 1.35;
	margin-bottom: 0.75rem;
}

.related-post-card-title a {
	color: var(--secondary);
	text-decoration: none;
	transition: color 0.15s ease;
}

.related-post-card-title a:hover {
	color: var(--primary);
}

.related-post-desc {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--text-muted);
}

/* Responsiveness for Article Page */
@media (max-width: 768px) {
	.article-title {
		font-size: 2rem;
	}
	
	.article-featured-image-wrapper {
		height: 300px;
	}
	
	.plan-trip-specs-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.related-posts-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.related-posts-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
}

/* ==========================================================================
   ABOUT US PAGE (PAGE-23 SOBRE NOSOTROS) STYLES
   ========================================================================== */

.sobre-nosotros-page-wrapper {
	background-color: var(--white);
}

.about-intro-section {
	padding: 5.5rem 0 0;
	background-color: var(--white);
}

.about-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-intro-text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.about-intro-title {
	font-size: 3.2rem;
	font-weight: 800;
	color: var(--secondary);
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.about-intro-desc {
	font-size: 1.15rem;
	line-height: 1.7;
	color: var(--text-muted);
}

.about-intro-image-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-mockup-frame {
	background-color: var(--neutral);
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 1rem;
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
	width: 100%;
	max-width: 480px;
}

.about-intro-img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.about-eyebrow {
	display: inline-block;
	font-family: var(--font-title);
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

/* Misión y Visión Section */
.about-mv-section {
	position: relative;
	padding: 6rem 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: var(--white);
}

.about-mv-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 31, 32, 0.75) 0%, rgba(0, 77, 64, 0.8) 100%);
	z-index: 1;
}

.about-mv-container {
	position: relative;
	z-index: 2;
}

.about-mv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.mv-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 3rem 2.5rem;
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.mv-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.3);
}

.mv-icon-wrapper {
	background-color: var(--primary);
	border-radius: 50%;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 8px 16px rgba(0, 144, 152, 0.3);
}

.mv-icon-wrapper svg {
	color: var(--white);
}

.mv-content {
	flex: 1;
}

.mv-title {
	font-family: var(--font-title);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.75rem;
}

.mv-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

/* Experiences Showcase Section */
.about-experiences-section {
	padding: 6rem 0;
	background-color: var(--neutral);
}

.experiences-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.experience-card-item {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.exp-img-wrapper {
	width: 100%;
	height: 280px;
	overflow: hidden;
}

.exp-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.experience-card-item:hover .exp-img {
	transform: scale(1.05);
}

.exp-card-body {
	padding: 2.25rem;
}

.exp-badge {
	display: inline-block;
	background-color: #f0fdfa;
	color: var(--primary);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.35rem 0.75rem;
	border-radius: 9999px;
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}

.exp-card-title {
	font-size: 1.35rem;
	color: var(--secondary);
	margin-bottom: 0.75rem;
}

.exp-card-text {
	font-size: 0.925rem;
	color: var(--text-muted);
	line-height: 1.6;
}

@media (max-width: 768px) {
	.about-intro-grid,
	.about-mv-grid,
	.experiences-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.about-intro-section {
		padding: 4rem 0 0;
	}
	
	.about-mv-section,
	.about-experiences-section {
		padding: 4rem 0;
	}
	
	.exp-img-wrapper {
		height: 220px;
	}
}

/* Section Title Wrapper */
.section-title-wrapper {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.about-section-title {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--secondary);
	margin-bottom: 0.75rem;
}

.about-section-subtitle {
	font-size: 1.1rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* Valores Section */
.about-valores-section {
	padding: 4rem 0;
	background-color: var(--neutral);
	border-top: 1px solid #f1f5f9;
	border-bottom: 1px solid #f1f5f9;
}

.valores-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.valor-card {
	background-color: var(--white);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 3rem 2rem;
	text-align: center;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.valor-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.valor-icon-wrapper {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(0, 144, 152, 0.08);
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.valor-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 1rem;
}

.valor-card-desc {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--text-muted);
}



/* Responsiveness for About Page */
@media (max-width: 992px) {
	.about-intro-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}
	
	.about-intro-text {
		align-items: center;
	}
	
	.about-intro-title {
		font-size: 2.6rem;
	}
}

@media (max-width: 768px) {
	.valores-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ==========================================================================
   CONTACT PAGE (PAGE-25 CONTÁCTANOS) STYLES
   ========================================================================== */

.contacto-page-wrapper {
	background-color: var(--neutral);
	padding: 5.5rem 0 0;
}

.contacto-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items: flex-start;
}

.contacto-form-column {
	width: 100%;
}

.contacto-form-card {
	background-color: var(--white);
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 3.5rem;
	box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.04);
}

.contacto-form-title {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--secondary);
	margin-bottom: 2rem;
	letter-spacing: -0.02em;
}

.contacto-inquiry-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group-row {
	display: flex;
	flex-direction: column;
}

.form-group-double-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.form-input-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-input-label {
	font-family: var(--font-title);
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.contact-text-input,
.contact-select-input,
.contact-textarea-input {
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 0.9rem 1.2rem;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background-color: #f8fafc;
	color: var(--text-dark);
	transition: all 0.25s ease;
	width: 100%;
}

.contact-text-input::placeholder,
.contact-textarea-input::placeholder {
	color: #94a3b8;
}

.contact-text-input:focus,
.contact-select-input:focus,
.contact-textarea-input:focus {
	border-color: var(--primary);
	background-color: var(--white);
	outline: none;
	box-shadow: 0 0 0 4px rgba(0, 144, 152, 0.12);
}

.contact-select-input {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234b5563' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.2rem center;
	background-size: 1.1rem;
	padding-right: 2.5rem;
	cursor: pointer;
}

.contact-textarea-input {
	resize: vertical;
}

.btn-contact-submit {
	font-family: var(--font-title);
	background-color: var(--secondary);
	color: var(--white);
	font-weight: 700;
	font-size: 1.05rem;
	padding: 1rem 2rem;
	border-radius: 9999px;
	border: none;
	cursor: pointer;
	transition: all 0.25s ease;
	text-align: center;
	width: 100%;
	margin-top: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 77, 64, 0.1);
}

.btn-contact-submit:hover {
	background-color: var(--secondary-hover);
	transform: translateY(-1px);
	box-shadow: 0 10px 15px -3px rgba(0, 77, 64, 0.2);
}

.contacto-info-column {
	padding-left: 1rem;
}

.contacto-info-title {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--secondary);
	margin-bottom: 2rem;
	letter-spacing: -0.02em;
}

.contact-info-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.contact-info-list li {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
}

.contact-info-icon {
	color: var(--primary);
	display: inline-flex;
	padding-top: 0.2rem;
	flex-shrink: 0;
}

.contact-info-text {
	font-size: 1.1rem;
	color: var(--text-dark);
	line-height: 1.5;
	text-decoration: none;
}

a.contact-info-text {
	font-weight: 500;
	transition: color 0.15s ease;
}

a.contact-info-text:hover {
	color: var(--primary);
}

.contact-whatsapp-area {
	margin-bottom: 3rem;
}

.btn-whatsapp {
	display: inline-flex;
	align-items: center;
	background-color: #25D366;
	color: var(--white);
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1rem;
	padding: 0.9rem 2rem;
	border-radius: 9999px;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
	border: none;
}

.btn-whatsapp:hover {
	background-color: #20ba59;
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
	margin-right: 0.5rem;
	display: inline-block;
	vertical-align: middle;
}

.contact-map-wrapper {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
	width: 100%;
	max-height: 300px;
}

.contact-map-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.contact-map-wrapper:hover .contact-map-img {
	transform: scale(1.03);
}

/* Responsiveness for Contact Page */
@media (max-width: 992px) {
	.contacto-grid {
		grid-template-columns: 1fr;
		gap: 3.5rem;
	}

	.contacto-info-column {
		padding-left: 0;
	}

	.contacto-form-card {
		padding: 2.5rem;
	}
}

@media (max-width: 768px) {
	.contacto-page-wrapper {
		padding: 3rem 0 4rem;
	}

	.contacto-form-card {
		padding: 2rem 1.5rem;
	}

	.contacto-form-title,
	.contacto-info-title {
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
	}

	.form-group-double-row {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ==========================================================================
   LIBRO DE RECLAMACIONES STYLES
   ========================================================================== */

.reclamaciones-page {
	padding: 4rem 0 6rem;
}

.reclamaciones-card {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 3rem;
	max-width: 900px;
	margin: 0 auto;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.reclamaciones-title {
	text-align: center;
	color: var(--primary);
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.reclamaciones-subtitle {
	text-align: center;
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.reclamaciones-company-info {
	background-color: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 1.5rem;
	margin-bottom: 2.5rem;
	color: var(--text-dark);
}

.reclamaciones-company-info p {
	margin-bottom: 0.5rem;
}
.reclamaciones-company-info p:last-child {
	margin-bottom: 0;
}

.reclamaciones-form {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.form-section-title {
	font-size: 1.25rem;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #e2e8f0;
	font-weight: 700;
}

.form-row {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.form-row.three-cols > .form-group {
	flex: 1;
}

.form-row.three-cols > .doc-group {
	flex: 0 0 120px;
}

.form-row.two-cols > .form-group {
	flex: 1;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group.full-width {
	margin-bottom: 1rem;
}

.form-control {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid #cbd5e1;
	background-color: #f8fafc;
	color: var(--text-dark);
	font-family: var(--font-body);
	font-size: 0.95rem;
	border-radius: 0;
	outline: none;
	transition: border-color 0.2s ease;
}

.form-control:focus {
	border-color: var(--primary);
	background-color: var(--white);
}

.doc-type-wrap {
	position: relative;
	height: 100%;
}

.floating-label {
	position: absolute;
	top: 0.2rem;
	left: 0.8rem;
	font-size: 0.65rem;
	font-weight: 600;
	color: var(--text-muted);
	pointer-events: none;
}

.doc-select {
	height: 100%;
	padding-top: 1.2rem;
	padding-bottom: 0.4rem;
	padding-left: 0.8rem;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234b5563'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.5rem center;
	background-size: 1rem;
	cursor: pointer;
}

.radio-group {
	flex-direction: row;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.radio-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 0.95rem;
	color: var(--text-dark);
}

.radio-label input[type="radio"] {
	display: none;
}

.radio-custom {
	width: 18px;
	height: 18px;
	border: 2px solid #cbd5e1;
	border-radius: 50%;
	margin-right: 0.5rem;
	position: relative;
	transition: all 0.2s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
	border-color: var(--secondary);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background-color: var(--secondary);
	border-radius: 50%;
}

@media (max-width: 768px) {
	.reclamaciones-card {
		padding: 1.5rem;
	}
	.form-row.three-cols, .form-row.two-cols {
		flex-direction: column;
	}
	.form-row.three-cols > .doc-group {
		flex: auto;
	}
}

/* ============================================================
   FEATURES SECTION — Por qué elegirnos
   ============================================================ */

.features-section {
	padding: 6rem 0 4rem;
	background: #ffffff;
	position: relative;
	overflow: hidden;
}

.features-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary));
}

.features-intro {
	text-align: center;
	margin-bottom: 3.5rem;
}

.features-eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
	background: rgba(0, 144, 152, 0.09);
	border: 1px solid rgba(0, 144, 152, 0.22);
	padding: 0.35rem 1.1rem;
	border-radius: 9999px;
	margin-bottom: 1rem;
}

.features-heading {
	font-family: var(--font-title);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	color: var(--secondary);
	line-height: 1.2;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

@media (max-width: 1024px) {
	.features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.features-grid { grid-template-columns: 1fr; }
}

.feature-card {
	background: #ffffff;
	border: 1px solid rgba(0, 144, 152, 0.12);
	border-radius: 16px;
	padding: 2rem 1.5rem 1.75rem;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	overflow: hidden;
}

.feature-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(0, 144, 152, 0.13), 0 4px 16px rgba(0, 0, 0, 0.06);
	border-color: rgba(0, 144, 152, 0.28);
}

.feature-card:hover::after {
	transform: scaleX(1);
}

.feature-icon-wrap {
	margin-bottom: 1.25rem;
}

.feature-icon {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(0, 144, 152, 0.12), rgba(0, 77, 64, 0.1));
	border: 1px solid rgba(0, 144, 152, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	transition: background 0.25s ease, transform 0.25s ease;
}

.feature-card:hover .feature-icon {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #ffffff;
	transform: rotate(-4deg) scale(1.06);
}

.feature-body {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.feature-title {
	font-family: var(--font-title);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 0.6rem;
	line-height: 1.3;
}

.feature-text {
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.65;
	flex: 1;
	margin-bottom: 1rem;
}

.feature-cta-hint {
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--primary);
	letter-spacing: 0.02em;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.feature-card:hover .feature-cta-hint {
	opacity: 1;
	transform: translateX(0);
}

/* ============================================================
   STATS SECTION — Números que inspiran
   ============================================================ */

.stats-section {
	background:
		linear-gradient(
			135deg,
			rgba(0, 30, 40, 0.82) 0%,
			rgba(0, 90, 100, 0.65) 50%,
			rgba(0, 30, 40, 0.84) 100%
		),
		url('../images/machupicchu-hero-alt.png') center 40% / cover no-repeat;
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(ellipse at 30% 60%, rgba(0, 150, 152, 0.25) 0%, transparent 60%),
		radial-gradient(ellipse at 75% 40%, rgba(0, 80, 90, 0.2) 0%, transparent 55%);
	pointer-events: none;
	z-index: 0;
}

.stats-inner {
	display: flex;
	align-items: stretch;
	justify-content: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 5%;
	position: relative;
	z-index: 1;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 4rem 2.5rem;
	flex: 1;
	text-align: center;
}

.stats-divider {
	width: 1px;
	background: rgba(255, 255, 255, 0.2);
	margin: 2rem 0;
	align-self: stretch;
}

.stat-number {
	font-family: var(--font-title);
	font-size: clamp(2.8rem, 5vw, 4rem);
	font-weight: 900;
	color: #ffffff;
	line-height: 1;
	letter-spacing: -0.02em;
}

.stat-suffix {
	font-family: var(--font-title);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 900;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1;
	margin-top: 0.15rem;
}

.stat-label {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
	margin-top: 0.75rem;
}

@media (max-width: 768px) {
	.stats-inner {
		flex-direction: column;
		padding: 0;
	}
	.stats-divider {
		width: 50%;
		height: 1px;
		align-self: center;
		margin: 0;
	}
	.stat-item {
		padding: 2.5rem 2rem;
	}
}

/* ============================================================
   ALL CATEGORIES SECTION — Todos Nuestros Destinos
   ============================================================ */

.all-cats-section {
	padding: 4rem 0;
	background: #f8fafa;
	position: relative;
}

/* Header row */
.all-cats-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.all-cats-header-left {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.all-cats-eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
	background: rgba(0, 144, 152, 0.09);
	border: 1px solid rgba(0, 144, 152, 0.22);
	padding: 0.3rem 1rem;
	border-radius: 9999px;
	width: fit-content;
}

.all-cats-heading {
	font-family: var(--font-title);
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	font-weight: 800;
	color: var(--secondary);
	line-height: 1.2;
	margin: 0;
}

.all-cats-subheading {
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--text-muted);
	max-width: 500px;
	line-height: 1.6;
	margin: 0;
}

.all-cats-view-all {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--primary);
	border: 2px solid var(--primary);
	padding: 0.65rem 1.4rem;
	border-radius: 9999px;
	text-decoration: none;
	transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.all-cats-view-all:hover {
	background: var(--primary);
	color: #ffffff;
	transform: translateY(-2px);
}

/* Card Grid — auto-fill so it adapts to any number of categories */
.all-cats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
}

@media (max-width: 600px) {
	.all-cats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 400px) {
	.all-cats-grid {
		grid-template-columns: 1fr;
	}
}

/* Link wrapper — remove default anchor styles */
.cat-card-link {
	text-decoration: none;
	display: block;
	border-radius: 18px;
	overflow: hidden;
}

/* Photo card */
.cat-card {
	position: relative;
	height: 300px;
	background-size: cover;
	background-position: center;
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.cat-card-link:hover .cat-card {
	transform: translateY(-6px) scale(1.01);
	box-shadow: 0 24px 60px rgba(0, 80, 90, 0.22), 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Dark gradient overlay */
.cat-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 20, 30, 0.05) 0%,
		rgba(0, 30, 40, 0.25) 40%,
		rgba(0, 30, 40, 0.88) 100%
	);
	transition: background 0.32s ease;
}

.cat-card-link:hover .cat-card-overlay {
	background: linear-gradient(
		to bottom,
		rgba(0, 80, 90, 0.15) 0%,
		rgba(0, 40, 50, 0.35) 40%,
		rgba(0, 40, 50, 0.94) 100%
	);
}

/* Teal accent bar at bottom on hover */
.cat-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--tertiary));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.cat-card-link:hover .cat-card::after {
	transform: scaleX(1);
}

/* Card content */
.cat-card-body {
	position: relative;
	z-index: 1;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.cat-card-count {
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	background: rgba(0, 144, 152, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(6px);
	padding: 0.2rem 0.65rem;
	border-radius: 9999px;
	width: fit-content;
}

.cat-card-name {
	font-family: var(--font-title);
	font-size: 1.2rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
}

.cat-card-desc {
	font-family: var(--font-body);
	font-size: 0.83rem;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.5;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cat-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--primary);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	margin-top: 0.25rem;
}

.cat-card-link:hover .cat-card-cta {
	opacity: 1;
	transform: translateY(0);
}

/* Empty state */
.all-cats-empty {
	text-align: center;
	color: var(--text-muted);
	padding: 4rem 0;
	font-family: var(--font-body);
}

.all-cats-empty a {
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
}

/* Responsive header */
@media (max-width: 640px) {
	.all-cats-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ============================================================
   POLYLANG LANGUAGE SWITCHER
   ============================================================ */
.polylang-langs {
    display: flex;
    list-style: none;
    gap: 12px;
    padding: 0;
    margin: 0 5px 0 0;
    align-items: center;
}

.polylang-langs li {
    display: inline-flex;
    align-items: center;
    list-style-type: none !important;
}

.polylang-langs li::before {
    display: none !important; /* Hide any list bullet helpers */
}

.polylang-langs li a {
    display: block;
    line-height: 1;
}

.polylang-langs img,
.polylang-langs svg {
    width: 24px !important;
    height: 16px !important;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, filter 0.2s ease;
    display: block;
}

.polylang-langs img:hover,
.polylang-langs svg:hover {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* Flag replacement using high-res SVGs */
.polylang-langs li.lang-item-es img {
    content: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/es.svg') !important;
}
.polylang-langs li.lang-item-en img {
    content: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/us.svg') !important;
}

/* ============================================================
   CTA POPUP MODAL
   ============================================================ */
/* ============================================================
   CTA POPUP MODAL (PREMIUM REDESIGN)
   ============================================================ */
.cta-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-modal.is-active {
	opacity: 1;
	pointer-events: auto;
}

.cta-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 31, 32, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.cta-modal__card {
	background: #ffffff;
	border-radius: 24px;
	padding: 3rem 2.5rem 2.5rem;
	width: 92%;
	max-width: 500px;
	position: relative;
	z-index: 1;
	transform: scale(0.9) translateY(30px);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 25px 60px -15px rgba(0, 77, 80, 0.3);
	overflow: hidden;
}

/* Elegant brand top line */
.cta-modal__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.cta-modal.is-active .cta-modal__card {
	transform: scale(1) translateY(0);
}

.cta-modal__close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: #f1f5f9;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 1.5rem;
	color: #64748b;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.3s ease;
	line-height: 1;
}

.cta-modal__close:hover {
	background-color: #fee2e2;
	color: #ef4444;
	transform: rotate(90deg);
}

.cta-modal__title {
	font-family: var(--font-title);
	font-size: 1.8rem;
	color: var(--secondary);
	font-weight: 800;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.cta-modal__subtitle {
	color: #64748b;
	font-size: 0.95rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.cta-modal__form .form-group {
	margin-bottom: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	text-align: left;
}

.cta-modal__form label {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.cta-modal__form input,
.cta-modal__form textarea {
	width: 100%;
	padding: 0.8rem 1.1rem;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	font-size: 0.95rem;
	color: var(--text-dark);
	background-color: #f8fafc;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	font-family: var(--font-body);
}

.cta-modal__form input::placeholder,
.cta-modal__form textarea::placeholder {
	color: #94a3b8;
}

.cta-modal__form input:focus,
.cta-modal__form textarea:focus {
	border-color: var(--primary);
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(0, 144, 152, 0.15);
	outline: none;
}

/* Premium gradient pill button */
.cta-modal__form .btn-block {
	width: 100%;
	padding: 1rem;
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
	border: none;
	border-radius: 50px;
	box-shadow: 0 4px 12px rgba(0, 144, 152, 0.2);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	margin-top: 0.5rem;
}

.cta-modal__form .btn-block:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 144, 152, 0.35);
}

.cta-modal__form .btn-block:active {
	transform: translateY(0);
}

.cta-modal__success {
	text-align: center;
	padding: 2.5rem 0 1.5rem;
}

.success-icon {
	width: 68px;
	height: 68px;
	background: #10b981;
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
	animation: pulseModalSuccess 2s infinite;
}

@keyframes pulseModalSuccess {
	0% {
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
	}
}

.cta-modal__success h4 {
	font-family: var(--font-title);
	font-size: 1.5rem;
	color: var(--secondary);
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.cta-modal__success p {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ==========================================================================
   PAGINATION STYLING (PREMIUM DESIGN)
   ========================================================================== */
.load-more-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3.5rem;
	margin-bottom: 0;
}

.load-more-container .page-numbers {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	margin: 0 5px;
	border-radius: 8px;
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	color: var(--text-dark);
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.load-more-container .page-numbers:hover {
	border-color: var(--primary);
	color: var(--primary);
	background-color: #f0fdfa;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 144, 152, 0.1);
}

.load-more-container .page-numbers.current {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	box-shadow: 0 4px 12px rgba(0, 144, 152, 0.2);
	pointer-events: none;
}

.load-more-container .page-numbers.dots {
	background-color: transparent;
	border-color: transparent;
	color: var(--text-muted);
	pointer-events: none;
	box-shadow: none;
}

.load-more-container .page-numbers.next,
.load-more-container .page-numbers.prev {
	padding: 0 18px;
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	font-weight: 600;
}

.load-more-container .page-numbers.next:hover,
.load-more-container .page-numbers.prev:hover {
	background-color: var(--primary);
	color: var(--white);
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(0, 144, 152, 0.2);
}

/* ==========================================================================
   CUSTOM UI TOAST ALERTS
   ========================================================================== */
.mt-toast-container {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-width: 380px;
	width: calc(100% - 2rem);
	pointer-events: none;
}

.mt-toast {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(12px);
	border-radius: 12px;
	padding: 1rem 1.25rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	gap: 0.85rem;
	border-left: 5px solid var(--primary);
	transform: translateY(20px) scale(0.95);
	opacity: 0;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: auto;
	font-family: var(--font-body);
}

.mt-toast--show {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.mt-toast__icon {
	font-size: 1.4rem;
	flex-shrink: 0;
}

.mt-toast__msg {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.4;
}

.mt-toast--warning {
	border-left-color: #f59e0b;
	background: #fffbeb;
}
.mt-toast--warning .mt-toast__msg {
	color: #92400e;
}

.mt-toast--error {
	border-left-color: #ef4444;
	background: #fef2f2;
}
.mt-toast--error .mt-toast__msg {
	color: #991b1b;
}

.mt-toast--success {
	border-left-color: #10b981;
	background: #ecfdf5;
}
.mt-toast--success .mt-toast__msg {
	color: #065f46;
}

.mt-toast--loading {
	border-left-color: var(--primary);
	background: #e0f2fe;
}
.mt-toast--loading .mt-toast__msg {
	color: #0369a1;
}

/* WP Editor Content Universal Styling */
.wp-editor-content {
	line-height: 1.8;
	color: #334155;
	font-size: 1.05rem;
}
.wp-editor-content h1,
.wp-editor-content h2,
.wp-editor-content h3,
.wp-editor-content h4 {
	color: #0f172a;
	font-weight: 800;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
.wp-editor-content h2 {
	font-size: 1.6rem;
	border-bottom: 2px solid #f1f5f9;
	padding-bottom: 0.5rem;
}
.wp-editor-content p {
	margin-bottom: 1.25rem;
}
.wp-editor-content ul,
.wp-editor-content ol {
	margin-bottom: 1.5rem;
	padding-left: 1.75rem;
}
.wp-editor-content li {
	margin-bottom: 0.5rem;
}
.wp-editor-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.wp-editor-content th,
.wp-editor-content td {
	padding: 0.85rem 1rem;
	border: 1px solid #e2e8f0;
	text-align: left;
}
.wp-editor-content th {
	background: #f8fafc;
	font-weight: 700;
	color: #1e293b;
}
