/* ===== Professional Hotel Booking Site CSS ===== */

:root {
	/* Primary Colors - Booking.com inspired */
	--primary: #003580;
	--primary-dark: #002347;
	--primary-light: #0071c2;
	--accent: #febb02;
	--accent-dark: #e6a800;
	
	/* Background Colors */
	--bg-primary: #ffffff;
	--bg-secondary: #f5f5f5;
	--bg-card: #ffffff;
	--bg-input: #ffffff;
	--bg-hero: linear-gradient(135deg, #003580 0%, #0071c2 100%);
	
	/* Text Colors */
	--text-primary: #262626;
	--text-secondary: #6b6b6b;
	--text-muted: #9ca3af;
	--text-white: #ffffff;
	
	/* Border & Shadow */
	--border: #e5e5e5;
	--border-focus: #003580;
	--shadow: 0 2px 8px rgba(0,0,0,0.1);
	--shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
	--shadow-hover: 0 6px 25px rgba(0,0,0,0.2);
	
	/* Status Colors */
	--success: #008000;
	--success-light: #e6ffe6;
	--danger: #cc0000;
	--danger-light: #ffe6e6;
	--warning: #ff8c00;
	--info: #0066cc;
	
	/* Sizes */
	--radius: 8px;
	--radius-lg: 12px;
	--container-width: 1200px;
	
	/* Typography */
	--font-zh: 'Noto Sans TC', sans-serif;
	--font-en: 'Inter', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-zh);
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	font-size: 14px;
}

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

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

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
	height: 70px;
}

.header-inner {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: var(--primary);
	font-size: 20px;
}

.logo-icon {
	font-size: 24px;
	color: var(--primary);
}

.logo-accent {
	color: var(--accent);
}

.header-nav {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 500;
	color: var(--text-secondary);
	transition: all 0.2s ease;
}

.nav-link:hover {
	color: var(--primary);
	background: rgba(0, 53, 128, 0.05);
}

.nav-link.active {
	color: var(--primary);
	background: rgba(0, 53, 128, 0.1);
	font-weight: 600;
}

/* ===== Hero Section ===== */
.hero {
	position: relative;
	background: var(--bg-hero);
	padding: 120px 20px 160px;
	text-align: center;
	color: var(--text-white);
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
	background-size: cover;
	background-position: center;
	opacity: 0.3;
}

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

.hero h1 {
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.text-gradient {
	background: linear-gradient(135deg, var(--accent) 0%, #fff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 18px;
	opacity: 0.9;
	font-weight: 400;
}

/* ===== Hero Search ===== */
.search-hero {
	position: relative;
	z-index: 3;
	margin-top: 40px;
}

.search-hero-inner {
	max-width: 1000px;
	margin: 0 auto;
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 24px;
}

.search-hero-tabs {
	display: flex;
	margin-bottom: 20px;
}

.search-tab {
	background: transparent;
	border: 2px solid var(--border);
	padding: 12px 24px;
	border-radius: var(--radius) var(--radius) 0 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.search-tab.active {
	background: var(--primary);
	color: var(--text-white);
	border-color: var(--primary);
}

.search-hero-form {
	background: var(--bg-card);
}

.search-hero-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1.2fr 1.2fr 1fr 1fr;
	gap: 1px;
	background: var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 20px;
}

.search-input-group {
	display: flex;
	background: var(--bg-input);
	border: 2px solid transparent;
	transition: border-color 0.2s ease;
	position: relative;
}

.search-input-group:focus-within {
	border-color: var(--border-focus);
	z-index: 1;
}

.search-input-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	color: var(--text-secondary);
	font-size: 16px;
	min-width: 50px;
}

.search-input-content {
	flex: 1;
	padding: 12px 12px 12px 0;
	display: flex;
	flex-direction: column;
	min-height: 60px;
}

.search-input-content label {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 2px;
	text-transform: uppercase;
}

.search-input-content input,
.search-input-content select {
	border: none;
	outline: none;
	background: transparent;
	font-size: 16px;
	font-weight: 500;
	color: var(--text-primary);
	width: 100%;
	font-family: var(--font-zh);
}

.search-input-content input::placeholder {
	color: var(--text-muted);
}

.search-input-content select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 8px center;
	background-repeat: no-repeat;
	background-size: 16px;
	padding-right: 32px;
}

.btn-search-hero {
	width: 100%;
	background: var(--primary);
	color: var(--text-white);
	border: none;
	border-radius: var(--radius);
	padding: 16px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.btn-search-hero:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow-hover);
}

/* ===== Popular Destinations ===== */
.popular-destinations {
	padding: 80px 20px;
	background: var(--bg-secondary);
}

.popular-destinations h2 {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-primary);
}

.section-subtitle {
	text-align: center;
	font-size: 16px;
	color: var(--text-secondary);
	margin-bottom: 50px;
}

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

.destination-card {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
}

.destination-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.destination-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.destination-info {
	padding: 20px;
}

.destination-info h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--text-primary);
}

.destination-info p {
	color: var(--text-secondary);
	font-size: 14px;
}

/* ===== Why Choose Us ===== */
.why-choose-us {
	padding: 80px 20px;
	background: var(--bg-primary);
}

.why-choose-us h2 {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 50px;
	color: var(--text-primary);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.feature-card {
	text-align: center;
	padding: 30px 20px;
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: var(--text-white);
}

.feature-card h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--text-primary);
}

.feature-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ===== Results Section ===== */
.results-section {
	padding: 40px 20px;
	background: var(--bg-secondary);
}

.results-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--border);
}

.results-info h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--text-primary);
}

.results-info p {
	color: var(--text-secondary);
}

