/* Base styles */
:root {
	--bg: #F5F9FF;
	--surface: #FFFFFF;
	--text: #0A1628;
	--muted: #4A5568;
	--primary: #2563EB;
	--primary-600: #1D4ED8;
	--primary-50: #EFF6FF;
	--navy: #0F172A;
	--ring: rgba(37, 99, 235, 0.25);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--border: #E2E8F0;
	--border-light: #F1F5F9;
}

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

html, body { 
	height: 100%; 
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.7;
	padding-top: var(--header-h, 0px);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	width: min(1200px, 94%);
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--navy);
	box-shadow: var(--shadow-sm);
	z-index: 1000;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled { 
	box-shadow: var(--shadow-md); 
	background-color: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(12px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}

.brand { 
	display: flex; 
	align-items: center; 
	gap: 12px; 
	transition: transform 0.2s ease;
}

.brand:hover {
	transform: translateX(2px);
}

.logo { 
	width: 44px; 
	height: 44px; 
	border-radius: 12px; 
	object-fit: cover; 
	object-position: center; 
	box-shadow: var(--shadow-md); 
	background: transparent;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-lg);
}

.site-title { 
	margin: 0; 
	font-size: 1.3rem; 
	font-weight: 700;
	letter-spacing: -0.02em; 
	color: #fff; 
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.site-nav ul { 
	display: flex; 
	gap: 4px; 
	list-style: none; 
	margin: 0; 
	padding: 0; 
	align-items: center; 
	background: transparent; 
	border: none; 
	border-radius: 0; 
}

.site-nav a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.85);
	padding: 10px 16px;
	border-radius: 8px;
	background: transparent;
	border: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.site-nav a::before {
	content: '';
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 60%;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
	transition: transform 0.3s ease;
}

.site-nav a:hover, .site-nav a:focus { 
	color: #fff; 
	background: rgba(255, 255, 255, 0.1); 
	outline: none; 
}

.site-nav a:hover::before,
.site-nav a:focus::before {
	transform: translateX(-50%) scaleX(1);
}

.site-nav a.active { 
	color: #fff; 
	background: rgba(37, 99, 235, 0.2); 
}

.site-nav a.active::before {
	transform: translateX(-50%) scaleX(1);
}

.site-nav a.nav-cta { 
	background: #fff; 
	color: var(--navy); 
	padding: 10px 20px; 
	border-radius: 8px; 
	margin-left: 8px; 
	font-weight: 600;
	box-shadow: var(--shadow-sm);
}

.site-nav a.nav-cta::before {
	display: none;
}

.site-nav a.nav-cta:hover, .site-nav a.nav-cta:focus { 
	background: var(--primary-50); 
	color: var(--primary-600); 
	transform: translateY(-1px);
	box-shadow: var(--shadow);
}

.nav-toggle { 
	display: none; 
	background: rgba(255, 255, 255, 0.1); 
	border: 1px solid rgba(255, 255, 255, 0.2); 
	padding: 10px; 
	border-radius: 8px; 
	cursor: pointer;
	transition: all 0.2s ease;
}

.nav-toggle:hover {
	background: rgba(255, 255, 255, 0.15);
}

.nav-toggle:focus { 
	outline: 2px solid var(--ring); 
	outline-offset: 2px;
}

