/**
 * Home Cleaning Service demo — fresh & airy
 *
 * Sky blue, warm cream, coral accent. Room-selector + booking hub.
 * Vertical timeline, single quote banner, pill service areas (no card grids / no 3-col footer).
 */

:root {
	--demo-font-body: "Figtree", system-ui, sans-serif;
	--demo-font-display: "Instrument Serif", Georgia, serif;

	--demo-primary: #0284c7;
	--demo-primary-soft: #e0f2fe;
	--demo-accent: #f97316;
	--demo-accent-soft: #ffedd5;
	--demo-coral: #fb7185;
	--demo-heading: #0c4a6e;
	--demo-text: #334155;
	--demo-muted: #64748b;
	--demo-bg: #fffcf9;
	--demo-bg-alt: #f0f9ff;
	--demo-surface: #ffffff;
	--demo-border: #e2e8f0;
	--demo-radius-lg: 20px;
	--demo-radius-md: 14px;
	--demo-shadow-sm: 0 4px 20px rgba(2, 132, 199, 0.08);
	--demo-shadow-md: 0 20px 50px rgba(2, 132, 199, 0.12);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.demo-home-cleaning .demo-btn-primary {
	background: linear-gradient(135deg, var(--demo-primary) 0%, #0369a1 100%);
	color: #fff;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	padding: 14px 28px;
	box-shadow: 0 8px 24px rgba(2, 132, 199, 0.28);
}

.demo-home-cleaning .demo-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(2, 132, 199, 0.35);
}

.demo-home-cleaning .demo-btn-outline {
	border: 2px solid var(--demo-primary);
	color: var(--demo-primary);
	border-radius: 999px;
	font-weight: 600;
	background: transparent;
}

.demo-home-cleaning .demo-btn-outline:hover {
	background: var(--demo-primary-soft);
}

/* Promo ribbon */
.hc-promo {
	background: linear-gradient(90deg, #0369a1, #0284c7);
	color: #fff;
	text-align: center;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 500;
}

.hc-promo strong {
	color: #fde68a;
}

.hc-promo a {
	color: #bae6fd;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Nav */
.hc-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 252, 249, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--demo-border);
	transition: box-shadow 0.25s ease;
}

.hc-nav.is-scrolled {
	box-shadow: var(--demo-shadow-sm);
}

.hc-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
}

.hc-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hc-brand-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--demo-primary-soft), #fff);
	border: 1px solid #bae6fd;
	display: grid;
	place-items: center;
	font-size: 22px;
}

.hc-brand-text strong {
	display: block;
	font-family: var(--demo-font-display);
	font-size: 22px;
	font-weight: 400;
	color: var(--demo-heading);
	line-height: 1.1;
}

.hc-brand-text span {
	font-size: 12px;
	color: var(--demo-muted);
	font-weight: 500;
}

.hc-nav-links {
	display: flex;
	gap: 28px;
}

.hc-nav-links a {
	font-size: 14px;
	font-weight: 600;
	color: var(--demo-text);
	transition: color 0.2s;
}

.hc-nav-links a:hover {
	color: var(--demo-primary);
}

/* Hero */
.hc-hero {
	padding: clamp(48px, 7vw, 80px) 0 clamp(80px, 10vw, 120px);
	background:
		radial-gradient(circle at 90% 20%, rgba(186, 230, 253, 0.5) 0%, transparent 45%),
		radial-gradient(circle at 10% 80%, rgba(255, 237, 213, 0.4) 0%, transparent 40%),
		var(--demo-bg);
}

.hc-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.hc-hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--demo-surface);
	border: 1px solid var(--demo-border);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--demo-primary);
	margin-bottom: 20px;
}

.hc-hero-title {
	font-family: var(--demo-font-display);
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 400;
	line-height: 1.08;
	color: var(--demo-heading);
	margin-bottom: 20px;
}

.hc-hero-title em {
	font-style: italic;
	color: var(--demo-primary);
}

.hc-hero-lead {
	font-size: 18px;
	color: var(--demo-muted);
	line-height: 1.7;
	margin-bottom: 28px;
	max-width: 480px;
}

.hc-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 32px;
}

.hc-hero-stat strong {
	display: block;
	font-family: var(--demo-font-display);
	font-size: 28px;
	color: var(--demo-heading);
	line-height: 1;
}

.hc-hero-stat span {
	font-size: 13px;
	color: var(--demo-muted);
	font-weight: 500;
}

.hc-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hc-hero-visual {
	position: relative;
}

.hc-hero-img {
	border-radius: var(--demo-radius-lg);
	overflow: hidden;
	box-shadow: var(--demo-shadow-md);
	aspect-ratio: 4 / 5;
}

.hc-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hc-hero-float {
	position: absolute;
	bottom: -24px;
	left: -24px;
	background: var(--demo-surface);
	border-radius: var(--demo-radius-md);
	padding: 16px 20px;
	box-shadow: var(--demo-shadow-md);
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid var(--demo-border);
}

.hc-hero-float-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #dcfce7;
	display: grid;
	place-items: center;
	font-size: 18px;
}

