/* ============================================
   AI Trip Planner - Frontend Styles
   Modern & Contemporary Design System
   ============================================ */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
}

:root {
	--primary-color: #6366f1;
	--primary-light: #818cf8;
	--primary-dark: #4f46e5;
	--secondary-color: #06b6d4;
	--accent-color: #f97316;
	--danger-color: #ef4444;
	--warning-color: #f59e0b;
	--success-color: #10b981;
	--light-color: #f8fafc;
	--dark-color: #0f172a;
	--text-gray: #64748b;
	--border-color: #e2e8f0;
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
	--shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   SITE-WIDE HEADER
   ============================================ */

.travel-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 10px 20px;
}

.travel-site-header-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.travel-logo-link {
	display: inline-block;
	text-decoration: none;
	line-height: 0;
}

.travel-site-logo {
	height: 50px;
	width: auto;
	display: block;
}

/* Ensure body content doesn't hide under fixed header */
body {
	padding-top: 70px !important;
}

/* WordPress admin bar adjustment */
.admin-bar .travel-site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .travel-site-header {
		top: 46px;
	}

	.travel-site-logo {
		height: 40px;
	}

	.travel-site-header {
		padding: 8px 15px;
	}

	body {
		padding-top: 56px !important;
	}
}

/* ============================================
   MODERN TRIP DISPLAY STYLES
   ============================================ */

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes tabSlide {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Trip Hero Header */
.trip-hero-header {
	position: relative;
	margin: 40px 0 60px;
	padding: 60px 40px;
	border-radius: 20px;
	overflow: hidden;
	text-align: center;
	animation: slideInDown 0.6s ease-out;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	z-index: 0;
}

.hero-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 1;
}

.hero-background::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	filter: blur(40px);
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-title {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	color: white;
	margin-bottom: 12px;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

.hero-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	font-weight: 500;
}

/* Tab Navigation */
.trip-tabs-navigation {
	display: flex;
	gap: 0;
	background: white;
	border-radius: 12px;
	padding: 8px;
	margin-bottom: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.trip-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	color: #64748b;
	transition: all 0.3s ease;
	white-space: nowrap;
	border-radius: 8px;
	position: relative;
}

.trip-tab:hover {
	background: rgba(99, 102, 241, 0.05);
	color: #6366f1;
}

