/*
Theme Name: Urban Wellness Landing Page
Author: Antigravity
Description: WordPress theme converted from the static HTML landing page using ACF/SCF.
Version: 1.0.3
*/

/* CSS Design System - Urban At-Home Wellness Landing Page */
/* Áp dụng font Arial cho toàn bộ trang web */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

@font-face {
font-family: 'Larken';
src: url('https://static.urban.co/fonts/Larken/webFonts/LarkenLight/font.woff') format('woff');
font-weight: 300;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Larken';
src: url('https://static.urban.co/fonts/Larken/webFonts/LarkenLightItalic/font.woff') format('woff');
font-weight: 300;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: 'Larken';
src: url('https://static.urban.co/fonts/Larken/webFonts/LarkenThin/font.woff') format('woff');
font-weight: 100;
font-style: normal;
font-display: swap;
} */
/* Bỏ toàn bộ @font-face và import Larken */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
input,
textarea,
select {
	font-family: Arial, Helvetica, sans-serif !important;
}
:root {
	--primary-color: #FAC600;
	--primary-hover: #FFB800;
	--primary-focus: #441800;
	--dark-color: #000000;
	--text-color: #1D1D1D;
	--text-muted: #888888;
	--bg-light: #F5F5F3;
	--bg-white: #FFFFFF;
	--border-color: #CCCCCC;

	--font-sans: 'Roboto', sans-serif;
	--font-serif: 'Larken', serif;
	--transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	--shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
	--shadow-floating: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	font-size: 62.5%; /* 1rem = 10px */
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-sans);
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--bg-white);
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-smooth);
}

button {
	font-family: inherit;
	border: none;
	background: none;
	cursor: pointer;
	transition: var(--transition-smooth);
}

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

/* Typography Utilities */
.heading-serif {
	font-family: var(--font-serif);
	font-weight: 400;
}

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

/* Header & Navigation */
.promo-bar {
	background-color: var(--dark-color);
	color: var(--bg-white);
	text-align: center;
	padding: 1rem 2rem;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 1001;
}

.promo-bar a {
	color: var(--primary-color);
	text-decoration: underline;
}

header {
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--transition-smooth);
}

.nav-container {
	max-width: 128rem;
	margin: 0 auto;
	padding: 1.5rem 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.logo-text {
	font-family: var(--font-serif);
	font-size: 3.2rem;
	font-weight: 600;
	letter-spacing: -0.03em;
	color: var(--dark-color);
}

.logo-dot {
	width: 0.8rem;
	height: 0.8rem;
	background-color: var(--primary-color);
	border-radius: 50%;
	margin-top: 1rem;
}

.nav-links {
	display: flex;
	gap: 3rem;
	list-style: none;
}

.nav-links a {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--text-color);
	padding: 0.8rem 0;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--transition-smooth);
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.btn-login {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--text-color);
}

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

.btn-primary {
	background-color: var(--primary-color);
	color: var(--dark-color);
	font-size: 1.5rem;
	font-weight: 600;
	padding: 1.2rem 2.8rem;
	border-radius: 3rem;
	border: 2px solid var(--primary-color);
	box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-premium);
}

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

.btn-primary:focus {
	outline: none;
	border-color: var(--primary-focus);
}

/* Hamburger Menu (Mobile) */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 0.5rem;
	width: 3rem;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: var(--dark-color);
	border-radius: 2px;
	transition: var(--transition-smooth);
}

.menu-toggle span:first-child.open {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle span:nth-child(2).open {
	opacity: 0;
}

.menu-toggle span:last-child.open {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero-section {
	position: relative;
	height: calc(100vh - 80px);
	min-height: 70rem;
	display: flex;
	align-items: center;
	color: var(--bg-white);
	background-color: var(--dark-color);
	overflow: hidden;
}

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

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.6;
	filter: brightness(0.75);
	transform: scale(1.02);
	animation: zoomHero 20s infinite alternate;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
	z-index: 2;
}

.hero-container {
	max-width: 128rem;
	margin: 0 auto;
	width: 100%;
	padding: 0 3rem;
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 5rem;
	align-items: center;
}

.hero-content {
	max-width: 68rem;
}

.hero-title {
	font-size: 6.4rem;
	line-height: 1.15;
	margin-bottom: 2.5rem;
	font-weight: 300;
}

.hero-features {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 4rem;
}

.hero-feature-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 1.8rem;
	font-weight: 300;
}