.nav-toggle .bar { 
	display: block; 
	width: 24px; 
	height: 2.5px; 
	background: #fff; 
	margin: 5px 0; 
	border-radius: 2px; 
	transition: all 0.3s ease;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { left: 10px; top: 10px; width: auto; height: auto; padding: 8px 10px; background: var(--primary); color: #fff; border-radius: 8px; }
.lang { margin-left: 10px; }

/* Hero */
.hero {
	background: linear-gradient(135deg, #EFF6FF 0%, #DBE8FF 50%, #E0F2FE 100%);
	border-radius: 24px;
	padding: 80px 40px;
	margin: 32px 0 12px;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.hero-content { 
	max-width: 760px; 
	position: relative;
	z-index: 1;
}

.hero h2 { 
	margin-top: 12px; 
	font-size: clamp(2rem, 5vw, 3.5rem); 
	line-height: 1.1; 
	letter-spacing: -0.03em; 
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 20px;
}

.hero p { 
	color: var(--muted); 
	margin-bottom: 32px; 
	font-size: 1.125rem;
	line-height: 1.7;
	max-width: 600px;
}

/* Split hero layout */
.hero-split { 
	display: grid; 
	grid-template-columns: 1.1fr 1fr; 
	align-items: center; 
	gap: 48px; 
}

.badge { 
	display: inline-flex; 
	align-items: center;
	background: rgba(37, 99, 235, 0.1); 
	color: var(--primary-600); 
	padding: 8px 16px; 
	border-radius: 999px; 
	font-size: 0.875rem; 
	font-weight: 600;
	letter-spacing: 0.02em;
	border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-illustration { 
	margin: 0; 
	position: relative;
	z-index: 1;
}

.hero-illustration .hero-image { 
	width: 100%; 
	height: auto; 
	display: block; 
	border-radius: 20px; 
	box-shadow: var(--shadow-lg); 
	object-fit: cover;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-illustration:hover .hero-image {
	transform: translateY(-4px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-illustration .fallback { 
	width: 100%; 
	height: auto; 
	display: block; 
	border-radius: 20px; 
	box-shadow: var(--shadow-lg); 
}

/* Slider */
.slider { 
	position: relative; 
	background: var(--surface); 
	border: 1px solid var(--border); 
	border-radius: 20px; 
	box-shadow: var(--shadow-md); 
	padding: 32px; 
	overflow: hidden;
}

.slides { 
	display: grid; 
	grid-auto-flow: column; 
	grid-auto-columns: 100%; 
	overflow: hidden; 
}

.slide { 
	margin: 0; 
	font-size: 1.125rem; 
	color: var(--text); 
	line-height: 1.7;
	font-style: italic;
}

.slide footer { 
	color: var(--muted); 
	margin-top: 16px; 
	font-size: 0.95rem;
	font-weight: 600;
	font-style: normal;
}

.slider-controls { 
	display: flex; 
	gap: 12px; 
	margin-top: 24px; 
}

/* FAQ */
.faq details { 
	background: var(--surface); 
	border: 1px solid var(--border-light); 
	border-radius: 16px; 
	padding: 20px 24px; 
	margin-bottom: 16px; 
	box-shadow: var(--shadow);
	transition: all 0.2s ease;
}

.faq details:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--border);
}

.faq summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--navy);
	font-size: 1.05rem;
}

.faq summary:hover {
	color: var(--primary);
}

/* Gallery */
.gallery-grid { 
	display: grid; 
	grid-template-columns: repeat(3, 1fr); 
	gap: 20px; 
}

.thumb { 
	width: 100%; 
	height: 240px; 
	object-fit: cover; 
	border-radius: 16px; 
	box-shadow: var(--shadow); 
	cursor: zoom-in;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
}

.thumb:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.lightbox { 
	position: fixed; 
	inset: 0; 
	background: rgba(0, 0, 0, 0.9); 
	backdrop-filter: blur(8px);
	display: none; 
	align-items: center; 
	justify-content: center; 
	padding: 20px; 
	z-index: 2000;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.lightbox.open { 
	display: flex; 
}

.lightbox-image { 
	max-width: 90vw; 
	max-height: 85vh; 
	border-radius: 16px; 
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
	from {
		transform: scale(0.9);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.lightbox-close { 
	position: absolute; 
	top: 24px; 
	right: 24px; 
	background: rgba(255, 255, 255, 0.95); 
	border: none; 
	font-size: 28px; 
	width: 44px; 
	height: 44px; 
	border-radius: 12px; 
	cursor: pointer;
	transition: all 0.2s ease;
	color: var(--text);
	font-weight: 300;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-close:hover {
	background: #fff;
	transform: scale(1.1);
}

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

.contact-form input, 
.contact-form textarea { 
	width: 100%; 
	padding: 14px 16px; 
	border: 1px solid var(--border); 
	border-radius: 12px; 
	font: inherit;
	background: var(--bg);
	transition: all 0.2s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus { 
	outline: none;
	box-shadow: 0 0 0 3px var(--ring); 
	border-color: var(--primary);
	background: #fff;
}

.form-note { 
	margin-top: 12px; 
	color: var(--muted); 
	font-size: 0.9rem;
}

/* Sections */
.section { 
	padding: 48px 0; 
}

.section h3 { 
	margin: 0 0 32px; 
	font-size: clamp(1.75rem, 4vw, 2.25rem); 
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--navy);
	text-align: center;
}

.section > .container { 
	padding: 0; 
}

/* Cards */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.card {
	background: var(--surface);
	border-radius: 20px;
	padding: 32px;
	box-shadow: var(--shadow);
	border: 1px solid var(--border-light);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--primary-600));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

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

.card:hover::before {
	transform: scaleX(1);
}

.card h4 { 
	margin: 0 0 12px; 
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--navy);
}

.card p { 
	color: var(--muted); 
	margin: 0 0 16px; 
	line-height: 1.7;
}

.card details { 
	border-top: 1px dashed var(--border); 
	padding-top: 16px; 
	margin-top: 16px;
}

.card summary { 
	cursor: pointer; 
	color: var(--primary); 
	font-weight: 600;
	transition: color 0.2s ease;
}

.card summary:hover {
	color: var(--primary-600);
}

/* Aims */
.aims { 
	display: grid; 
	grid-template-columns: repeat(3, 1fr); 
	gap: 24px; 
}

.aim { 
	background: var(--surface); 
	border: 1px solid var(--border-light); 
	border-radius: 20px; 
	padding: 32px; 
	box-shadow: var(--shadow);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aim:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--border);
}
.cta { 
	margin-top: 24px; 
	display: flex; 
	gap: 16px; 
	flex-wrap: wrap;
}

/* Buttons */
.btn { 
	display: inline-flex; 
	align-items: center;
	justify-content: center;
	text-decoration: none; 
	color: var(--navy); 
	background: var(--primary-50); 
	padding: 14px 28px; 
	border-radius: 12px; 
	font-weight: 600; 
	font-size: 1rem;
	border: none;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn:hover { 
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	background: #DBE8FF;
}

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

.btn.primary { 
	background: var(--primary); 
	color: #fff; 
	box-shadow: var(--shadow);
}

.btn.primary:hover {
	background: var(--primary-600);
	box-shadow: var(--shadow-md);
}

.btn:focus { 
	outline: 3px solid var(--ring); 
	outline-offset: 2px; 
}

.btn:focus-visible { 
	outline: 3px solid var(--ring); 
	outline-offset: 2px; 
}

/* Footer */
.site-footer { 
	margin: 48px 0 0; 
	color: rgba(255, 255, 255, 0.85); 
	background: var(--navy); 
	border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

.site-footer a { 
	color: rgba(255, 255, 255, 0.85); 
	transition: color 0.2s ease;
	text-decoration: none;
}

.site-footer a:hover { 
	color: #fff; 
	text-decoration: underline;
}

.site-footer h4 { 
	color: #fff; 
	font-weight: 700;
	margin-bottom: 16px;
	font-size: 1.125rem;
}

.footer-top { 
	display: grid; 
	grid-template-columns: 2fr 1fr 1.2fr; 
	gap: 48px; 
	padding: 48px 0; 
}

.footer-col h4 { 
	margin: 0 0 16px; 
	color: #fff; 
}

.footer-col p {
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
}

.footer-links { 
	list-style: none; 
	padding: 0; 
	margin: 0; 
}

.footer-links li { 
	margin: 10px 0; 
}

.footer-links a { 
	color: rgba(255, 255, 255, 0.75); 
	text-decoration: none; 
	transition: all 0.2s ease;
	display: inline-block;
}

.footer-links a:hover { 
	color: #fff; 
	transform: translateX(4px);
}

.social { 
	display: flex; 
	gap: 12px; 
	margin-top: 16px; 
}

.social-link { 
	display: inline-flex; 
	width: 40px; 
	height: 40px; 
	align-items: center; 
	justify-content: center; 
	background: rgba(255, 255, 255, 0.1); 
	color: #fff; 
	border-radius: 10px; 
	transition: all 0.2s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom { 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	padding: 24px 0; 
	border-top: 1px solid rgba(255, 255, 255, 0.1); 
	color: rgba(255, 255, 255, 0.6);
}

.small { 
	font-size: 0.875rem; 
}

/* Booking enhancements */
.booking-availability {
	background: var(--surface);
	border: 1px solid var(--border-light);
	border-radius: 20px;
	padding: 24px;
	box-shadow: var(--shadow-md);
	margin-bottom: 24px;
}
.slot-list {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	color: var(--muted);
}

.slot-list li {
	background: var(--primary-50);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 0.95rem;
	font-weight: 500;
	transition: all 0.2s ease;
}

.slot-list li:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	transform: translateY(-1px);
}
.booking-progress {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 14px;
}
.progress-step {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--surface);
	border: 1px solid var(--border-light);
	border-radius: 16px;
	padding: 16px 20px;
	box-shadow: var(--shadow);
	color: var(--muted);
	font-weight: 600;
	transition: all 0.2s ease;
}
.progress-step span {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(91, 176, 255, 0.2);
	color: var(--navy);
}
.progress-step.active {
	color: var(--text);
	border-color: var(--primary);
}
.progress-step.completed span {
	background: var(--primary);
	color: #fff;
}
.booking-form fieldset {
	border: none;
	padding: 0;
	margin: 0;
}
.booking-form fieldset[hidden] {
	display: none;
}
.booking-form label {
	display: block;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 10px;
}
.booking-form input,
.booking-form textarea,
.booking-form select {
	width: 100%;
	margin-top: 8px;
	padding: 14px 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	font: inherit;
	background: var(--bg);
	transition: all 0.2s ease;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
	background: #fff;
}
.booking-form input:focus-visible,
.booking-form textarea:focus-visible,
.booking-form select:focus-visible {
	outline: 3px solid var(--ring);
	border-color: var(--primary);
}
.booking-form .grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.remember {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	color: var(--muted);
	margin: 6px 0 0;
}
.remember input { width: auto; }
.slot-buttons {
	background: var(--primary-50);
	border: 2px dashed rgba(37, 99, 235, 0.3);
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 20px;
}

.slot-buttons p {
	margin: 0 0 12px;
	color: var(--muted);
	font-weight: 600;
	font-size: 0.95rem;
}

.slot-buttons button {
	border: 2px solid rgba(37, 99, 235, 0.3);
	background: #fff;
	color: var(--navy);
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 0.95rem;
}

.slot-buttons button:hover {
	border-color: var(--primary);
	background: var(--primary-50);
	transform: translateY(-1px);
}

.slot-buttons button.active {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	box-shadow: var(--shadow-sm);
}
.form-navigation {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 10px;
}
.booking-summary {
	margin-top: 24px;
	padding: 32px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--primary-50), #E0F2FE);
	color: var(--text);
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(37, 99, 235, 0.2);
}
.booking-summary[hidden] {
	display: none;
}

/* Chat helper */
.chat-trigger {
	position: fixed;
	bottom: 32px;
	right: 32px;
	background: var(--primary);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 16px 24px;
	box-shadow: var(--shadow-lg);
	cursor: pointer;
	font-weight: 600;
	z-index: 1100;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 0.95rem;
}

.chat-trigger:hover {
	background: var(--primary-600);
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.3);
}

.chat-trigger:active {
	transform: translateY(0) scale(1);
}

.chat-trigger:focus-visible {
	outline: 3px solid var(--ring);
	outline-offset: 2px;
}
.chat-panel {
	position: fixed;
	bottom: 32px;
	right: 32px;
	background: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(12px);
	border-radius: 20px;
	padding: 4px;
	display: none;
	z-index: 1200;
	animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.chat-panel[aria-hidden="false"] {
	display: block;
}

.chat-panel__inner {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	width: min(380px, 90vw);
	box-shadow: var(--shadow-lg);
}
.chat-panel header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-light);
}

.chat-panel header h4 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--navy);
}

.chat-close {
	background: var(--border-light);
	border: none;
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	transition: all 0.2s ease;
}

.chat-close:hover {
	background: var(--border);
	color: var(--text);
}
.chat-panel form label {
	font-weight: 600;
	color: var(--text);
	display: block;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.chat-panel input,
.chat-panel textarea {
	width: 100%;
	margin-top: 8px;
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: 10px;
	font: inherit;
	transition: all 0.2s ease;
	background: var(--bg);
}

.chat-panel input:focus,
.chat-panel textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--ring);
	background: #fff;
}
.chat-note {
	margin-top: 8px;
	font-size: 0.9rem;
	color: var(--muted);
}