.trip-tab.active {
	background: #6366f1;
	color: white;
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.tab-icon {
	font-size: 18px;
	display: inline-flex;
}

.tab-label {
	display: inline;
}

/* Budget Summary Section */
.budget-summary-section {
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	border-radius: 16px;
	padding: 40px;
	margin-bottom: 48px;
	border: 1px solid #e2e8f0;
}

.budget-summary-header {
	text-align: center;
	margin-bottom: 40px;
}

.budget-summary-title {
	font-size: 28px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}

.budget-summary-subtitle {
	font-size: 16px;
	color: #64748b;
	margin: 0;
	font-weight: 500;
}

/* Total Budget Card */
.total-budget-modern {
	background: linear-gradient(135deg, #6366f1, #818cf8);
	border-radius: 16px;
	padding: 40px;
	color: white;
	text-align: center;
	margin-bottom: 32px;
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.total-label {
	font-size: 16px;
	font-weight: 600;
	opacity: 0.9;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
}

.total-amount {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 12px;
	letter-spacing: -1px;
}

.total-duration {
	font-size: 14px;
	opacity: 0.85;
	margin: 0;
}

/* Budget Cards Grid */
.budget-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.budget-card-modern {
	background: white;
	border-radius: 12px;
	padding: 28px;
	border: 2px solid #e2e8f0;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.budget-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #6366f1, #06b6d4);
}

.budget-card-modern.accommodation::before {
	background: #06b6d4;
}

.budget-card-modern.transport::before {
	background: #f59e0b;
}

.budget-card-modern.food::before {
	background: #10b981;
}

.budget-card-modern.activities::before {
	background: #f97316;
}

.budget-card-modern:hover {
	border-color: #6366f1;
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(99, 102, 241, 0.15);
}

.budget-icon {
	font-size: 32px;
	margin-bottom: 12px;
	display: block;
}

.budget-label {
	font-size: 13px;
	font-weight: 700;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.budget-amount-large {
	font-size: 36px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
	line-height: 1;
}

.budget-per-unit {
	font-size: 13px;
	color: #6366f1;
	font-weight: 600;
	margin-bottom: 12px;
}

.budget-details {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #e2e8f0;
}

/* Tab Content */
.trip-content {
	position: relative;
}

.trip-tab-panel {
	display: none;
	animation: tabSlide 0.3s ease-out;
}

.trip-tab-panel.active {
	display: block;
}

.tab-panel-header {
	margin-bottom: 40px;
}

.tab-panel-header h2 {
	font-size: 32px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}

.tab-panel-subtitle {
	font-size: 16px;
	color: #64748b;
	margin: 0;
	font-weight: 500;
}

/* Itinerary Destination Image */
.itinerary-destination-image {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin-bottom: 40px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	animation: fadeIn 0.6s ease-out;
}

.itinerary-destination-image .destination-photo {
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.itinerary-destination-image:hover .destination-photo {
	transform: scale(1.02);
}

.itinerary-destination-image .image-attribution {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
	padding: 20px 24px 16px;
	color: white;
	font-size: 13px;
	backdrop-filter: blur(4px);
}

.itinerary-destination-image .photo-credit {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	color: rgba(255, 255, 255, 0.95);
}

.itinerary-destination-image .photographer-link {
	color: white;
	text-decoration: none;
	font-weight: 600;
	padding: 2px 8px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	transition: all 0.3s ease;
	display: inline-block;
}

.itinerary-destination-image .photographer-link:hover {
	background: rgba(255, 255, 255, 0.25);
	text-decoration: none;
	transform: translateY(-1px);
}

/* Itinerary Timeline */
.itinerary-timeline {
	position: relative;
	padding: 20px 0;
}

.timeline-item {
	display: flex;
	gap: 30px;
	margin-bottom: 32px;
	position: relative;
}

.timeline-marker {
	position: relative;
	width: 40px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.timeline-dot {
	width: 16px;
	height: 16px;
	background: linear-gradient(135deg, #6366f1, #06b6d4);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
	position: relative;
	z-index: 2;
}

.timeline-line {
	position: absolute;
	top: 28px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: calc(100% + 32px);
	background: linear-gradient(180deg, #6366f1, #06b6d4, transparent);
	z-index: 1;
}

.timeline-item:last-child .timeline-line {
	display: none;
}

.timeline-content {
	flex: 1;
	padding: 20px;
	background: white;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.timeline-content:hover {
	border-color: #6366f1;
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
	transform: translateY(-2px);
}

.day-header-modern {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding-bottom: 16px;
	border-bottom: 1px solid #e2e8f0;
	margin-bottom: 16px;
}

.day-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: left;
}

.day-number {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
}

.day-location {
	font-size: 14px;
	color: #64748b;
	font-weight: 500;
}

.day-toggle-icon {
	font-size: 18px;
	color: #94a3b8;
	transition: transform 0.3s ease;
}

.timeline-content.expanded .day-toggle-icon {
	transform: rotate(180deg);
}

.day-activities {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.activity-period {
	padding: 16px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(6, 182, 212, 0.04));
	border-left: 3px solid #6366f1;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.activity-period:hover {
	border-left-color: #06b6d4;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(6, 182, 212, 0.08));
}

.period-time {
	font-size: 13px;
	font-weight: 700;
	color: #6366f1;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.activity-title {
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 6px;
}

/* Hero Actions Container */
.hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 20px;
	flex-wrap: wrap;
	align-items: center;
}

/* Google Maps Link Styling */
.activity-title-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: inherit;
	transition: var(--transition-fast);
}

.activity-title-link:hover .activity-title {
	color: var(--primary-color);
	text-decoration: underline;
}

.activity-title-link .activity-title {
	margin-bottom: 0;
}

.activity-title-link .maps-icon {
	display: inline-block;
	font-size: 18px;
	opacity: 0.7;
	transition: var(--transition-fast);
	flex-shrink: 0;
}

.activity-title-link:hover .maps-icon {
	opacity: 1;
	transform: scale(1.15);
}

/* Map Button in Hero */
.action-btn-modern.btn-map {
	text-decoration: none;
	display: inline-flex;
}

.action-btn-modern.btn-map:hover {
	background-color: var(--primary-color);
	color: white;
	transform: translateY(-2px);
}

.activity-details {
	font-size: 14px;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

/* Budget Cards - Modern */
.budget-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}

.budget-card-modern {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.budget-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #6366f1, #06b6d4);
}

.budget-card-modern:hover {
	border-color: #6366f1;
	box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12);
	transform: translateY(-4px);
}

.budget-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.budget-icon {
	font-size: 24px;
}

.budget-label {
	font-size: 14px;
	font-weight: 700;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.budget-amount-large {
	font-size: 36px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
	line-height: 1;
}

.budget-percentage {
	font-size: 13px;
	color: #6366f1;
	font-weight: 600;
	margin-bottom: 12px;
}

.progress-bar {
	width: 100%;
	height: 6px;
	background: #e2e8f0;
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 16px;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #6366f1, #06b6d4);
	border-radius: 3px;
	transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.budget-details-modern {
	font-size: 13px;
	color: #64748b;
	line-height: 1.6;
	padding-top: 12px;
	border-top: 1px solid #f1f5f9;
}

/* Total Budget Modern */
.total-budget-modern {
	background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
	padding: 40px;
	border-radius: 16px;
	color: white;
	text-align: center;
	box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
	animation: slideInDown 0.6s ease-out 0.2s both;
}

.total-budget-inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.total-label {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.9;
}

.total-amount {
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
}

/* Info Cards - Modern */
.info-card-modern {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 24px;
	transition: all 0.3s ease;
}

.info-card-modern:hover {
	border-color: #6366f1;
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.info-card-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 16px;
}

.info-card-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.info-item {
	display: flex;
	gap: 8px;
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
}

.info-item strong {
	color: #0f172a;
	flex-shrink: 0;
	min-width: 100px;
}

.info-section {
	margin-bottom: 40px;
}

.info-section h3 {
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 24px;
}

/* Places Grid Modern */
.places-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}

.place-card-modern {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 0;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.place-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #f97316, #f59e0b);
	z-index: 2;
}

.place-card-modern:hover {
	border-color: #f97316;
	box-shadow: 0 12px 32px rgba(249, 115, 22, 0.12);
	transform: translateY(-4px);
}

.place-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: linear-gradient(135deg, #6366f1, #06b6d4);
	display: flex;
	align-items: center;
	justify-content: center;
}

.place-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.place-card-modern:hover .place-image img {
	transform: scale(1.05);
}

.place-icon {
	font-size: 32px;
	margin: 16px 0 12px;
	display: inline-block;
}

.place-name {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
	padding: 0 24px;
	margin-top: 16px;
}

.place-description {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 12px;
	min-height: 42px;
	padding: 0 24px;
	flex-grow: 1;
}

.place-duration {
	font-size: 13px;
	color: #f97316;
	font-weight: 600;
	padding: 12px 24px;
	border-top: 1px solid #f1f5f9;
}

/* FAQ Accordion Modern */
.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item-modern {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item-modern.open {
	border-color: #6366f1;
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.faq-question-modern {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 24px;
	background: white;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	transition: all 0.3s ease;
}

.faq-question-modern:hover {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(6, 182, 212, 0.04));
}

.faq-item-modern.open .faq-question-modern {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(6, 182, 212, 0.08));
	color: #6366f1;
}

.faq-toggle-icon {
	font-size: 20px;
	color: #6366f1;
	font-weight: 700;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.faq-item-modern.open .faq-toggle-icon {
	transform: rotate(45deg);
}

.faq-answer-modern {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-modern.open .faq-answer-modern {
	max-height: 500px;
	padding: 0 24px 20px;
}

.faq-answer-content {
	font-size: 15px;
	color: #64748b;
	line-height: 1.7;
}

/* Action Buttons Modern */
.trip-actions-modern {
	display: flex;
	gap: 16px;
	margin-top: 60px;
	margin-bottom: 40px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Premium CTA Styles */
@keyframes gradientShimmer {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes borderGradientFlow {
	0% {
		--border-angle: 0deg;
	}

	100% {
		--border-angle: 360deg;
	}
}

.trip-planner-cta-section {
	text-align: center;
	margin-bottom: 60px;
	animation: slideInUp 0.8s ease-out;
	padding: 80px 20px 60px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 250, 252, 0.3) 100%);
	border-radius: 24px;
	backdrop-filter: blur(8px);
}

.cta-content {
	margin-bottom: 48px;
}

.trip-planner-cta-section h1 {
	font-size: 48px;
	font-weight: 800;
	background: linear-gradient(135deg, #1a1a2e 0%, #6366f1 50%, #06b6d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 16px;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

.trip-planner-cta-section p {
	font-size: 18px;
	color: #64748b;
	font-weight: 500;
	margin: 0;
	max-width: 500px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Premium Input Form - Redesigned */
.trip-planner-form-cta {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 800px;
	position: relative;
	z-index: 10;
}

#form-messages {
	margin-top: 20px;
}

.premium-input-wrapper {
	display: flex;
	align-items: center;
	gap: 16px;
	background: white;
	padding: 8px 8px 8px 24px;
	border-radius: 9999px;
	position: relative;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
	width: 100%;
	transition: all 0.3s ease;
}

.premium-input-wrapper:focus-within {
	box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15), 0 10px 20px rgba(99, 102, 241, 0.1);
	transform: translateY(-2px);
}

.input-content {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
	min-width: 0;
}

.sparkle-icon {
	font-size: 24px;
	color: var(--primary-color);
	opacity: 0.9;
	display: inline-flex;
}

.premium-input {
	flex: 1;
	border: none !important;
	background: transparent;
	font-size: 18px;
	font-weight: 500;
	color: var(--dark-color);
	padding: 12px 0;
	outline: none !important;
	box-shadow: none !important;
	font-family: inherit;
	min-width: 0;
	-webkit-appearance: none;
	appearance: none;
}

.premium-input:focus {
	outline: none !important;
	border: none !important;
	box-shadow: none !important;
}

.premium-input::placeholder {
	color: #94a3b8;
	font-weight: 400;
}

.premium-btn {
	flex-shrink: 0;
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 16px 32px;
	border-radius: 9999px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
	white-space: nowrap;
}

.premium-btn:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

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

.premium-btn:disabled {
	background: #cbd5e1;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.arrow-icon {
	font-size: 18px;
	font-weight: bold;
	display: inline-flex;
	transition: transform 0.3s ease;
}

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

/* Hidden utility */
.hidden {
	display: none !important;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
	color: var(--dark-color);
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	min-height: 100vh;
}

/* Container Styles */
.ai-trip-planner-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.ai-trip-planner-error {
	padding: 20px 24px;
	background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
	color: #7f1d1d;
	border-radius: 12px;
	border-left: 4px solid #dc2626;
	font-weight: 500;
	backdrop-filter: blur(10px);
}

/* Form Section */
.trip-planner-form-section {
	margin-bottom: 50px;
	animation: slideInUp 0.6s ease-out;
}

.trip-planner-form-section h2 {
	font-size: 36px;
	font-weight: 800;
	color: var(--dark-color);
	margin-bottom: 16px;
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.form-description {
	font-size: 16px;
	color: var(--text-gray);
	margin-bottom: 32px;
	line-height: 1.6;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Form Styles */
.trip-planner-form {
	background: white;
	padding: 40px;
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
	backdrop-filter: blur(10px);
}

.form-group {
	margin-bottom: 28px;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 10px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-control {
	width: 100%;
	padding: 14px 18px;
	border: 1.5px solid var(--border-color);
	border-radius: 10px;
	font-size: 16px;
	font-family: inherit;
	transition: var(--transition);
	background-color: #fff;
}

.form-control:hover {
	border-color: var(--primary-light);
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
	background-color: #fff;
}

.form-control::placeholder {
	color: #cbd5e1;
}

.form-text {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	color: var(--text-gray);
}

/* Button Styles */
.btn {
	padding: 14px 28px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	letter-spacing: 0.3px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
	color: white;
	width: 100%;
	min-height: 52px;
	border: none;
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
	transition: left 0.3s ease;
	z-index: -1;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-xl);
}

.btn-primary:hover::before {
	left: 0;
}

.btn-primary:active {
	transform: translateY(-1px);
}

.btn-primary:disabled {
	background: #cbd5e1;
	cursor: not-allowed;
	transform: none;
	box-shadow: var(--shadow);
}

.btn-secondary {
	background-color: var(--text-gray);
	color: white;
	padding: 10px 16px;
	font-size: 14px;
}

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

.btn-sm {
	padding: 10px 14px;
	font-size: 13px;
	min-height: auto;
}

/* Loading Spinner */
.spinner {
	width: 24px;
	height: 24px;
	animation: rotate 2s linear infinite;
}

.spinner .path {
	stroke: white;
	stroke-linecap: round;
	animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes dash {
	0% {
		stroke-dasharray: 1, 150;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -35;
	}

	100% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -124;
	}
}

.btn-spinner.hidden {
	display: none;
}

.btn-text.hidden {
	display: none;
}

/* Progress Bar */
.trip-progress-container {
	width: 100%;
	max-width: 600px;
	margin: 24px auto 0;
	padding: 0 20px;
	box-sizing: border-box;
}

.trip-progress-container.hidden {
	display: none;
}

.trip-progress-bar {
	width: 100%;
	height: 8px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.trip-progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
	border-radius: 4px;
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.trip-progress-fill::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.trip-progress-text {
	text-align: center;
	margin-top: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	letter-spacing: 0.3px;
}

/* Message Styles */
.form-messages,
#form-messages {
	padding: 18px 20px;
	border-radius: 10px;
	margin-top: 20px;
	border-left: 4px solid;
	word-wrap: break-word;
	animation: slideInDown 0.3s ease-out;
}

.form-messages.hidden,
#form-messages.hidden {
	display: none;
}

.form-messages.success,
#form-messages.success {
	background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
	color: #166534;
	border-color: var(--success-color);
}

.form-messages.error,
#form-messages.error {
	background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
	color: #991b1b;
	border-color: var(--danger-color);
}

.form-messages.warning,
#form-messages.warning {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #92400e;
	border-color: var(--warning-color);
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Results Section */
.trip-results {
	padding: 0;
}

.trip-results.hidden {
	display: none;
}

.trip-header {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
	color: white;
	padding: 50px 40px;
	border-radius: 16px 16px 0 0;
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}

.trip-header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	z-index: 0;
}

.trip-header::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 50%;
	z-index: 0;
}

.trip-header>* {
	position: relative;
	z-index: 1;
}

.trip-header h1 {
	font-size: 40px;
	font-weight: 800;
	margin-bottom: 12px;
	letter-spacing: -1px;
}

.trip-header h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
}

.trip-header p {
	font-size: 16px;
	opacity: 0.9;
	margin: 0;
	font-weight: 500;
}

.trip-badge {
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Navigation Tabs */
.trip-nav-tabs {
	display: flex;
	gap: 8px;
	border-bottom: 1px solid var(--border-color);
	background-color: white;
	overflow-x: auto;
	padding: 12px 40px;
	border-radius: 0;
	-webkit-overflow-scrolling: touch;
}

.trip-nav-tabs::-webkit-scrollbar {
	height: 4px;
}

.trip-nav-tabs::-webkit-scrollbar-track {
	background: transparent;
}

.trip-nav-tabs::-webkit-scrollbar-thumb {
	background: var(--border-color);
	border-radius: 2px;
}

.trip-nav-tabs .tab-link {
	flex: 0 0 auto;
	padding: 12px 24px;
	text-align: center;
	cursor: pointer;
	border: none;
	background-color: transparent;
	color: var(--text-gray);
	font-weight: 600;
	font-size: 14px;
	transition: var(--transition-fast);
	min-width: 120px;
	border-bottom: 2px solid transparent;
	position: relative;
	white-space: nowrap;
}

.trip-nav-tabs .tab-link:hover {
	color: var(--primary-color);
	background-color: rgba(99, 102, 241, 0.05);
	border-radius: 8px;
}

.trip-nav-tabs .tab-link.active {
	color: white;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
	border-bottom: 2px solid transparent;
	border-radius: 8px;
}

/* Tab Content */
.trip-content {
	background-color: white;
	padding: 40px;
	border-radius: 0 0 16px 16px;
	border: 1px solid var(--border-color);
	border-top: none;
}

.trip-content h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
	color: var(--dark-color);
}

.trip-content h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--dark-color);
	margin-top: 32px;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
	animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.trip-section {
	margin-bottom: 60px;
	animation: fadeIn 0.4s ease;
}

.trip-section:last-child {
	margin-bottom: 0;
}

/* Itinerary Styles */
.itinerary-day {
	margin-bottom: 16px;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	overflow: hidden;
	transition: var(--transition);
}

.itinerary-day:hover {
	border-color: var(--primary-light);
	box-shadow: var(--shadow);
}

.day-header {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(6, 182, 212, 0.02) 100%);
	padding: 20px 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	transition: var(--transition-fast);
}

.day-header:hover {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.day-header.active {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
}

.day-title {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.day-location {
	font-size: 14px;
	opacity: 0.7;
	margin-left: 12px;
	font-weight: 500;
}

.day-icon {
	transition: var(--transition-fast);
	opacity: 0.6;
}

.day-header.active .day-icon {
	transform: rotate(180deg);
	opacity: 1;
}

.day-content {
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	background-color: #f8fafc;
}

.day-content.active {
	max-height: 1500px;
	padding: 24px;
}

.activity-period {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border-color);
}

.activity-period:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.period-time {
	font-size: 12px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.activity-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 8px;
}

.activity-details {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.6;
}

/* Budget Breakdown Styles */
.budget-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 32px;
}

.budget-card {
	background: white;
	padding: 28px 24px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	border-top: 4px solid var(--primary-color);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.budget-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
	border-radius: 50%;
	z-index: 0;
}

.budget-card>* {
	position: relative;
	z-index: 1;
}

.budget-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-light);
}

.budget-card.accommodation {
	border-top-color: #06b6d4;
}

.budget-card.accommodation:hover {
	border-top-color: #0891b2;
}

.budget-card.transport {
	border-top-color: #f59e0b;
}

.budget-card.transport:hover {
	border-top-color: #d97706;
}

.budget-card.food {
	border-top-color: #10b981;
}

.budget-card.food:hover {
	border-top-color: #059669;
}

.budget-card.activities {
	border-top-color: #a855f7;
}

.budget-card.activities:hover {
	border-top-color: #9333ea;
}

.budget-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-gray);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.budget-amount {
	font-size: 32px;
	font-weight: 800;
	color: var(--dark-color);
	margin-bottom: 12px;
}