.hero-feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.8rem;
	height: 2.8rem;
	background-color: var(--primary-color);
	border-radius: 50%;
	color: var(--dark-color);
	font-weight: 700;
	font-size: 1.4rem;
}

.trustpilot-badge {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin-bottom: 3rem;
}

.trustpilot-stars {
	color: #00b67a; /* Trustpilot green */
	font-size: 2.2rem;
	letter-spacing: 2px;
}

.trustpilot-text {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.8);
}

.trustpilot-text strong {
	color: var(--bg-white);
}

/* As Seen In Section */
.as-seen-in {
	margin-top: 6rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.as-seen-title {
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 2rem;
	font-weight: 500;
}

.as-seen-logos {
	display: flex;
	gap: 4rem;
	align-items: center;
	opacity: 0.8;
}

.as-seen-logos span {
	font-family: var(--font-serif);
	font-size: 2.4rem;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.05em;
}

/* Section Common Styles */
section {
	padding: 10rem 3rem;
}

.section-container {
	max-width: 128rem;
	margin: 0 auto;
}

.section-tagline {
	font-size: 1.4rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
}

.section-title {
	font-size: 4.8rem;
	line-height: 1.2;
	color: var(--dark-color);
	margin-bottom: 2rem;
}

.section-subtitle {
	font-size: 1.8rem;
	color: var(--text-muted);
	max-width: 65rem;
	margin-bottom: 6rem;
}

.section-header-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 6rem;
}

.section-header-row .section-subtitle {
	margin-bottom: 0;
}

/* Services Grid Section */
.services-section {
	background-color: var(--bg-white);
}

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

.service-card {
	position: relative;
	height: 48rem;
	border-radius: 1.2rem;
	overflow: hidden;
	color: var(--bg-white);
	box-shadow: var(--shadow-premium);
	cursor: pointer;
}

.service-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 2;
	transition: var(--transition-smooth);
}

.service-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 4rem;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.service-title {
	font-size: 3.2rem;
}

.service-desc {
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.8);
	opacity: 0;
	transform: translateY(15px);
	transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	max-height: 0;
	overflow: hidden;
}

.service-link {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-color);
}

.service-link svg {
	transition: var(--transition-smooth);
}

/* Hover effects for cards */
.service-card:hover .service-card-image {
	transform: scale(1.08);
}

.service-card:hover .service-card-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.service-card:hover .service-desc {
	opacity: 1;
	transform: translateY(0);
	max-height: 10rem;
	margin-bottom: 1rem;
}

.service-card:hover .service-link svg {
	transform: translateX(5px);
}

/* How It Works Section */
.how-it-works {
	background-color: var(--bg-light);
}

.steps-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30rem, 40rem));
	justify-content: center;
	gap: 5rem;
}

.step-card {
	background-color: var(--bg-white);
	padding: 5rem 4rem;
	border-radius: 1.6rem;
	box-shadow: var(--shadow-subtle);
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	transition: var(--transition-smooth);
}

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

.step-number {
	position: absolute;
	top: 4rem;
	right: 4rem;
	font-size: 8rem;
	font-family: var(--font-serif);
	color: rgba(250, 198, 0, 0.15);
	font-weight: 600;
	line-height: 1;
}

.step-icon-container {
	width: 6.4rem;
	height: 6.4rem;
	border-radius: 50%;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-color);
	font-size: 2.2rem;
	box-shadow: 0 4px 10px rgba(250, 198, 0, 0.3);
}

.step-title {
	font-size: 2.4rem;
	color: var(--dark-color);
	margin-top: 1rem;
}

.step-desc {
	font-size: 1.6rem;
	color: var(--text-muted);
}

/* Wellness Pros Showcase */
.pros-section {
	background-color: var(--bg-white);
	overflow: hidden;
}

.pros-slider-wrapper {
	position: relative;
	width: 100%;
}

.pros-slider-container {
	display: flex;
	gap: 3rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 2rem 0;
	scrollbar-width: none; /* Firefox */
}

.pros-slider-container::-webkit-scrollbar {
	display: none; /* Chrome/Safari */
}

.pro-card {
	flex: 0 0 31rem;
	background-color: var(--bg-light);
	border-radius: 1.6rem;
	overflow: hidden;
	box-shadow: var(--shadow-subtle);
	transition: var(--transition-smooth);
	border: 1px solid var(--border-color);
}

.pro-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-premium);
	border-color: var(--primary-color);
}