.hc-hero-float strong {
	display: block;
	font-size: 14px;
	color: var(--demo-heading);
}

.hc-hero-float span {
	font-size: 12px;
	color: var(--demo-muted);
}

/* Packages */
.hc-packages {
	padding: clamp(56px, 8vw, 88px) 0;
	background: var(--demo-surface);
}

.hc-packages-header {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 40px;
}

.hc-packages-header h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.8rem, 3.5vw, 2.4rem);
	color: var(--demo-heading);
	margin-bottom: 12px;
}

.hc-packages-header p {
	color: var(--demo-muted);
}

.hc-packages-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}

.hc-package {
	border: 1px solid var(--demo-border);
	border-radius: var(--demo-radius-lg);
	padding: 28px 24px;
	background: var(--demo-bg);
	transition: transform 0.25s, box-shadow 0.25s;
}

.hc-package:hover {
	transform: translateY(-4px);
	box-shadow: var(--demo-shadow-sm);
}

.hc-package.is-featured {
	background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
	border-color: #7dd3fc;
	box-shadow: var(--demo-shadow-md);
	position: relative;
}

.hc-package-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--demo-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 5px 14px;
	border-radius: 999px;
}

.hc-package h3 {
	font-family: var(--demo-font-display);
	font-size: 24px;
	color: var(--demo-heading);
	margin-bottom: 6px;
}

.hc-package .hc-package-price {
	font-size: 32px;
	font-weight: 700;
	color: var(--demo-primary);
	margin-bottom: 4px;
}

.hc-package .hc-package-price span {
	font-size: 14px;
	font-weight: 500;
	color: var(--demo-muted);
}

.hc-package .hc-package-desc {
	font-size: 14px;
	color: var(--demo-muted);
	margin-bottom: 20px;
	min-height: 42px;
}

.hc-package ul {
	margin-bottom: 24px;
}

.hc-package li {
	font-size: 14px;
	color: var(--demo-text);
	padding: 6px 0 6px 24px;
	position: relative;
}

.hc-package li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--demo-primary);
	font-weight: 700;
}

.hc-package .demo-btn {
	width: 100%;
	text-align: center;
	justify-content: center;
}

/* Build your clean — room selector + booking */
.hc-booking-section {
	padding: clamp(56px, 8vw, 96px) 0;
	background: var(--demo-bg-alt);
	position: relative;
}

.hc-booking-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230284c7' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.hc-booking-wrap {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

.hc-room-panel {
	background: var(--demo-surface);
	border-radius: var(--demo-radius-lg);
	border: 1px solid var(--demo-border);
	box-shadow: var(--demo-shadow-sm);
	overflow: hidden;
}

.hc-room-panel-header {
	padding: 28px 28px 0;
}

.hc-room-panel-header h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.6rem, 3vw, 2rem);
	color: var(--demo-heading);
	margin-bottom: 8px;
}

.hc-room-panel-header p {
	font-size: 14px;
	color: var(--demo-muted);
	margin-bottom: 20px;
}

.hc-room-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 28px 20px;
	border-bottom: 1px solid var(--demo-border);
}

.hc-room-tab {
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--demo-muted);
	background: var(--demo-bg);
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.2s;
}

.hc-room-tab.is-active,
.hc-room-tab:hover {
	background: var(--demo-primary-soft);
	color: var(--demo-primary);
	border-color: #bae6fd;
}

.hc-room-content {
	padding: 24px 28px 28px;
}

.hc-room-pane {
	display: none;
}

.hc-room-pane.is-active {
	display: block;
}

.hc-room-pane h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--demo-heading);
	margin-bottom: 16px;
}

.hc-room-checklist {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 16px;
}

.hc-room-checklist li {
	font-size: 14px;
	color: var(--demo-text);
	padding-left: 22px;
	position: relative;
}

.hc-room-checklist li::before {
	content: "◦";
	position: absolute;
	left: 0;
	color: var(--demo-accent);
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	top: -2px;
}

.hc-booking-panel {
	background: var(--demo-surface);
	border-radius: var(--demo-radius-lg);
	border: 2px solid #bae6fd;
	box-shadow: var(--demo-shadow-md);
	overflow: hidden;
}

.hc-booking-panel-header {
	background: linear-gradient(135deg, var(--demo-primary) 0%, #0369a1 100%);
	color: #fff;
	padding: 28px;
}

.hc-booking-panel-header h2 {
	font-family: var(--demo-font-display);
	font-size: 1.75rem;
	font-weight: 400;
	margin-bottom: 8px;
}

.hc-booking-panel-header p {
	font-size: 14px;
	opacity: 0.9;
	line-height: 1.6;
}

.hc-booking-body {
	padding: 24px 28px 28px;
}

.hc-booking-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.hc-booking-tag {
	font-size: 12px;
	font-weight: 600;
	color: var(--demo-primary);
	background: var(--demo-primary-soft);
	padding: 6px 12px;
	border-radius: 999px;
}

.hc-booking-panel .demo-shortcode-placeholder {
	border: 2px dashed #bae6fd;
	border-radius: var(--demo-radius-md);
	background: var(--demo-bg-alt);
	padding: 32px 24px;
	text-align: center;
}

/* Timeline */
.hc-timeline-section {
	padding: clamp(56px, 8vw, 88px) 0;
	background: var(--demo-bg);
}

.hc-timeline-header {
	text-align: center;
	max-width: 520px;
	margin: 0 auto 48px;
}

.hc-timeline-header h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.8rem, 3.5vw, 2.4rem);
	color: var(--demo-heading);
}