.budget-details {
	font-size: 13px;
	color: var(--text-gray);
	line-height: 1.5;
}

.total-budget {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
	color: white;
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	margin-top: 20px;
	position: relative;
	overflow: hidden;
}

.total-budget::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	z-index: 0;
}

.total-budget>* {
	position: relative;
	z-index: 1;
}

.total-budget-label {
	font-size: 14px;
	font-weight: 600;
	opacity: 0.9;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.total-budget-amount {
	font-size: 44px;
	font-weight: 800;
	letter-spacing: -1px;
}

/* FAQ Styles */
.faq-item {
	margin-bottom: 12px;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	overflow: hidden;
	transition: var(--transition);
}

.faq-item:hover {
	border-color: var(--primary-light);
	box-shadow: var(--shadow);
}

.faq-question {
	padding: 20px 24px;
	background-color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	color: var(--dark-color);
	transition: var(--transition-fast);
}

.faq-question:hover {
	background-color: rgba(99, 102, 241, 0.03);
}

.faq-question.active {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
	color: var(--primary-dark);
}

.faq-icon {
	transition: var(--transition-fast);
	color: var(--primary-color);
	opacity: 0.6;
}

.faq-question.active .faq-icon {
	transform: rotate(180deg);
	opacity: 1;
}

.faq-answer {
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	background-color: #f8fafc;
}

.faq-answer.active {
	padding: 20px 24px;
	max-height: 500px;
}

.faq-text {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.7;
}

/* Best Time & Places Styles */
.info-box {
	background: white;
	padding: 28px;
	border-radius: 12px;
	border-left: 4px solid var(--secondary-color);
	margin-bottom: 32px;
	border: 1px solid var(--border-color);
	border-left: 4px solid var(--secondary-color);
	transition: var(--transition);
}

.info-box:hover {
	border-color: var(--secondary-color);
	box-shadow: var(--shadow);
}

.info-box-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 14px;
}