.results-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.sort-filter {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sort-filter select {
	padding: 10px 16px;
	border: 2px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg-card);
	color: var(--text-primary);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}

.btn-map {
	background: var(--bg-card);
	border: 2px solid var(--border);
	color: var(--text-secondary);
	padding: 10px 16px;
	border-radius: var(--radius);
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.btn-map:hover,
.btn-map.active {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(0, 53, 128, 0.05);
}

/* ===== Hotel Cards ===== */
.hotels-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hotel-card {
	background: var(--bg-card);
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 20px;
	display: grid;
	grid-template-columns: 280px 1fr auto;
	gap: 20px;
	transition: all 0.2s ease;
	position: relative;
}

.hotel-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-hover);
	transform: translateY(-2px);
}

.hotel-image {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	height: 200px;
}

.hotel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hotel-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 200px;
}

.hotel-header {
	margin-bottom: 12px;
}

.hotel-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}

.stars {
	display: flex;
	color: var(--accent);
}

.hotel-name {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 4px;
}

.hotel-location {
	color: var(--text-secondary);
	font-size: 14px;
	margin-bottom: 2px;
}

.room-name {
	color: var(--text-primary);
	font-size: 14px;
	font-weight: 600;
}

.hotel-features {
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.6;
}

.hotel-features span {
	color: var(--text-primary);
	font-weight: 500;
}

.hotel-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 600;
	gap: 4px;
}

.tag-refundable {
	background: var(--success-light);
	color: var(--success);
}

.tag-nonrefundable {
	background: var(--danger-light);
	color: var(--danger);
}

.tag-breakfast {
	background: rgba(255, 140, 0, 0.1);
	color: var(--warning);
}

.hotel-price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	text-align: right;
	min-width: 160px;
}

.price-section {
	margin-bottom: 16px;
}

.price-original {
	font-size: 14px;
	color: var(--text-muted);
	text-decoration: line-through;
	margin-bottom: 4px;
}

.price-current {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
}

.price-currency {
	font-size: 14px;
	color: var(--text-secondary);
	margin-top: 2px;
}

.price-note {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 4px;
}

.btn-book {
	background: var(--primary);
	color: var(--text-white);
	border: none;
	border-radius: var(--radius);
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	min-width: 120px;
}

.btn-book:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 53, 128, 0.3);
}

/* ===== Loader ===== */
.loader {
	display: none;
	padding: 60px 20px;
	text-align: center;
	background: var(--bg-secondary);
}

.loader-content {
	max-width: 400px;
	margin: 0 auto;
}

.loader-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid var(--border);
	border-top-color: var(--primary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

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

.loader p {
	color: var(--text-secondary);
	font-size: 16px;
	font-weight: 500;
}

/* ===== Loading Skeletons ===== */
.skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.hotel-card.skeleton {
	border: none;
}

.hotel-card.skeleton .hotel-image {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

.hotel-card.skeleton .skeleton-line {
	height: 16px;
	margin-bottom: 8px;
	border-radius: 4px;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

.hotel-card.skeleton .skeleton-line.short { width: 60%; }
.hotel-card.skeleton .skeleton-line.medium { width: 80%; }
.hotel-card.skeleton .skeleton-line.long { width: 100%; }

/* ===== Booking Form ===== */
#bookingForm {
	max-width: 600px;
	margin: 40px auto;
	background: var(--bg-card);
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 40px;
}

#bookingForm h2 {
	text-align: center;
	margin-bottom: 8px;
	color: var(--primary);
}

#bookingForm .form-subtitle {
	text-align: center;
	color: var(--text-secondary);
	font-size: 14px;
	margin-bottom: 30px;
}

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

#bookingForm label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 8px;
}

#bookingForm input[type="text"],
#bookingForm input[type="email"] {
	width: 100%;
	background: var(--bg-input);
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 12px 16px;
	font-size: 16px;
	font-family: var(--font-zh);
	color: var(--text-primary);
	transition: border-color 0.2s ease;
}

#bookingForm input[type="text"]:focus,
#bookingForm input[type="email"]:focus {
	outline: none;
	border-color: var(--border-focus);
}

#bookingForm input[type="submit"] {
	width: 100%;
	margin-top: 24px;
	background: var(--primary);
	color: var(--text-white);
	border: none;
	border-radius: var(--radius);
	padding: 16px;
	font-size: 18px;
	font-weight: 700;
	font-family: var(--font-zh);
	cursor: pointer;
	transition: all 0.2s ease;
}

#bookingForm input[type="submit"]:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow-hover);
}

/* ===== Payment Info ===== */
.payment-info {
	text-align: center;
	padding: 30px;
	margin: 30px auto;
	max-width: 600px;
	background: var(--bg-card);
	border: 2px solid var(--primary);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.payment-info p {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 8px;
}

/* ===== Error Message ===== */
.error-message {
	display: none;
	text-align: center;
	padding: 20px;
	margin: 20px auto;
	max-width: 600px;
	background: var(--danger-light);
	border: 2px solid var(--danger);
	border-radius: var(--radius);
	color: var(--danger);
	font-weight: 600;
}

/* ===== Footer ===== */
.site-footer {
	background: var(--text-primary);
	color: var(--text-white);
	padding: 60px 20px 20px;
	margin-top: 80px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-white);
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 12px;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	transition: color 0.2s ease;
}

.footer-section a:hover {
	color: var(--text-white);
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
}