/* Dashboard */
.dashboard-table {
	background: var(--surface);
	border-radius: 20px;
	padding: 24px;
	box-shadow: var(--shadow-md);
	overflow-x: auto;
	border: 1px solid var(--border-light);
}

.dashboard-table table {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
}

.dashboard-table th,
.dashboard-table td {
	text-align: left;
	padding: 16px;
	border-bottom: 1px solid var(--border-light);
	font-size: 0.95rem;
}

.dashboard-table th {
	font-weight: 700;
	color: var(--navy);
	background: var(--bg);
	position: sticky;
	top: 0;
}

.dashboard-table tbody tr {
	transition: background 0.2s ease;
}

.dashboard-table tbody tr:hover {
	background: var(--bg);
}

.dashboard-table tbody tr:last-child td {
	border-bottom: none;
}

.dashboard-table button {
	border: 1px solid var(--border);
	background: #fff;
	color: var(--primary);
	border-radius: 10px;
	padding: 8px 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 0.9rem;
}

.dashboard-table button:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}
.dashboard-table button.confirm {
	background: #d1fae5;
	border-color: #34d399;
	color: #065f46;
}
.dashboard-table button.defer {
	background: #fee2e2;
	border-color: #f87171;
	color: #7f1d1d;
}

/* Responsive */
@media (max-width: 960px) {
	.card-grid, .aims { 
		grid-template-columns: 1fr 1fr; 
	}
	
	.hero-split { 
		grid-template-columns: 1fr; 
		gap: 32px;
	}
	
	.hero {
		padding: 60px 32px;
	}
	
	.footer-top { 
		grid-template-columns: 1fr 1fr; 
		gap: 32px;
	}
	
	.booking-form .grid { 
		grid-template-columns: 1fr; 
	}
	
	.booking-progress { 
		grid-template-columns: 1fr; 
	}
}