.info-box-content {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.7;
}

.info-box-content strong {
	color: var(--dark-color);
	font-weight: 600;
}

.places-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.place-card {
	background: white;
	padding: 0;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.place-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
	border-radius: 50%;
	z-index: 0;
}

.place-card>* {
	position: relative;
	z-index: 1;
}

.place-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary-light);
}

.place-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: linear-gradient(135deg, #6366f1, #06b6d4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	flex-shrink: 0;
}

.place-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	display: block;
}

.place-card:hover .place-image img {
	transform: scale(1.05);
}

.place-name {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 12px;
	padding: 16px 24px 0;
}

.place-description {
	font-size: 14px;
	color: var(--text-gray);
	margin-bottom: 16px;
	line-height: 1.6;
	padding: 0 24px;
	flex-grow: 1;
}

.place-duration {
	font-size: 13px;
	font-weight: 700;
	color: var(--primary-color);
	padding: 0 24px 16px;
	border-top: 1px solid var(--border-color);
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-top: auto;
}

/* Action Buttons */
.trip-actions {
	display: flex;
	gap: 16px;
	margin-top: 40px;
	flex-wrap: wrap;
	padding-top: 32px;
	border-top: 1px solid var(--border-color);
}

.action-btn {
	flex: 1;
	min-width: 160px;
	padding: 14px 24px;
	border: 1.5px solid var(--border-color);
	background-color: white;
	color: var(--dark-color);
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	transition: var(--transition);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	letter-spacing: 0.3px;
}