.pro-image-wrapper {
	position: relative;
	height: 34rem;
	background-color: #DDD;
}

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

.pro-badge {
	position: absolute;
	top: 2rem;
	left: 2rem;
	background-color: var(--dark-color);
	color: var(--bg-white);
	font-size: 1.2rem;
	font-weight: 600;
	padding: 0.6rem 1.4rem;
	border-radius: 2rem;
	letter-spacing: 0.05em;
}

.pro-details {
	padding: 2.5rem;
}

.pro-name-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.8rem;
}

.pro-name {
	font-size: 2rem;
	color: var(--dark-color);
}

.pro-rating {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--dark-color);
}

.pro-rating svg {
	color: var(--primary-color);
}

.pro-role {
	font-size: 1.4rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
}

.pro-bio {
	font-size: 1.4rem;
	line-height: 1.5;
	color: var(--text-color);
}

.slider-controls {
	display: flex;
	gap: 1.5rem;
}

.btn-arrow {
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-color);
	background-color: var(--bg-white);
	box-shadow: var(--shadow-subtle);
}

.btn-arrow:hover {
	background-color: var(--dark-color);
	color: var(--bg-white);
	border-color: var(--dark-color);
}

/* Trust & Vetting Safety Section */
.safety-section {
	background-color: var(--bg-light);
}

.safety-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 8rem;
	align-items: center;
}

.safety-img-container {
	position: relative;
	border-radius: 2rem;
	overflow: hidden;
	height: 55rem;
	box-shadow: var(--shadow-floating);
}

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

.safety-img-badge {
	position: absolute;
	bottom: 4rem;
	left: 4rem;
	background-color: var(--bg-white);
	padding: 3rem;
	border-radius: 1.6rem;
	box-shadow: var(--shadow-floating);
	display: flex;
	align-items: center;
	gap: 2rem;
}

.safety-badge-icon {
	width: 5.6rem;
	height: 5.6rem;
	border-radius: 50%;
	background-color: rgba(250, 198, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-size: 2.4rem;
}

.safety-badge-title {
	font-size: 1.8rem;
	color: var(--dark-color);
	margin-bottom: 0.4rem;
}

.safety-badge-desc {
	font-size: 1.4rem;
	color: var(--text-muted);
}

.safety-list {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.safety-item {
	display: flex;
	gap: 2.5rem;
}

.safety-item-icon {
	flex-shrink: 0;
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 50%;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-color);
	font-size: 2rem;
}

.safety-item-content {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.safety-item-title {
	font-size: 2.2rem;
	color: var(--dark-color);
}

.safety-item-desc {
	font-size: 1.6rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* Testimonials / Customer Reviews Slider */
.reviews-section {
	background-color: var(--bg-white);
}

.testimonial-card {
	max-width: 85rem;
	margin: 0 auto;
	text-align: center;
	display: none;
	animation: fadeIn 0.8s ease;
}

.testimonial-card.active {
	display: block;
}

.review-stars {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 3rem;
	color: var(--primary-color);
	font-size: 2.4rem;
}

.review-quote {
	font-size: 3.2rem;
	line-height: 1.4;
	color: var(--dark-color);
	margin-bottom: 4rem;
}

.reviewer-name {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 0.5rem;
}

.reviewer-meta {
	font-size: 1.4rem;
	color: var(--text-muted);
}

.reviews-dots {
	display: flex;
	justify-content: center;
	gap: 1.2rem;
	margin-top: 4rem;
}

.dot {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background-color: var(--border-color);
	cursor: pointer;
	transition: var(--transition-smooth);
}

.dot.active {
	background-color: var(--primary-color);
	transform: scale(1.3);
}

/* Call to Action Footer Panel */
.cta-section {
	background-color: var(--dark-color);
	color: var(--bg-white);
	padding: 12rem 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.08;
	background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
	background-size: 24px 24px;
}

.cta-container {
	max-width: 80rem;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
}

.cta-title {
	font-size: 5.6rem;
	line-height: 1.15;
}

.cta-desc {
	font-size: 2rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 60rem;
	margin-bottom: 2rem;
}

.cta-buttons {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: center;
}

.btn-secondary {
	background-color: transparent;
	color: var(--bg-white);
	font-size: 1.5rem;
	font-weight: 600;
	padding: 1.2rem 2.8rem;
	border-radius: 3rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--bg-white);
}

/* Structured Footer */
footer {
	background-color: var(--bg-light);
	border-top: 1px solid var(--border-color);
	padding: 8rem 3rem 4rem 3rem;
}

.footer-container {
	max-width: 128rem;
	margin: 0 auto;
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr repeat(2, 1fr);
	gap: 6rem;
	margin-bottom: 6rem;
}

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

.footer-brand .logo-text {
	font-size: 3.6rem;
}

.footer-about-text {
	font-size: 1.5rem;
	color: var(--text-muted);
	line-height: 1.6;
	max-width: 30rem;
}

.social-links {
	display: flex;
	gap: 1.5rem;
}

.social-icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background-color: var(--bg-white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-subtle);
	border: 1px solid var(--border-color);
}

.social-icon:hover {
	background-color: var(--primary-color);
	color: var(--dark-color);
	border-color: var(--primary-color);
	transform: translateY(-2px);
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.footer-col-title {
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--dark-color);
}

.footer-col-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-col-links a {
	font-size: 1.5rem;
	color: var(--text-muted);
}

.footer-col-links a:hover {
	color: var(--dark-color);
	padding-left: 5px;
}

.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding-top: 4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.copyright {
	font-size: 1.4rem;
	color: var(--text-muted);
}

.footer-legal-links {
	display: flex;
	gap: 3rem;
	font-size: 1.4rem;
	color: var(--text-muted);
}

.footer-legal-links a:hover {
	color: var(--dark-color);
}

/* Booking Drawer / Slide-out Modal */
.booking-drawer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-smooth);
}