@media (max-width: 640px) {
	.container {
		padding: 0 16px;
	}
	
	.header-inner { 
		padding: 12px 0; 
	}
	
	.site-nav { 
		display: none; 
		position: absolute; 
		top: 100%; 
		left: 0; 
		right: 0; 
		background: var(--navy); 
		box-shadow: var(--shadow-lg);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding: 16px;
	}
	
	.site-nav.open { 
		display: block; 
	}
	
	.site-nav ul { 
		flex-direction: column; 
		padding: 0; 
		gap: 4px; 
	}
	
	.nav-toggle { 
		display: inline-block; 
	}
	
	.hero { 
		padding: 48px 24px; 
		margin: 24px 0 8px;
		border-radius: 20px;
	}
	
	.hero h2 {
		font-size: 2rem;
	}
	
	.card-grid, .aims { 
		grid-template-columns: 1fr; 
		gap: 20px;
	}
	
	.gallery-grid { 
		grid-template-columns: 1fr 1fr; 
	}
	
	.contact-form .grid { 
		grid-template-columns: 1fr; 
	}
	
	.footer-top { 
		grid-template-columns: 1fr; 
		gap: 32px;
		padding: 40px 0;
	}
	
	.footer-bottom { 
		flex-direction: column; 
		gap: 12px; 
		align-items: flex-start; 
		padding: 20px 0;
	}
	
	.chat-trigger { 
		right: 16px; 
		bottom: 16px; 
		padding: 14px 20px;
		font-size: 0.875rem;
	}
	
	.chat-panel { 
		right: 16px; 
		bottom: 16px; 
	}
	
	.cta {
		flex-direction: column;
	}
	
	.btn {
		width: 100%;
		justify-content: center;
	}
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

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