.action-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	background-color: rgba(99, 102, 241, 0.05);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.view-trip-btn {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
	color: white;
	border-color: transparent;
}

.view-trip-btn:hover {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
	color: white;
	border-color: transparent;
	box-shadow: var(--shadow-lg);
}

/* Modern Action Buttons */
.action-btn-modern {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	background: white;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	color: #0f172a;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
}

.action-btn-modern:hover {
	border-color: #6366f1;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(6, 182, 212, 0.05));
	color: #6366f1;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(99, 102, 241, 0.12);
}

.btn-icon {
	font-size: 18px;
	display: inline-flex;
}

.btn-text {
	display: inline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.ai-trip-planner-container {
		padding: 24px 16px;
	}

	.trip-planner-cta-section {
		padding: 60px 20px 50px;
	}

	.trip-planner-cta-section h1 {
		font-size: 36px;
	}

	.trip-planner-cta-section p {
		font-size: 16px;
	}

	.premium-input-wrapper {
		flex-direction: column;
		gap: 12px;
		border-radius: 20px;
		padding: 20px;
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.08);
	}

	.premium-input-wrapper:focus-within {
		box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2), 0 8px 16px rgba(99, 102, 241, 0.15);
	}

	.input-content {
		width: 100%;
		gap: 12px;
	}

	.sparkle-icon {
		font-size: 22px;
		flex-shrink: 0;
	}

	.premium-input {
		font-size: 16px;
		padding: 14px 0;
		min-height: 44px;
		-webkit-text-size-adjust: 100%;
	}

	.premium-input::placeholder {
		font-size: 15px;
	}

	.premium-btn {
		width: 100%;
		padding: 16px 24px;
		min-height: 52px;
		font-size: 16px;
		border-radius: 14px;
	}

	.trip-planner-form-section h2 {
		font-size: 28px;
	}

	.trip-planner-form {
		padding: 28px 20px;
	}

	.trip-header {
		padding: 36px 24px;
	}

	.trip-header h1 {
		font-size: 28px;
	}

	.trip-header h2 {
		font-size: 24px;
	}

	.trip-content {
		padding: 28px 20px;
	}

	.trip-content h2 {
		font-size: 20px;
	}

	.trip-nav-tabs {
		padding: 8px 16px;
		gap: 4px;
	}

	.trip-nav-tabs .tab-link {
		padding: 10px 16px;
		min-width: 100px;
		font-size: 13px;
	}

	.budget-grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
		gap: 16px;
	}

	.budget-card {
		padding: 20px 16px;
	}

	.total-budget-amount {
		font-size: 32px;
	}

	.places-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.place-card {
		padding: 20px;
	}

	.trip-actions {
		flex-direction: column;
		gap: 12px;
	}

	.action-btn {
		min-width: 100%;
		padding: 12px 20px;
	}

	.form-control {
		font-size: 16px;
	}

	.itinerary-day {
		margin-bottom: 12px;
	}

	.day-header {
		padding: 16px 18px;
	}

	.day-content.active {
		padding: 18px;
	}

	.faq-question {
		padding: 16px 18px;
	}

	.faq-answer.active {
		padding: 16px 18px;
	}
}