.booking-drawer-overlay.open {
	opacity: 1;
	visibility: visible;
}

.booking-drawer {
	position: fixed;
	top: 0;
	right: -48rem;
	width: 48rem;
	max-width: 100%;
	height: 100%;
	background-color: var(--bg-white);
	z-index: 2001;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
	transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: flex;
	flex-direction: column;
}

.booking-drawer-overlay.open .booking-drawer {
	right: 0;
}

.drawer-header {
	padding: 3rem;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.drawer-title {
	font-size: 2.4rem;
	color: var(--dark-color);
}

.btn-close-drawer {
	font-size: 2.8rem;
	color: var(--text-muted);
	line-height: 1;
}

.btn-close-drawer:hover {
	color: var(--dark-color);
}

.drawer-content {
	flex-grow: 1;
	overflow-y: auto;
	padding: 3rem;
}

.drawer-footer {
	padding: 3rem;
	border-top: 1px solid var(--border-color);
	background-color: var(--bg-light);
}

.drawer-summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 2rem;
}

/* Service Options Grid in Drawer */
.drawer-services-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.drawer-service-option {
	border: 1px solid var(--border-color);
	border-radius: 1rem;
	padding: 2rem;
	cursor: pointer;
	transition: var(--transition-smooth);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.drawer-service-option:hover {
	border-color: var(--primary-color);
	background-color: rgba(250, 198, 0, 0.05);
}

.drawer-service-option.selected {
	border-color: var(--primary-color);
	background-color: rgba(250, 198, 0, 0.1);
	box-shadow: 0 0 0 1px var(--primary-color);
}

.option-details {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.option-name {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--dark-color);
}

.option-duration {
	font-size: 1.3rem;
	color: var(--text-muted);
}

.option-price {
	font-size: 1.8rem;
	font-weight: 600;
	display: inline-block;
	color: var(--dark-color);
	width: 36%;
	text-align: right;
}

/* Animations */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomHero {
	from { transform: scale(1.02); }
	to { transform: scale(1.08); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
	html {
		font-size: 55%; /* 1rem = 8.8px */
	}

	.hero-container {
		grid-template-columns: 1fr;
		gap: 6rem;
		padding-top: 4rem;
		padding-bottom: 6rem;
	}

	.hero-section {
		height: auto;
		min-height: auto;
	}

	.hero-booking-box {
		justify-self: center;
		max-width: 55rem;
	}

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

	.safety-grid {
		grid-template-columns: 1fr;
		gap: 6rem;
	}

	.safety-img-container {
		height: 40rem;
	}
}

/* ============================================================
RESPONSIVE — TABLET  (max-width: 1024px)
============================================================ */
@media (max-width: 1024px) {
	html { font-size: 55%; }

	.nav-container { padding: 1.5rem 2rem; }
	.nav-links { gap: 2rem; }

	.hero-container {
		grid-template-columns: 1fr;
		padding: 0 2rem;
	}
	.hero-title { font-size: 5rem; }

	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.service-card  { height: 42rem; }

	.safety-grid  { grid-template-columns: 1fr; gap: 4rem; }
	.safety-img-container { height: 40rem; }

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

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

	.footer-top { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ============================================================
RESPONSIVE — MOBILE  (max-width: 768px)
============================================================ */
@media (max-width: 768px) {
	html { font-size: 50%; }

	/* ---------- Navigation ---------- */
	header { position: sticky; top: 0; z-index: 1000; }
	.why-urban-card {
		flex: none;
		flex-basis: 80%;
	}
	.operate-grid {
		gap: 1rem;
	}
	.why-urban-grid {
		overflow-x: auto !important;
		scroll-behavior: smooth !important;
		padding: 2rem 0;
		/* scrollbar-width: none; */
		display: flex !important;
	}
	.nav-container {
		padding: 1.2rem 2rem;
		position: relative;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--bg-white);
		border-bottom: 1px solid var(--border-color);
		padding: 2rem 2.4rem;
		box-shadow: var(--shadow-premium);
		gap: 2rem;
		z-index: 999;
	}
	.nav-links.mobile-open { display: flex; }

	.nav-actions {
		display: none; /* Hidden; shown inside mobile menu via JS */
	}
	.nav-actions.mobile-open {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
		padding: 0 2.4rem 2rem;
		background: var(--bg-white);
	}

	.menu-toggle {
		display: flex;
		order: 3;
	}

	/* ---------- Sections ---------- */
	section { padding: 7rem 2rem; }
	.section-container { padding: 0; }

	.section-title  { font-size: 3.6rem !important; }
	.section-subtitle { font-size: 1.6rem; }

	.section-header-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 2rem;
	}

	/* ---------- Hero ---------- */
	.hero-section {
		height: auto;
		min-height: 70vh;
		padding: 6rem 0 4rem;
	}
	.hero-container {
		grid-template-columns: 1fr;
		padding: 0 2rem;
		gap: 3rem;
	}
	.hero-content { max-width: 100%; }
	.hero-title {
		font-size: 4rem !important;
		line-height: 1.2;
		margin-bottom: 2rem;
	}
	.hero-features { gap: 1.2rem; margin-bottom: 3rem; }
	.hero-feature-item { font-size: 1.6rem; }

	.trustpilot-badge { flex-wrap: wrap; gap: 0.8rem; }

	/* ---------- Services ---------- */
	.services-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.service-card  { height: 38rem; }
	.service-card-content { padding: 2.5rem; }
	.service-title { font-size: 2.8rem; }

	/* ---------- How It Works ---------- */
	.steps-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.step-card { padding: 3.5rem 3rem; }
	.step-number { font-size: 6rem; }

	/* ---------- Wellness Pros ---------- */
	.pros-slider-container { gap: 2rem; padding: 1rem 0; }
	.pro-card { flex: 0 0 26rem; }
	.pro-image-wrapper { height: 28rem; }

	/* ---------- Safety ---------- */
	.safety-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.safety-img-container { height: 34rem; }
	.safety-img-badge { bottom: 2rem; left: 2rem; padding: 2rem; }
	.safety-badge-title { font-size: 1.8rem; }

	/* ---------- Why Urban ---------- */
	.why-urban-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-top: 4rem;
	}
	.why-urban-card { padding: 3rem; }

	/* ---------- Operations ---------- */
	.operate-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-top: 4rem;
	}
	.operate-card { padding: 3rem; }

	/* ---------- CTA ---------- */
	.cta-container { padding: 0 2rem; text-align: center; }
	.cta-title { font-size: 4rem !important; }
	.review-quote { font-size: 2.2rem !important; }
	.cta-desc { font-size: 1.7rem !important; }
	.cta-buttons { flex-direction: column; align-items: center; gap: 1.5rem; }

	/* ---------- Footer ---------- */
	.footer-top { grid-template-columns: 1fr; gap: 3rem; }
	.footer-bottom {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
	}
	.footer-legal-links {
		flex-direction: column;
		gap: 0.8rem;
		align-items: center;
	}

	/* ---------- Booking Drawer ---------- */
	.booking-drawer {
		width: 100% !important;
		max-width: 100% !important;
		border-radius: 2rem 2rem 0 0;
		height: 90vh;
		bottom: 0;
		right: 0;
		left: 0;
		top: auto;
		position: fixed;
		overflow-y: auto;
	}
	.booking-drawer-overlay {
		align-items: flex-end;
	}
	.drawer-service-option { padding: 1.6rem; }
	.option-name  { font-size: 1.6rem; }
	.option-price { font-size: 1.8rem; }
}