.footer-description {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 24px;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.social-link {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.2s ease;
	font-size: 16px;
}

.social-link:hover {
	background: var(--primary);
	color: var(--text-white);
	transform: translateY(-2px);
}

.footer-bottom {
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-powered {
	font-size: 12px;
}

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

/* Tablet */
@media (max-width: 768px) {
	.header-nav {
		gap: 15px;
	}
	
	.nav-link {
		font-size: 13px;
		padding: 8px 12px;
	}
	
	.hero {
		padding: 100px 20px 140px;
	}
	
	.hero h1 {
		font-size: 32px;
	}
	
	.search-hero-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1px;
	}
	
	.search-input-country,
	.search-input-env {
		grid-column: span 2;
	}
	
	.hotel-card {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.hotel-image {
		height: 250px;
		grid-row: 1;
	}
	
	.hotel-price {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	
	.destinations-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.results-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}
	
	.header-inner {
		padding: 0 16px;
	}
	
	.logo {
		font-size: 18px;
	}
	
	.logo-icon {
		font-size: 20px;
	}
	
	.nav-link {
		font-size: 12px;
		padding: 6px 10px;
	}
	
	.hero {
		padding: 90px 16px 120px;
	}
	
	.hero h1 {
		font-size: 28px;
	}
	
	.hero-subtitle {
		font-size: 16px;
	}
	
	.search-hero-inner {
		padding: 20px;
	}
	
	.search-hero-grid {
		grid-template-columns: 1fr;
	}
	
	.search-input-country,
	.search-input-env {
		grid-column: span 1;
	}
	
	.hotel-image {
		height: 200px;
	}
	
	.popular-destinations,
	.why-choose-us,
	.results-section {
		padding: 60px 16px;
	}
	
	.destinations-grid {
		grid-template-columns: 1fr;
	}
	
	#bookingForm {
		margin: 20px 16px;
		padding: 30px 20px;
	}
	
	.site-footer {
		padding: 40px 16px 20px;
	}
}

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

/* ===== Hotel Details Page Styles ===== */

.page-hero {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: var(--text-white);
	padding: 120px 20px 60px;
	text-align: center;
}

.page-hero-content h1 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 12px;
}

.page-hero-content p {
	font-size: 18px;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

.hotel-search-section {
	padding: 60px 20px;
	background: var(--bg-secondary);
}

.hotel-search-card {
	max-width: 800px;
	margin: 0 auto;
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 40px;
}

.search-form-header {
	text-align: center;
	margin-bottom: 40px;
}

.search-form-header h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--primary);
}

.search-form-header p {
	color: var(--text-secondary);
}

.hotel-search-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-bottom: 30px;
}

.search-field {
	display: flex;
	flex-direction: column;
}

.search-field label {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.search-input {
	background: var(--bg-input);
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 12px 16px;
	font-size: 16px;
	font-family: var(--font-zh);
	color: var(--text-primary);
	transition: border-color 0.2s ease;
}

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

.search-field small {
	margin-top: 4px;
	font-size: 12px;
	color: var(--text-muted);
}

.btn-search-primary {
	width: 100%;
	background: var(--primary);
	color: var(--text-white);
	border: none;
	border-radius: var(--radius);
	padding: 16px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.btn-search-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow-hover);
}

.hotel-details-section {
	padding: 40px 20px;
	background: var(--bg-secondary);
}

.hotel-details-container {
	max-width: 1200px;
	margin: 0 auto;
}

.hotel-details-card {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	margin-bottom: 40px;
}

.hotel-details-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.hotel-gallery {
	position: relative;
}

.main-image {
	position: relative;
	height: 400px;
	overflow: hidden;
}

.main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-count {
	position: absolute;
	bottom: 16px;
	right: 16px;
	background: rgba(0, 0, 0, 0.7);
	color: var(--text-white);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
}

.thumbnail-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	height: 80px;
}

.thumbnail-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.thumbnail-gallery img:hover {
	opacity: 0.8;
}

.hotel-info-section {
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.hotel-rating-section {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.stars {
	display: flex;
	color: var(--accent);
	font-size: 18px;
}

.review-badge {
	background: var(--primary);
	color: var(--text-white);
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
}

.review-score {
	margin-right: 6px;
}

.hotel-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.hotel-location {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-secondary);
	font-size: 16px;
	margin-bottom: 20px;
}

.hotel-description {
	margin-bottom: 24px;
}

.hotel-description p {
	line-height: 1.6;
	color: var(--text-secondary);
}

.hotel-amenities h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 16px;
}

.amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
}

.amenity-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-secondary);
	font-size: 14px;
}

.amenity-item i {
	color: var(--success);
	font-size: 12px;
}

.room-rates-container {
	max-width: 1200px;
	margin: 0 auto;
}

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

.rates-header h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.rates-header p {
	color: var(--text-secondary);
	font-size: 16px;
}

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

.rate-card {
	background: var(--bg-card);
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px;
	transition: all 0.2s ease;
}

.rate-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-hover);
	transform: translateY(-2px);
}

.rate-card-header {
	margin-bottom: 20px;
}

.room-name {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.rate-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.rate-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 8px;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 600;
}

.rate-badge.refundable {
	background: var(--success-light);
	color: var(--success);
}

.rate-badge.non-refundable {
	background: var(--danger-light);
	color: var(--danger);
}

.rate-badge.breakfast {
	background: rgba(255, 140, 0, 0.1);
	color: var(--warning);
}

.rate-details {
	margin-bottom: 24px;
}

.rate-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--text-secondary);
}

.info-item i {
	color: var(--primary);
	min-width: 16px;
}

.rate-pricing {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
}

.price-section {
	flex: 1;
}

.price-original {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--text-muted);
	text-decoration: line-through;
	margin-bottom: 4px;
}

.savings-badge {
	background: var(--danger);
	color: var(--text-white);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 600;
}

.btn-book-rate {
	background: var(--primary);
	color: var(--text-white);
	border: none;
	border-radius: var(--radius);
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.btn-book-rate:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 53, 128, 0.3);
}