@media (max-width: 480px) {
	.ai-trip-planner-container {
		padding: 16px 12px;
	}

	.trip-planner-cta-section {
		padding: 50px 16px 40px;
	}

	.trip-planner-cta-section h1 {
		font-size: 28px;
	}

	.trip-planner-cta-section p {
		font-size: 14px;
	}

	.premium-input-wrapper {
		padding: 18px;
		gap: 14px;
		border-radius: 18px;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 3px 8px rgba(0, 0, 0, 0.08);
	}

	.premium-input-wrapper:focus-within {
		box-shadow: 0 18px 35px rgba(99, 102, 241, 0.25), 0 6px 14px rgba(99, 102, 241, 0.18);
		transform: translateY(-1px);
	}

	.input-content {
		gap: 10px;
	}

	.premium-input {
		font-size: 16px;
		padding: 12px 0;
		min-height: 48px;
		-webkit-text-size-adjust: 100%;
	}

	.premium-input::placeholder {
		font-size: 14px;
	}

	.sparkle-icon {
		font-size: 20px;
	}

	.premium-btn {
		padding: 14px 20px;
		font-size: 15px;
		min-height: 50px;
		border-radius: 12px;
	}

	.trip-planner-form-section h2 {
		font-size: 24px;
	}

	.trip-planner-form {
		padding: 20px 16px;
	}

	.trip-header {
		padding: 28px 16px;
	}

	.trip-header h1 {
		font-size: 22px;
	}

	.trip-header h2 {
		font-size: 20px;
	}

	.trip-badge {
		font-size: 12px;
		padding: 6px 12px;
	}

	.trip-content {
		padding: 20px 16px;
	}

	.trip-content h2 {
		font-size: 18px;
	}

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

	.budget-card {
		padding: 16px;
	}

	.budget-amount {
		font-size: 24px;
	}

	.total-budget {
		padding: 28px 20px;
	}

	.total-budget-amount {
		font-size: 28px;
	}

	.activity-period {
		margin-bottom: 16px;
	}

	.btn {
		padding: 12px 16px;
		font-size: 14px;
	}

	.btn-primary {
		min-height: 48px;
	}

	.trip-nav-tabs {
		padding: 8px 12px;
	}

	.trip-nav-tabs .tab-link {
		padding: 8px 12px;
		min-width: 90px;
		font-size: 12px;
	}

	.places-grid {
		gap: 12px;
	}

	.place-card {
		padding: 16px;
	}

	.place-name {
		font-size: 16px;
	}

	.info-box {
		padding: 20px;
	}

	.faq-question {
		padding: 14px 16px;
	}

	.faq-answer.active {
		padding: 14px 16px;
	}
}

/* Print Styles */
@media print {

	.trip-planner-form-section,
	.trip-actions {
		display: none;
	}

	.trip-results {
		box-shadow: none;
		padding: 0;
	}

	.trip-header,
	.trip-content {
		page-break-inside: avoid;
		box-shadow: none;
	}

	.trip-nav-tabs {
		display: none;
	}

	.tab-pane {
		display: block !important;
	}

	body {
		background-color: white;
	}
}

/* Accessibility Styles */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Breadcrumbs */
.trip-breadcrumbs {
	padding: 16px 0;
	margin-bottom: 24px;
}

.trip-breadcrumbs ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: var(--text-gray);
}

.trip-breadcrumbs li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.trip-breadcrumbs li:not(:last-child)::after {
	content: '›';
	color: var(--text-gray);
	font-size: 16px;
	opacity: 0.5;
}

.trip-breadcrumbs a {
	color: var(--text-gray);
	text-decoration: none;
	transition: var(--transition-fast);
}

.trip-breadcrumbs a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

.trip-breadcrumbs li:last-child span {
	color: var(--dark-color);
	font-weight: 600;
}