/* ============================================================
RESPONSIVE — SMALL MOBILE  (max-width: 480px)
============================================================ */
@media (max-width: 480px) {
	html { font-size: 46%; }

	/* Language pill: shrink on very small screens */
	.lang-switch-pill {
		width: 14rem;
		height: 3rem;
		font-size: 1rem;
	}
	.lang-switch-bg {
		height: 2.4rem;
		width: 2.8rem;
	}
	.lang-switch-option { font-size: 1rem; line-height: 2.4rem; }
	.lang-switch-pill[data-lang="vi"] .lang-switch-bg { transform: translateX(2.8rem); }
	.lang-switch-pill[data-lang="ko"] .lang-switch-bg { transform: translateX(5.6rem); }
	.lang-switch-pill[data-lang="ja"] .lang-switch-bg { transform: translateX(8.4rem); }
	.lang-switch-pill[data-lang="zh"] .lang-switch-bg { transform: translateX(11.2rem); }

	.hero-title { font-size: 3.4rem !important; }
	.hero-section { min-height: 60vh; }

	.service-card { height: 34rem; }

	.btn-primary {
		font-size: 1.6rem !important;
		padding: 1.4rem 3rem !important;
	}

	/* Booking drawer full height on tiny screens */
	.booking-drawer { height: 95vh; }
}