.hc-timeline {
	max-width: 640px;
	margin: 0 auto;
	position: relative;
	padding-left: 40px;
}

.hc-timeline::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: linear-gradient(180deg, var(--demo-primary), #bae6fd);
	border-radius: 2px;
}

.hc-timeline-step {
	position: relative;
	padding-bottom: 36px;
}

.hc-timeline-step:last-child {
	padding-bottom: 0;
}

.hc-timeline-dot {
	position: absolute;
	left: -40px;
	top: 4px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--demo-surface);
	border: 3px solid var(--demo-primary);
	display: grid;
	place-items: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--demo-primary);
}

.hc-timeline-step h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--demo-heading);
	margin-bottom: 6px;
}

.hc-timeline-step p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.65;
}

.hc-timeline-step time {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: var(--demo-accent);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 4px;
}

/* Eco strip */
.hc-eco-strip {
	background: #ecfdf5;
	border-block: 1px solid #a7f3d0;
	padding: 20px 0;
}

.hc-eco-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 24px 40px;
	font-size: 14px;
	font-weight: 600;
	color: #047857;
}

.hc-eco-inner span {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Quote banner */
.hc-quote-banner {
	padding: clamp(48px, 7vw, 72px) 0;
	background: var(--demo-heading);
	color: #fff;
	text-align: center;
}

.hc-quote-banner blockquote {
	font-family: var(--demo-font-display);
	font-size: clamp(1.4rem, 3vw, 1.85rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.5;
	max-width: 720px;
	margin: 0 auto 20px;
	opacity: 0.95;
}

.hc-quote-banner cite {
	font-size: 14px;
	font-style: normal;
	color: #7dd3fc;
	font-weight: 600;
}

.hc-quote-stars {
	color: #fde68a;
	font-size: 18px;
	margin-bottom: 16px;
	letter-spacing: 4px;
}

/* Service areas */
.hc-areas {
	padding: clamp(48px, 7vw, 72px) 0;
	background: var(--demo-surface);
	text-align: center;
}

.hc-areas h2 {
	font-family: var(--demo-font-display);
	font-size: 1.75rem;
	color: var(--demo-heading);
	margin-bottom: 8px;
}

.hc-areas > .demo-container > p {
	color: var(--demo-muted);
	font-size: 14px;
	margin-bottom: 24px;
}

.hc-area-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 800px;
	margin: 0 auto;
}

.hc-area-pill {
	font-size: 13px;
	font-weight: 600;
	color: var(--demo-text);
	background: var(--demo-bg);
	border: 1px solid var(--demo-border);
	padding: 8px 16px;
	border-radius: 999px;
}

/* Guarantees */
.hc-guarantees {
	padding: clamp(40px, 6vw, 64px) 0;
	background: var(--demo-bg-alt);
	border-top: 1px solid var(--demo-border);
}

.hc-guarantee-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	text-align: center;
}

.hc-guarantee-item span {
	display: block;
	font-size: 28px;
	margin-bottom: 8px;
}

.hc-guarantee-item h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--demo-heading);
	margin-bottom: 6px;
}

.hc-guarantee-item p {
	font-size: 13px;
	color: var(--demo-muted);
	line-height: 1.55;
}

/* Footer */
.hc-footer {
	background: var(--demo-heading);
	color: #e2e8f0;
	padding: 40px 0 32px;
}

.hc-footer-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	margin-bottom: 20px;
}

.hc-footer-brand {
	font-family: var(--demo-font-display);
	font-size: 22px;
	color: #fff;
}

.hc-footer-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 14px;
}

.hc-footer-contact a:hover {
	color: #7dd3fc;
}

.hc-footer-meta {
	font-size: 12px;
	color: #94a3b8;
	line-height: 1.7;
}

/* Mobile CTA */
.hc-mobile-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--demo-border);
	backdrop-filter: blur(8px);
}

.hc-mobile-cta .demo-btn {
	width: 100%;
	justify-content: center;
}

/* Responsive */
@media (max-width: 960px) {
	.hc-hero-grid,
	.hc-booking-wrap,
	.hc-packages-row,
	.hc-guarantee-row {
		grid-template-columns: 1fr;
	}

	.hc-package.is-featured {
		order: -1;
	}

	.hc-hero-float {
		left: 12px;
		bottom: -16px;
	}

	.hc-nav-links {
		display: none;
	}

	.hc-room-checklist {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	body.demo-home-cleaning {
		padding-bottom: 72px;
	}
}