/* Focus Styles for Accessibility */
*:focus-visible {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
	border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* ============================================
   RESPONSIVE DESIGN - MODERN TRIP DISPLAY
   ============================================ */

@media (max-width: 1024px) {
	.trip-hero-header {
		padding: 48px 32px;
		margin: 30px 0 40px;
	}

	.hero-title {
		font-size: clamp(28px, 4vw, 40px);
	}

	.budget-cards-grid {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}

	.places-grid-modern {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}

	.trip-tabs-navigation {
		margin-bottom: 30px;
	}

	.tab-panel-header h2 {
		font-size: 28px;
	}

	.timeline-item {
		gap: 20px;
	}

	.timeline-content {
		padding: 16px;
	}
}

/* ============================================
   NEW CONTENT SECTIONS STYLES
   ============================================ */

/* Feature Highlights Section */
.features-highlights {
	margin: 60px 0;
	padding: 0 20px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.feature-card {
	background: white;
	padding: 32px 24px;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(99, 102, 241, 0.1);
	border-color: #6366f1;
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 16px;
	display: block;
}

.feature-title {
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 12px;
}

.feature-description {
	font-size: 15px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* Travel Inspiration Section */
.travel-inspiration {
	margin: 80px 0;
	padding: 60px 20px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(6, 182, 212, 0.03));
	border-radius: 24px;
}

.section-heading {
	font-size: 36px;
	font-weight: 800;
	text-align: center;
	color: #0f172a;
	margin-bottom: 12px;
}

.section-subtitle {
	font-size: 18px;
	text-align: center;
	color: #64748b;
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.inspiration-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.inspiration-card {
	background: white;
	padding: 32px 24px;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid #e2e8f0;
	cursor: pointer;
	position: relative;
}

.inspiration-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(99, 102, 241, 0.15);
	border-color: #6366f1;
}

.inspiration-image {
	font-size: 64px;
	margin-bottom: 20px;
	display: block;
}

.inspiration-title {
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}

.inspiration-detail {
	font-size: 16px;
	color: #64748b;
	margin-bottom: 20px;
	font-weight: 600;
}

.use-template-btn {
	background: linear-gradient(135deg, #6366f1, #06b6d4);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.use-template-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* How It Works Section */
.how-it-works {
	margin: 80px 0;
	padding: 0 20px;
}

.steps-timeline {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.step-item {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.step-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #6366f1, #06b6d4);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 800;
	flex-shrink: 0;
	box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.step-content {
	flex: 1;
	padding-top: 8px;
}

.step-title {
	font-size: 24px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}

.step-description {
	font-size: 16px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* Packing List Styles */
.packing-list-section {
	margin-top: 40px;
}

.packing-categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.packing-category {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	transition: all 0.3s ease;
}

.packing-category:hover {
	border-color: #6366f1;
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.packing-category-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.packing-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.packing-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	border-radius: 6px;
	transition: background 0.2s ease;
}

.packing-item:hover {
	background: rgba(99, 102, 241, 0.05);
}

.packing-checkbox {
	width: 20px;
	height: 20px;
	border: 2px solid #cbd5e1;
	border-radius: 4px;
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.packing-checkbox.checked {
	background: #6366f1;
	border-color: #6366f1;
	position: relative;
}

.packing-checkbox.checked::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 14px;
	font-weight: bold;
}

.packing-item-text {
	font-size: 15px;
	color: #475569;
	flex: 1;
}

/* Local Tips & Warnings */
.tips-section {
	margin-top: 40px;
}

.tip-card {
	background: white;
	border-left: 4px solid #06b6d4;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tip-card.warning {
	border-left-color: #f59e0b;
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(251, 191, 36, 0.05));
}

.tip-card.important {
	border-left-color: #ef4444;
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(248, 113, 113, 0.05));
}

.tip-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.tip-icon {
	font-size: 24px;
}

.tip-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

.tip-content {
	font-size: 15px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* Transportation Guide */
.transport-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 24px;
}

.transport-card {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	transition: all 0.3s ease;
}

.transport-card:hover {
	border-color: #06b6d4;
	box-shadow: 0 8px 24px rgba(6, 182, 212, 0.1);
	transform: translateY(-2px);
}

.transport-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.transport-icon {
	font-size: 32px;
}

.transport-name {
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

.transport-details {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
}

.transport-cost {
	display: inline-block;
	background: rgba(6, 182, 212, 0.1);
	color: #06b6d4;
	padding: 4px 12px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 13px;
	margin-top: 12px;
}

/* Emergency Info */
.emergency-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	margin-top: 24px;
}

.emergency-card {
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(248, 113, 113, 0.05));
	border: 2px solid #fecaca;
	border-radius: 12px;
	padding: 20px;
}

.emergency-title {
	font-size: 16px;
	font-weight: 700;
	color: #dc2626;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.emergency-number {
	font-size: 24px;
	font-weight: 800;
	color: #0f172a;
	margin: 8px 0;
}

.emergency-description {
	font-size: 14px;
	color: #64748b;
	margin: 0;
}

@media (max-width: 768px) {

	.trip-hero-header {
		padding: 40px 24px;
		margin: 20px 0 30px;
		border-radius: 16px;
	}

	.hero-title {
		font-size: clamp(24px, 3vw, 32px);
	}

	.hero-badge {
		font-size: 12px;
		padding: 5px 12px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	/* Tab Navigation Mobile */
	.trip-tabs-navigation {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		gap: 4px;
		padding: 6px;
		margin-bottom: 24px;
	}

	.trip-tab {
		padding: 10px 16px;
		font-size: 13px;
		gap: 6px;
		flex-shrink: 0;
	}

	.tab-label {
		display: none;
	}

	.trip-tab.active .tab-label {
		display: inline;
	}

	/* Tab Panel Mobile */
	.tab-panel-header {
		margin-bottom: 24px;
	}

	.tab-panel-header h2 {
		font-size: 24px;
	}

	.tab-panel-subtitle {
		font-size: 14px;
	}

	/* Timeline Mobile */
	.timeline-item {
		gap: 16px;
		margin-bottom: 24px;
	}

	.timeline-marker {
		width: 32px;
	}

	.timeline-dot {
		width: 12px;
		height: 12px;
	}

	.timeline-content {
		padding: 16px;
		border-radius: 10px;
	}

	.day-header-modern {
		padding-bottom: 12px;
		margin-bottom: 12px;
	}

	.day-number {
		font-size: 16px;
	}

	.day-location {
		font-size: 13px;
	}

	.activity-period {
		padding: 12px;
	}

	.activity-title {
		font-size: 15px;
	}

	.activity-details {
		font-size: 13px;
	}

	/* Budget Cards Mobile */
	.budget-cards-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.budget-card-modern {
		padding: 20px;
	}

	.budget-amount-large {
		font-size: 32px;
	}

	.budget-card-header {
		margin-bottom: 12px;
	}

	.total-budget-modern {
		padding: 32px 20px;
	}

	.total-amount {
		font-size: 40px;
	}

	/* Places Grid Mobile */
	.places-grid-modern {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.place-card-modern {
		padding: 20px;
	}

	/* FAQ Mobile */
	.faq-question-modern {
		padding: 16px 20px;
		font-size: 15px;
	}

	.faq-toggle-icon {
		font-size: 18px;
	}

	.faq-item-modern.open .faq-answer-modern {
		padding: 0 20px 16px;
	}

	.faq-answer-content {
		font-size: 14px;
	}

	/* Info Cards Mobile */
	.info-card-modern {
		padding: 20px;
	}

	.info-card-title {
		font-size: 16px;
	}

	.info-section h3 {
		font-size: 20px;
		margin-bottom: 16px;
	}

	/* Action Buttons Mobile */
	.trip-actions-modern {
		gap: 12px;
		margin-top: 40px;
		margin-bottom: 20px;
	}

	.action-btn-modern {
		flex: 1;
		min-width: 100px;
		padding: 12px 20px;
		font-size: 13px;
		gap: 8px;
	}

	.tab-icon {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.ai-trip-planner-container {
		padding: 16px;
	}

	.trip-hero-header {
		padding: 32px 16px;
		margin: 16px 0 24px;
		border-radius: 12px;
	}

	.hero-title {
		font-size: 22px;
	}

	.hero-subtitle {
		font-size: 14px;
	}

	.trip-tabs-navigation {
		gap: 2px;
		padding: 4px;
	}

	.trip-tab {
		padding: 8px 12px;
		font-size: 12px;
	}

	.tab-panel-header h2 {
		font-size: 20px;
	}

	.tab-panel-subtitle {
		font-size: 13px;
	}

	.timeline-item {
		gap: 12px;
	}

	.timeline-marker {
		width: 24px;
	}

	.timeline-dot {
		width: 10px;
		height: 10px;
	}

	.timeline-content {
		padding: 12px;
	}

	.day-number {
		font-size: 14px;
	}

	.day-location {
		font-size: 12px;
	}

	.activity-period {
		padding: 10px;
		margin-bottom: 8px;
	}

	.activity-title {
		font-size: 14px;
	}

	.activity-details {
		font-size: 12px;
	}

	.budget-card-modern {
		padding: 16px;
	}

	.budget-amount-large {
		font-size: 28px;
	}

	.total-budget-modern {
		padding: 24px 16px;
	}

	.total-amount {
		font-size: 32px;
	}

	.place-card-modern {
		padding: 16px;
	}

	.place-icon {
		font-size: 28px;
	}

	.place-name {
		font-size: 16px;
	}

	.place-description {
		font-size: 13px;
	}

	.info-card-modern {
		padding: 16px;
		margin-bottom: 16px;
	}

	.info-card-title {
		font-size: 15px;
		margin-bottom: 12px;
	}

	.info-item {
		font-size: 13px;
	}

	.faq-question-modern {
		padding: 14px 16px;
		font-size: 14px;
	}

	.faq-item-modern.open .faq-answer-modern {
		padding: 0 16px 14px;
	}

	.faq-answer-content {
		font-size: 13px;
	}

	.trip-actions-modern {
		gap: 8px;
		margin-top: 32px;
		margin-bottom: 16px;
	}

	.action-btn-modern {
		padding: 10px 16px;
		font-size: 12px;
		gap: 6px;
	}

	.btn-icon {
		font-size: 16px;
	}
}
/* ============================================
   SEO Content Section
   ============================================ */
.seo-content-section {
	padding: 4rem 2rem;
	background-color: #f8fafc;
	border-top: 1px solid var(--border-color);
	margin-top: 4rem;
}

.seo-content-wrapper {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.seo-title {
	font-size: 1.8rem;
	color: var(--dark-color);
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.seo-text {
	color: var(--text-gray);
	line-height: 1.8;
	font-size: 1.1rem;
}

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

.seo-text p:last-child {
	margin-bottom: 0;
}

/* ============================================
   Recent Itineraries Section
   ============================================ */
.recent-itineraries-section {
	margin: 80px auto;
	padding: 0 20px;
	max-width: 1200px;
}

.recent-itineraries-section.recent-itineraries-inline {
	max-width: 100%;
	padding: 0;
	margin: 48px 0 0;
}

.recent-itineraries-placeholder {
	display: none;
}

.trip-results .recent-itineraries-section.recent-itineraries-inline .section-heading,
.trip-results .recent-itineraries-section.recent-itineraries-inline .section-subtitle {
	text-align: left;
}

.recent-itineraries-section .section-heading {
	font-size: 32px;
	font-weight: 800;
	text-align: center;
	color: #0f172a;
	margin-bottom: 12px;
}

.recent-itineraries-section .section-subtitle {
	text-align: center;
	font-size: 18px;
	color: #64748b;
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.recent-itineraries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.recent-loading {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
	color: #64748b;
}

.recent-loading-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid #e2e8f0;
	border-top-color: #6366f1;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 16px;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.recent-itinerary-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
}

.recent-itinerary-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(99, 102, 241, 0.15);
	border-color: #6366f1;
}

.recent-card-image {
	position: relative;
	height: 180px;
	overflow: hidden;
	background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.recent-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.recent-itinerary-card:hover .recent-card-image img {
	transform: scale(1.05);
}

.recent-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.recent-card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: linear-gradient(135deg, #6366f1, #06b6d4);
	color: white;
	padding: 6px 14px;
	border-radius: 9999px;
	font-size: 12px;
	font-weight: 600;
	text-transform: capitalize;
}

.recent-card-content {
	padding: 20px;
}

.recent-card-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 12px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.recent-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 14px;
	color: #64748b;
}

.recent-card-meta span {
	display: flex;
	align-items: center;
	gap: 4px;
}

.meta-budget {
	color: #10b981;
	font-weight: 600;
}

.recent-itineraries-footer {
	text-align: center;
}

.view-all-trips-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #6366f1, #06b6d4);
	color: white;
	padding: 14px 32px;
	border-radius: 9999px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.view-all-trips-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
	color: white;
}

.view-all-trips-btn .arrow-icon {
	transition: transform 0.3s ease;
}

.view-all-trips-btn:hover .arrow-icon {
	transform: translateX(4px);
}

/* Responsive for Recent Itineraries */
@media (max-width: 1024px) {
	.recent-itineraries-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.recent-itineraries-section {
		margin: 60px auto;
	}

	.recent-itineraries-section .section-heading {
		font-size: 26px;
	}

	.recent-itineraries-section .section-subtitle {
		font-size: 16px;
		margin-bottom: 32px;
	}

	.recent-itineraries-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.recent-card-image {
		height: 160px;
	}

	.recent-card-title {
		font-size: 16px;
	}

	.recent-card-meta {
		font-size: 13px;
	}

	.view-all-trips-btn {
		padding: 12px 24px;
		font-size: 14px;
	}
}