/* Custom Language Switcher (Premium Sliding Pill) */
.lang-switch-pill {
	position: relative;
	display: flex;
	background-color: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 2rem;
	padding: 0.2rem;
	width: 16.4rem;
	height: 3.4rem;
	cursor: pointer;
	align-items: center;
	user-select: none;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lang-switch-bg {
	position: absolute;
	top: 0.2rem;
	left: 0.2rem;
	height: 2.8rem;
	width: 3.2rem;
	background-color: var(--dark-color);
	border-radius: 1.6rem;
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	z-index: 1;
}

.lang-switch-option {
	position: relative;
	z-index: 2;
	flex: 1;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text-color);
	height: 100%;
	line-height: 2.8rem;
	border: none;
	background: none;
	cursor: pointer;
	transition: color 0.3s ease;
}

.lang-switch-option.active {
	color: var(--bg-white);
}

.lang-switch-pill[data-lang="vi"] .lang-switch-bg {
	transform: translateX(3.2rem);
}
.lang-switch-pill[data-lang="ko"] .lang-switch-bg {
	transform: translateX(6.4rem);
}
.lang-switch-pill[data-lang="ja"] .lang-switch-bg {
	transform: translateX(9.6rem);
}
.lang-switch-pill[data-lang="zh"] .lang-switch-bg {
	transform: translateX(12.8rem);
}

/* Why Urban Section */
.why-urban-section {
	background-color: var(--bg-light);
	padding: 10rem 3rem;
}

.why-urban-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
	margin-top: 6rem;
}

.why-urban-card {
	background: var(--bg-white);
	padding: 4rem;
	border-radius: 1.6rem;
	border: 1px solid var(--border-color);
	transition: var(--transition-smooth);
}

.why-urban-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-premium);
}

.why-urban-icon {
	font-size: 3rem;
	margin-bottom: 2rem;
	display: inline-block;
}

.why-urban-title {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-serif);
	color: var(--dark-color);
}

.why-urban-desc {
	font-size: 1.6rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Where We Operate Section */
.operate-section {
	background-color: var(--bg-white);
	padding: 10rem 3rem;
	border-top: 1px solid var(--border-color);
}

.operate-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	margin-top: 6rem;
}

.operate-card {
	background: var(--bg-light);
	padding: 4rem;
	border-radius: 1.6rem;
	border: 1px solid var(--border-color);
	transition: var(--transition-smooth);
}

.operate-card:hover {
	border-color: var(--primary-color);
}

.operate-title {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-serif);
	color: var(--dark-color);
}

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

/* App Badges in CTA */
.app-download-badges {
	display: flex;
	gap: 1.5rem;
	margin-top: 3rem;
}

.app-badge {
	height: 4.8rem;
	transition: var(--transition-smooth);
}

.app-badge:hover {
	transform: translateY(-2px);
	opacity: 0.9;
}

/* Mobile Menu Language Switcher */
.mobile-only-lang { display: none; }
@media (max-width: 768px) { .mobile-only-lang { display: block; } }