.no-rates {
	text-align: center;
	padding: 60px 20px;
	color: var(--text-secondary);
	grid-column: 1 / -1;
}

.no-rates i {
	font-size: 48px;
	color: var(--text-muted);
	margin-bottom: 16px;
}

.no-rates h3 {
	font-size: 24px;
	margin-bottom: 8px;
	color: var(--text-primary);
}

.hotel-examples {
	padding: 60px 20px;
	background: var(--bg-primary);
}

.hotel-examples h3 {
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 30px;
}

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

.example-card {
	background: var(--bg-card);
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.example-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.example-info strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 4px;
}

.example-info span {
	font-size: 14px;
	color: var(--text-secondary);
}

.example-card i {
	color: var(--text-muted);
	font-size: 16px;
}

.examples-note {
	text-align: center;
	margin-top: 20px;
	color: var(--text-secondary);
	font-size: 14px;
}

.examples-note i {
	color: var(--info);
	margin-right: 6px;
}

.booking-form-container {
	max-width: 600px;
	margin: 0 auto;
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 40px;
}

.form-header {
	text-align: center;
	margin-bottom: 30px;
}

.form-header h2 {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 8px;
}

.form-subtitle {
	color: var(--text-secondary);
	font-size: 14px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

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

.form-group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.form-group input {
	width: 100%;
	background: var(--bg-input);
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 12px 16px;
	font-size: 16px;
	font-family: var(--font-zh);
	color: var(--text-primary);
	transition: border-color 0.2s ease;
}

.form-group input:focus {
	outline: none;
	border-color: var(--border-focus);
}

.form-actions {
	display: flex;
	gap: 16px;
	margin-top: 30px;
}

.btn-back {
	background: var(--bg-secondary);
	color: var(--text-secondary);
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.btn-back:hover {
	border-color: var(--text-secondary);
	color: var(--text-primary);
}

.btn-submit {
	flex: 1;
	background: var(--primary);
	color: var(--text-white);
	border: none;
	border-radius: var(--radius);
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-submit:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow-hover);
}

.payment-info-container {
	max-width: 600px;
	margin: 0 auto;
	background: var(--bg-card);
	border: 2px solid var(--primary);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 40px;
}

.payment-header h3 {
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 24px;
}

.payment-details {
	margin-bottom: 24px;
}

.payment-amount {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-bottom: 2px solid var(--border);
	margin-bottom: 12px;
}

.amount-label {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
}

.amount-value {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
}

.voucher-discount {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--success);
	font-weight: 600;
}

.payment-security {
	display: flex;
	justify-content: space-around;
	gap: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}

.security-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	flex: 1;
}

.security-item i {
	font-size: 24px;
	color: var(--success);
}

.security-item span {
	font-size: 12px;
	color: var(--text-secondary);
	font-weight: 500;
}

/* ===== Responsive for Hotel Details ===== */

@media (max-width: 768px) {
	.hotel-details-header {
		grid-template-columns: 1fr;
	}
	
	.hotel-gallery {
		order: -1;
	}
	
	.main-image {
		height: 250px;
	}
	
	.hotel-info-section {
		padding: 30px 24px;
	}
	
	.hotel-title {
		font-size: 24px;
	}
	
	.hotel-search-grid {
		grid-template-columns: 1fr;
	}
	
	.rates-grid {
		grid-template-columns: 1fr;
	}
	
	.rate-pricing {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	
	.form-grid {
		grid-template-columns: 1fr;
	}
	
	.form-actions {
		flex-direction: column;
	}
	
	.payment-security {
		flex-direction: column;
		gap: 12px;
	}
	
	.amenities-grid {
		grid-template-columns: 1fr;
	}
	
	.examples-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hotel-search-card,
	.booking-form-container,
	.payment-info-container {
		margin: 20px 16px;
		padding: 24px 20px;
	}
	
	.page-hero {
		padding: 100px 16px 40px;
	}
	
	.hotel-search-section,
	.hotel-details-section,
	.hotel-examples {
		padding: 40px 16px;
	}
}

/* ===== Print Styles ===== */
@media print {
	.site-header,
	.hero,
	.page-hero,
	.popular-destinations,
	.why-choose-us,
	.hotel-examples,
	.site-footer {
		display: none;
	}
	
	.hotel-card,
	.rate-card {
		break-inside: avoid;
		border: 1px solid #000;
		margin-bottom: 20px;
	}
}

/* ===== New: Clickable card & multi-button styles ===== */
.hotel-card[style*="cursor: pointer"]:hover .hotel-name {
	color: var(--primary);
	text-decoration: underline;
}

.tag-rooms {
	background: #e8f4fd;
	color: #0071c2;
	border: 1px solid #b3d9f2;
}

.btn-book-now {
	margin-top: 8px;
	background: var(--accent) !important;
	color: var(--text-primary) !important;
	font-size: 13px !important;
}

.btn-book-now:hover {
	background: var(--accent-dark) !important;
}

.hotel-price .btn-book {
	display: block;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
}

.hotel-location i {
	color: var(--primary);
	margin-right: 4px;
}

/* ===== Hotel Reviews Section ===== */
.hotel-reviews-section {
	margin: 24px 0;
	padding: 24px;
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
}

.reviews-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.reviews-header h2 {
	margin: 0;
	font-size: 22px;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 8px;
}

.reviews-summary {
	text-align: center;
}

.average-score {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.score-number {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary);
}

.score-text {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.reviews-highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.review-highlight h4 {
	margin: 0 0 12px 0;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.pros h4 {
	color: var(--success);
}

.cons h4 {
	color: var(--danger);
}

.review-highlight ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.review-highlight li {
	padding: 6px 0;
	border-bottom: 1px solid #f0f0f0;
	color: var(--text-secondary);
	font-size: 14px;
}

.review-highlight li:last-child {
	border-bottom: none;
}

@media (max-width: 768px) {
	.reviews-highlights {
		grid-template-columns: 1fr;
	}
}

/* ===== Filter Bar (Search Results) ===== */
.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: flex-end;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 16px 20px;
	margin-bottom: 20px;
}

.filter-bar .filter-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.filter-bar .filter-group > label {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-secondary);
}

.filter-price-inputs {
	display: flex;
	align-items: center;
	gap: 8px;
}

.filter-price-inputs input {
	width: 90px;
	padding: 6px 10px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-size: 13px;
}

.filter-price-inputs span {
	color: var(--text-muted);
}

.filter-stars {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.star-checkbox {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	cursor: pointer;
	padding: 4px 8px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: all 0.2s;
}

.star-checkbox:has(input:checked) {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

.star-checkbox input {
	display: none;
}

.filter-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 13px;
	padding: 6px 12px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: all 0.2s;
}

.filter-toggle:has(input:checked) {
	background: #e6f7f5;
	border-color: #00b894;
	color: #00b894;
}

.filter-toggle input {
	display: none;
}

.filter-clear {
	background: none;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 6px 12px;
	font-size: 13px;
	color: var(--text-muted);
	cursor: pointer;
	transition: all 0.2s;
}

.filter-clear:hover {
	border-color: #ff6b6b;
	color: #ff6b6b;
}

@media (max-width: 768px) {
	.filter-bar {
		flex-direction: column;
		align-items: stretch;
	}
}

/* ===== Hotel Map Section (Details Page) ===== */
.hotel-map-section {
	margin-top: 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.map-header {
	padding: 16px 20px;
	background: var(--bg-secondary);
	border-bottom: 1px solid var(--border);
}

.map-header h3 {
	margin: 0;
	font-size: 18px;
	color: var(--text-primary);
}

.hotel-map-iframe {
	width: 100%;
	height: 350px;
	border: none;
}

/* ===== New Homepage Styles ===== */

/* Hero Actions */
.hero-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 30px;
}

.btn-hero {
	padding: 16px 32px;
	border-radius: var(--radius);
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

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

.btn-hero.btn-secondary {
	background: rgba(255,255,255,0.15);
	color: white;
	border: 2px solid rgba(255,255,255,0.3);
}

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

/* Quick Decision Section */
.quick-decision {
	background: var(--bg-secondary);
	padding: 80px 20px;
}

.quick-decision h2 {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 40px;
}

.decision-form {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	padding: 40px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.decision-group {
	margin-bottom: 30px;
}

.decision-group label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.mood-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.mood-btn {
	padding: 10px 20px;
	border: 2px solid var(--border);
	background: white;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 500;
}

.mood-btn:hover, .mood-btn.selected {
	border-color: var(--primary);
	background: rgba(0, 53, 128, 0.1);
	color: var(--primary);
}

.budget-slider {
	padding: 10px 0;
}

.budget-slider input[type="range"] {
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: var(--border);
	outline: none;
	appearance: none;
}

.budget-slider input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--primary);
	cursor: pointer;
}

.budget-display {
	text-align: center;
	margin-top: 10px;
	font-size: 18px;
	font-weight: 600;
	color: var(--primary);
}

.traveler-buttons {
	display: flex;
	gap: 12px;
}

.traveler-btn {
	padding: 12px 24px;
	border: 2px solid var(--border);
	background: white;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 500;
	flex: 1;
	text-align: center;
}

.traveler-btn:hover, .traveler-btn.selected {
	border-color: var(--primary);
	background: rgba(0, 53, 128, 0.1);
	color: var(--primary);
}

.btn-recommend {
	background: var(--primary);
	color: white;
	border: none;
	padding: 16px 32px;
	border-radius: var(--radius);
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	width: 100%;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-recommend:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

/* Travel Personas Section */
.travel-personas {
	padding: 80px 20px;
	background: white;
}

.travel-personas h2 {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 16px;
}

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

.persona-card {
	padding: 30px;
	border-radius: var(--radius-lg);
	color: white;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
}

.persona-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.persona-emoji {
	font-size: 48px;
	margin-bottom: 16px;
}

.persona-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.persona-card p {
	font-size: 16px;
	opacity: 0.9;
	margin-bottom: 20px;
	line-height: 1.5;
}

.persona-cta {
	font-size: 16px;
	font-weight: 600;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.persona-card:hover .persona-cta {
	opacity: 1;
}

/* Search Hero adjustments */
.search-hero {
	background: white;
	padding: 40px 20px;
	margin: 0;
}

.search-hero .container {
	max-width: var(--container-width);
	margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.hero-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.btn-hero {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
	
	.decision-form {
		margin: 0 20px;
		padding: 30px 20px;
	}
	
	.mood-buttons {
		justify-content: center;
	}
	
	.traveler-buttons {
		flex-wrap: wrap;
	}
	
	.personas-grid {
		grid-template-columns: 1fr;
		margin: 0 20px;
	}
	
	.search-hero-grid {
		grid-template-columns: 1fr;
		gap: 1px;
	}
}

/* ===== Tokyo Decision Map Styles ===== */

/* Tokyo Hero */
.tokyo-hero {
	position: relative;
	height: 60vh;
	min-height: 400px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.tokyo-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.tokyo-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0,53,128,0.8) 0%, rgba(0,53,128,0.6) 100%);
}

.tokyo-hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
	color: white;
}

.tokyo-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0 0 16px 0;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tokyo-subtitle {
	font-size: 1.5rem;
	margin: 0 0 40px 0;
	opacity: 0.9;
	font-weight: 400;
}

.tokyo-hero-ctas {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Quick Selector */
.quick-selector {
	padding: 80px 0;
	background: var(--bg-secondary);
}

.quick-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin: 40px 0;
}

.quick-btn {
	padding: 12px 24px;
	border: 2px solid var(--border);
	border-radius: 50px;
	background: white;
	color: var(--text-primary);
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.quick-btn:hover,
.quick-btn.active {
	border-color: var(--primary);
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.quick-result {
	margin-top: 40px;
	text-align: center;
	font-size: 18px;
	color: var(--text-secondary);
}

.quick-recommendation {
	background: white;
	padding: 32px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	max-width: 500px;
	margin: 0 auto;
}

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

.quick-rec-icon {
	font-size: 32px;
}

.quick-rec-title {
	font-size: 20px;
	color: var(--text-primary);
}

.quick-rec-reason {
	color: var(--text-secondary);
	margin-bottom: 20px;
}

/* Comparison Table */
.comparison-table {
	padding: 80px 0;
}

.comparison-wrapper {
	overflow-x: auto;
	margin-top: 40px;
}

.comparison-grid {
	width: 100%;
	min-width: 800px;
	border-collapse: collapse;
	background: white;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.comparison-grid th {
	background: var(--primary);
	color: white;
	padding: 20px 16px;
	text-align: left;
	font-weight: 600;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.comparison-grid td {
	padding: 20px 16px;
	border-bottom: 1px solid var(--border);
}

.district-cell {
	min-width: 200px;
}

.district-name {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 4px;
}

.district-tagline {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.4;
}

.score-cell {
	width: 120px;
}

.score-bar {
	position: relative;
	height: 32px;
	background: var(--bg-secondary);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.score-fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
	border-radius: 16px;
	transition: width 0.3s ease;
}

.score-text {
	position: relative;
	z-index: 2;
	font-weight: 600;
	color: var(--text-primary);
	font-size: 14px;
}

.suitable-cell {
	min-width: 250px;
}

.suitable-personas {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.persona-badge {
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	border: 1px solid currentColor;
}

/* District Cards */
.district-cards {
	padding: 80px 0;
	background: var(--bg-secondary);
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.district-card {
	background: white;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	position: relative;
}

.district-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.district-card.highlighted {
	border: 3px solid var(--accent);
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(254,187,2,0.3);
}

.card-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

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

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

.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.card-content {
	padding: 24px;
}

.card-title {
	font-size: 24px;
	font-weight: 600;
	color: var(--primary);
	margin: 0 0 8px 0;
}

.card-tagline {
	color: var(--text-secondary);
	margin: 0 0 20px 0;
	line-height: 1.5;
}

.card-scores {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.card-score {
	text-align: center;
}

.score-label {
	display: block;
	font-size: 13px;
	color: var(--text-secondary);
	margin-bottom: 4px;
}

.score-value {
	display: block;
	font-size: 20px;
	font-weight: 600;
	color: var(--primary);
}

.card-personas {
	margin-bottom: 24px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}

.personas-label {
	font-size: 14px;
	color: var(--text-secondary);
	margin-right: 8px;
}

.persona-mini {
	font-size: 14px;
	color: var(--text-primary);
}

.card-btn {
	width: 100%;
	padding: 14px;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: var(--radius);
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

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

/* ===== District Detail Page Styles ===== */

/* District Hero */
.district-hero {
	position: relative;
	height: 50vh;
	min-height: 300px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.district-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.district-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.district-hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	color: white;
	padding: 40px 0;
}

.breadcrumb {
	margin-bottom: 16px;
	font-size: 14px;
	opacity: 0.9;
}

.breadcrumb a {
	color: white;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

#district-title {
	font-size: 3rem;
	font-weight: 700;
	margin: 0 0 12px 0;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#district-tagline {
	font-size: 1.2rem;
	margin: 0;
	opacity: 0.9;
}

/* Persona Context */
.persona-context {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 16px 0;
}

.persona-notice {
	display: flex;
	align-items: center;
	gap: 12px;
	color: white;
	font-weight: 500;
}

.persona-link {
	color: var(--accent);
	text-decoration: none;
	margin-left: auto;
	font-weight: 600;
}

.persona-link:hover {
	text-decoration: underline;
}

/* District Analysis */
.district-analysis {
	padding: 80px 0;
}

.analysis-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 60px;
}

.chart-card,
.pros-cons-card {
	background: white;
	padding: 32px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.chart-card h3,
.pros-cons-card h4 {
	margin: 0 0 24px 0;
	color: var(--primary);
	font-weight: 600;
}

.chart-container {
	position: relative;
	height: 300px;
}

.pros-section,
.cons-section {
	margin-bottom: 32px;
}

.pros-section:last-child,
.cons-section:last-child {
	margin-bottom: 0;
}

.pros-section h4 {
	color: var(--success);
}

.cons-section h4 {
	color: var(--warning);
}

#pros-list,
#cons-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

#pros-list li,
#cons-list li {
	padding: 8px 0;
	border-bottom: 1px solid var(--border);
	position: relative;
	padding-left: 24px;
}

#pros-list li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--success);
	font-weight: bold;
}

#cons-list li:before {
	content: '!';
	position: absolute;
	left: 0;
	color: var(--warning);
	font-weight: bold;
}

.highlights-section,
.personas-section {
	margin-bottom: 60px;
}

.highlights-section h3,
.personas-section h3 {
	font-size: 28px;
	color: var(--primary);
	margin-bottom: 24px;
	font-weight: 600;
}

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

.highlight-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: white;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	font-weight: 500;
}

.highlight-item i {
	color: var(--accent);
}

.personas-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.persona-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	position: relative;
}

.persona-card.current-persona {
	border: 2px solid var(--accent);
	background: #fff8e1;
}

.persona-emoji {
	font-size: 32px;
}

.persona-info h4 {
	margin: 0 0 4px 0;
	color: var(--primary);
	font-weight: 600;
}

.persona-info p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 14px;
}

.current-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: var(--accent);
	color: var(--primary);
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

/* Hotels Section */
.hotels-section {
	padding: 80px 0;
	background: var(--bg-secondary);
}

.hotels-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 20px;
}

.hotels-header h2 {
	font-size: 32px;
	color: var(--primary);
	margin: 0;
	font-weight: 600;
}

.hotels-filters {
	display: flex;
	gap: 8px;
}

.filter-btn {
	padding: 8px 16px;
	border: 2px solid var(--border);
	background: white;
	color: var(--text-primary);
	border-radius: var(--radius);
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 14px;
	font-weight: 500;
}

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

.hotels-loading {
	text-align: center;
	padding: 60px 0;
	color: var(--text-secondary);
}

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

.hotels-empty {
	text-align: center;
	padding: 80px 20px;
	color: var(--text-secondary);
}

.hotels-empty i {
	font-size: 48px;
	margin-bottom: 16px;
	color: var(--primary);
}

.hotels-empty h3 {
	margin: 0 0 8px 0;
	color: var(--text-primary);
}

.hotel-card {
	background: white;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.hotel-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.hotel-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.hotel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hotel-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-secondary);
	color: var(--text-muted);
}

.hotel-placeholder i {
	font-size: 48px;
}

.match-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: var(--accent);
	color: var(--primary);
	padding: 4px 12px;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 600;
	box-shadow: var(--shadow);
}

.hotel-content {
	padding: 20px;
}

.hotel-name {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary);
	margin: 0 0 8px 0;
	line-height: 1.3;
}

.hotel-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.hotel-rating i {
	color: var(--accent);
	font-size: 14px;
}

.rating-text {
	font-size: 14px;
	color: var(--text-secondary);
}

.hotel-address {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 16px;
	line-height: 1.4;
}

.hotel-info {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.hotel-board,
.hotel-refund {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
}

.hotel-board i {
	color: var(--primary);
}

.hotel-refund i {
	color: var(--success);
}

.hotel-refund i.fa-times {
	color: var(--danger);
}

.hotel-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 20px;
}

.price-amount {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
}

.price-period {
	font-size: 14px;
	color: var(--text-secondary);
}

.hotel-cta {
	width: 100%;
	padding: 12px;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: var(--radius);
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.hotel-cta:hover {
	background: var(--primary-dark);
}

/* District CTA */
.district-cta {
	padding: 80px 0;
	background: var(--bg-primary);
	text-align: center;
}

.cta-content h2 {
	font-size: 32px;
	color: var(--primary);
	margin: 0 0 16px 0;
	font-weight: 600;
}

.cta-content p {
	font-size: 18px;
	color: var(--text-secondary);
	margin: 0 0 40px 0;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===== Report Page Styles ===== */

.report-page {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	min-height: 100vh;
}

/* Persona Reveal */
.persona-reveal {
	padding: 100px 0;
	text-align: center;
}

.reveal-card {
	background: white;
	max-width: 600px;
	margin: 0 auto;
	padding: 60px 40px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.reveal-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: var(--persona-color, var(--primary));
}

.reveal-emoji {
	font-size: 80px;
	margin-bottom: 24px;
	display: block;
}

.reveal-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 16px 0;
}

.reveal-tagline {
	font-size: 20px;
	color: var(--persona-color, var(--primary));
	margin: 0 0 32px 0;
	font-weight: 500;
}

.reveal-description {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Persona Radar */
.persona-radar {
	padding: 80px 0;
}

.persona-radar h2 {
	text-align: center;
	font-size: 32px;
	color: var(--primary);
	margin-bottom: 40px;
	font-weight: 600;
}

.radar-card {
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 800px;
	margin: 0 auto;
}

.radar-chart-container {
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 400px;
}

.radar-insights {
	padding: 40px;
	background: var(--bg-secondary);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.insight-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 0;
	border-bottom: 1px solid var(--border);
	font-weight: 500;
}

.insight-item:last-child {
	border-bottom: none;
}

.insight-item i {
	color: var(--accent);
	width: 20px;
}

/* Recommended Districts */
.recommended-districts {
	padding: 80px 0;
	background: white;
}

.recommended-districts h2 {
	text-align: center;
	font-size: 32px;
	color: var(--primary);
	margin-bottom: 16px;
	font-weight: 600;
}

.section-subtitle {
	text-align: center;
	font-size: 18px;
	color: var(--text-secondary);
	margin: 0 0 40px 0;
}

.districts-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
}

.district-match-card {
	background: white;
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px;
	transition: all 0.3s ease;
}

.district-match-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.district-match-card.top-match {
	border-color: var(--accent);
	background: #fff8e1;
}

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

.match-medal {
	font-size: 32px;
}

.match-info h3 {
	margin: 0 0 4px 0;
	color: var(--primary);
	font-weight: 600;
}

.match-score {
	background: var(--accent);
	color: var(--primary);
	padding: 4px 12px;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
}

.district-tagline {
	color: var(--text-secondary);
	margin-bottom: 16px;
	line-height: 1.5;
}

.match-reasons {
	margin-bottom: 20px;
}

.match-reason {
	display: inline-block;
	margin: 4px 8px 4px 0;
	padding: 4px 12px;
	background: var(--success-light);
	color: var(--success);
	border-radius: 16px;
	font-size: 13px;
	font-weight: 500;
}

.match-reason i {
	margin-right: 4px;
}

.district-cta {
	width: 100%;
	padding: 12px;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: var(--radius);
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.district-cta:hover {
	background: var(--primary-dark);
}

/* Hotel Recommendations */
.hotel-recommendations {
	padding: 80px 0;
	background: var(--bg-secondary);
}

.hotel-recommendations h2 {
	text-align: center;
	font-size: 32px;
	color: var(--primary);
	margin-bottom: 16px;
	font-weight: 600;
}

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

.recommendation-card {
	background: white;
	padding: 32px 24px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	text-align: center;
	transition: all 0.3s ease;
}

.recommendation-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

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

.recommendation-card h3 {
	margin: 0 0 12px 0;
	color: var(--primary);
	font-weight: 600;
}

.rec-reason {
	color: var(--text-secondary);
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 15px;
}

.rec-features {
	margin-bottom: 24px;
}

.feature-tag {
	display: inline-block;
	margin: 4px;
	padding: 6px 12px;
	background: var(--primary);
	color: white;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 500;
}

.rec-cta {
	width: 100%;
	padding: 12px;
	background: var(--accent);
	color: var(--primary);
	border: none;
	border-radius: var(--radius);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.rec-cta:hover {
	background: var(--accent-dark);
	transform: translateY(-1px);
}

/* Decision Summary */
.decision-summary {
	padding: 80px 0;
	background: white;
}

.decision-summary h2 {
	text-align: center;
	font-size: 32px;
	color: var(--primary);
	margin-bottom: 40px;
	font-weight: 600;
}

.summary-card {
	max-width: 600px;
	margin: 0 auto;
	background: var(--bg-secondary);
	border-radius: var(--radius-lg);
	padding: 40px;
}

.summary-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.summary-tip {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	font-size: 16px;
	line-height: 1.6;
}

.summary-tip i {
	color: var(--accent);
	margin-top: 2px;
	font-size: 18px;
	min-width: 20px;
}

/* Share & Export */
.share-export {
	padding: 80px 0;
	background: var(--primary);
	color: white;
	text-align: center;
}

.share-card h2 {
	font-size: 32px;
	margin: 0 0 16px 0;
	font-weight: 600;
}

.share-card p {
	font-size: 18px;
	opacity: 0.9;
	margin: 0 0 40px 0;
}

.share-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.share-actions .btn {
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 600;
}

.share-actions .btn-primary {
	background: var(--accent);
	color: var(--primary);
}

.share-actions .btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

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

/* Next Actions */
.next-actions {
	padding: 80px 0;
}

.actions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
}

.action-card {
	background: white;
	padding: 40px 32px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	text-align: center;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.action-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
	border-color: var(--primary);
	text-decoration: none;
	color: inherit;
}

.action-card i {
	font-size: 48px;
	color: var(--primary);
	margin-bottom: 20px;
	display: block;
}

.action-card h3 {
	margin: 0 0 12px 0;
	color: var(--primary);
	font-weight: 600;
}

.action-card p {
	margin: 0;
	color: var(--text-secondary);
	line-height: 1.5;
}

/* Modal Styles */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}

.modal-content {
	position: relative;
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	max-width: 500px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 24px 0 24px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 24px;
}

.modal-header h3 {
	margin: 0;
	color: var(--primary);
	font-weight: 600;
}

.modal-close {
	background: none;
	border: none;
	font-size: 20px;
	color: var(--text-muted);
	cursor: pointer;
	padding: 8px;
	border-radius: var(--radius);
	transition: all 0.2s ease;
}

.modal-close:hover {
	color: var(--text-primary);
	background: var(--bg-secondary);
}

.modal-body {
	padding: 0 24px 24px 24px;
}

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

.form-group input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid var(--border);
	border-radius: var(--radius);
	font-size: 16px;
	transition: all 0.2s ease;
}

.form-group input:focus {
	outline: none;
	border-color: var(--primary);
}

.btn-full {
	width: 100%;
}

/* Success Message */
.success-message {
	position: fixed;
	top: 20px;
	right: 20px;
	background: var(--success);
	color: white;
	padding: 16px 20px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 1001;
	font-weight: 500;
}

.success-message i {
	font-size: 18px;
}

/* Loading States */
.loading-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 100px 20px;
	color: var(--text-secondary);
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border);
	border-top: 4px solid var(--primary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 20px;
}

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

/* Error Messages */
.error-message {
	position: fixed;
	top: 20px;
	right: 20px;
	background: var(--danger);
	color: white;
	padding: 16px 20px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 1001;
	font-weight: 500;
	max-width: 400px;
}

.error-message button {
	background: none;
	border: none;
	color: white;
	font-size: 16px;
	cursor: pointer;
	padding: 4px;
	margin-left: auto;
}

/* Mobile Responsiveness for Tokyo Pages */
@media (max-width: 768px) {
	.tokyo-title {
		font-size: 2.5rem;
	}
	
	.tokyo-subtitle {
		font-size: 1.2rem;
	}
	
	.tokyo-hero-ctas {
		flex-direction: column;
		align-items: center;
	}
	
	.cards-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.comparison-wrapper {
		margin: 20px -20px;
	}
	
	.analysis-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.hotels-header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.hotels-grid {
		grid-template-columns: 1fr;
	}
	
	.radar-card {
		grid-template-columns: 1fr;
	}
	
	.radar-chart-container {
		height: 300px;
		padding: 20px;
	}
	
	.districts-list {
		grid-template-columns: 1fr;
	}
	
	.recommendations-grid {
		grid-template-columns: 1fr;
	}
	
	.actions-grid {
		grid-template-columns: 1fr;
	}
	
	.share-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	#district-title {
		font-size: 2rem;
	}
	
	.reveal-title {
		font-size: 32px;
	}
	
	.reveal-emoji {
		font-size: 64px;
	}
}