/**
 * Laundry House – Elementor Home
 * Base / structural styles. Every visual value here is a sensible default that
 * the widget's Elementor controls override through generated selectors, so the
 * design works out-of-the-box and stays fully customizable.
 */

.lhe-root {
	--lhe-accent: #3B4AA0;
	--lhe-accent-dark: #2A3579;
	--lhe-wa: #25D366;
	--lhe-ink: #2B2F63;
	--lhe-muted: #6B7089;
	--lhe-soft: #8A8FB0;
	--lhe-border: #ECEDF5;
	--lhe-chip: #EEEFF9;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--lhe-ink);
	background: #fff;
	overflow-x: hidden;
}

.lhe-root *,
.lhe-root *::before,
.lhe-root *::after {
	box-sizing: border-box;
}

/* Links keep their own component colors; only strip the underline globally so
   the generic rule never out-specifies a button/link's own color. */
.lhe-root a { text-decoration: none; }

.lhe-root img {
	max-width: 100%;
	display: block;
}

@keyframes lhePulseRing {
	0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
	70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Shared container ---------- */
.lhe-container {
	max-width: 1360px;
	margin: 0 auto;
	width: 100%;
}
.lhe-container--narrow {
	max-width: 1200px;
}

/* Generic section spacing */
.lhe-section {
	padding: 10px clamp(20px, 5vw, 64px) 56px;
}

/* ---------- WhatsApp buttons (shared) ---------- */
.lhe-wa-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--lhe-wa);
	color: #fff;
	padding: 12px 18px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 12.5px;
	line-height: 1.25;
	border: 0;
	white-space: nowrap;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.lhe-wa-btn svg { flex-shrink: 0; width: 16px; height: 16px; fill: currentColor; }
.lhe-wa-btn i { font-size: 16px; line-height: 1; }
.lhe-wa-btn--pulse { animation: lhePulseRing 2.4s infinite; }

/* ================= HEADER ================= */
.lhe-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px clamp(16px, 3vw, 64px);
	background: #fff;
	border-bottom: 1px solid var(--lhe-border);
	overflow-x: auto;
}
.lhe-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.lhe-brand__logo {
	width: 36px;
	height: 36px;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--lhe-accent), var(--lhe-wa));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
	font-weight: 800;
	font-size: 14px;
}
.lhe-brand__name {
	font-weight: 800;
	font-size: 17px;
	color: var(--lhe-ink);
	letter-spacing: .01em;
	line-height: 1.1;
	white-space: nowrap;
}
.lhe-brand__tagline {
	font-size: 10.5px;
	color: var(--lhe-soft);
	line-height: 1.1;
}
.lhe-nav {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 22px;
	font-size: 13.5px;
	font-weight: 600;
	white-space: nowrap;
}
.lhe-nav a { color: var(--lhe-ink); }
.lhe-nav a:hover { color: var(--lhe-accent); }

/* Hamburger toggle (hidden on desktop, shown on mobile via media query) */
.lhe-nav-toggle { display: none; }
.lhe-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	margin-left: auto;
	flex-shrink: 0;
	padding: 0;
	background: #fff;
	border: 1px solid var(--lhe-border);
	border-radius: 8px;
	cursor: pointer;
}
.lhe-burger span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 0 auto;
	background: var(--lhe-ink);
	border-radius: 2px;
	transition: transform .25s ease, opacity .2s ease;
}

/* ================= HERO ================= */
.lhe-hero {
	padding: clamp(30px, 5vw, 50px) clamp(20px, 5vw, 64px) 40px;
}

/* Hero "background image" layout: image fills the section, content stays left */
.lhe-hero--bg {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.lhe-hero--bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .72) 45%, rgba(255, 255, 255, .12) 100%);
	pointer-events: none;
}
.lhe-hero--bg > .lhe-hero__grid {
	position: relative;
	z-index: 1;
	grid-template-columns: minmax(0, 660px);
}
.lhe-hero--bg .lhe-hero__media { display: none; }

/* bg-mode fallback for phones: the banner becomes a stacked image below the
   content (split look), because a background photo behind text is unreadable
   on narrow screens. Desktop keeps the background banner. */
.lhe-hero__media--mobilebg { display: none; }
@media (max-width: 900px) {
	.lhe-root .lhe-hero--bg { background-image: none !important; min-height: 0 !important; }
	.lhe-hero--bg::before { display: none; }
	.lhe-root .lhe-hero--bg > .lhe-hero__grid { grid-template-columns: 1fr; }
	.lhe-hero--bg .lhe-hero__media--mobilebg { display: block; margin-top: 26px; }
}
.lhe-hero__grid {
	display: grid;
	grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
	gap: 40px;
	align-items: start;
}
.lhe-badge {
	display: inline-block;
	background: var(--lhe-chip);
	color: #4A4F84;
	padding: 7px 14px;
	border-radius: 6px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.lhe-hero__title {
	font-weight: 800;
	font-size: clamp(30px, 4.4vw, 44px);
	line-height: 1.12;
	margin: 0 0 18px;
	color: var(--lhe-ink);
}
.lhe-hero__text {
	font-size: 15px;
	line-height: 1.65;
	color: var(--lhe-muted);
	max-width: 460px;
	margin: 0 0 26px;
}
.lhe-hero__offer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-bottom: 30px;
}
/* Offer card: white card + hanging ribbon badge (like the reference) */
.lhe-offer-card {
	display: flex;
	align-items: center;
	gap: 20px;
	background: #fff;
	border: 1px solid var(--lhe-border);
	border-radius: 10px;
	padding: 16px 20px;
	box-shadow: 0 10px 24px -12px rgba(43, 47, 99, .18);
}
.lhe-offer-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
.lhe-discount {
	position: relative;
	background: var(--lhe-accent);
	color: #fff;
	padding: 14px 18px 26px;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
	text-align: center;
	line-height: 1.1;
	min-width: 92px;
	margin: -30px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}
.lhe-discount__flat { font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.lhe-discount__pct { font-size: 30px; font-weight: 800; line-height: 1.05; }
.lhe-discount__off { font-size: 13px; font-weight: 800; letter-spacing: .1em; }
.lhe-discount__label {
	font-size: 16px;
	font-weight: 800;
	color: var(--lhe-ink);
	text-transform: uppercase;
	letter-spacing: .02em;
	line-height: 1.3;
}
.lhe-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}
@media (min-width: 721px) {
	.lhe-hero__features { gap: 18px; }
	.lhe-hero__features .lhe-feature { gap: 8px; }
	.lhe-hero__features .lhe-feature:not(:first-child) {
		padding-left: 18px;
		border-left: 1px dashed #C6CCE8;
	}
}

/* Info bar rendered inside the hero's left column */
.lhe-infobar--hero {
	margin-top: 28px;
	border-radius: 10px;
	overflow: hidden;
}
.lhe-infobar--hero .lhe-infobar__panel {
	padding: 14px 18px;
	justify-content: flex-start;
}
.lhe-feature {
	display: flex;
	align-items: center;
	gap: 10px;
}
.lhe-feature__icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--lhe-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lhe-feature__icon i {
	color: inherit;
	font-size: 20px;
	line-height: 1;
}
.lhe-feature__icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	stroke: currentColor;
}
.lhe-feature__label {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--lhe-ink);
}
.lhe-hero__media { position: relative; }
.lhe-hero__image {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--lhe-border);
	aspect-ratio: 1 / 1;
}
.lhe-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.lhe-hero__card {
	position: absolute;
	top: 23%;
	left: 28%;
	right: 0;
	bottom: 37%;
	background: #fff;
	border: 1px solid var(--lhe-border);
	border-radius: 10px;
	padding: 12px 14px;
	box-shadow: 0 12px 24px -8px rgba(43, 47, 99, .15);
	font-size: 11.5px;
	line-height: 1.7;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.lhe-hero__card-row { display: flex; align-items: center; gap: 6px; }
.lhe-hero__card-row .lhe-check { color: var(--lhe-wa); font-weight: 800; }
.lhe-hero__card-note { margin-top: 4px; color: var(--lhe-muted); }

/* ================= HEADINGS (section titles) ================= */
.lhe-heading {
	text-align: center;
	font-weight: 800;
	font-size: clamp(22px, 3vw, 30px);
	color: var(--lhe-ink);
	margin: 0 0 32px;
}

/* ================= STATS ================= */
.lhe-stats { text-align: center; padding-bottom: 46px; }
.lhe-stats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 18px;
}
.lhe-stat__head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 8px;
}
.lhe-stat__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--lhe-accent);
	font-size: 22px;
	line-height: 1;
	flex-shrink: 0;
}
.lhe-stat__icon i { font-size: inherit; color: inherit; }
.lhe-stat__icon svg { width: 1em; height: 1em; fill: currentColor; stroke: currentColor; }
.lhe-stat__label {
	font-size: 12px;
	font-weight: 600;
	color: var(--lhe-muted);
	margin: 0;
}
.lhe-stat__value {
	background: var(--lhe-chip);
	color: var(--lhe-accent);
	font-weight: 800;
	font-size: 19px;
	padding: 10px;
	border-radius: 8px;
}

/* ================= INFO BAR (under stats) ================= */
.lhe-infobar {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 0;
	border-radius: 10px;
	overflow: hidden;
}
.lhe-infobar__panel {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 18px 24px;
	background: var(--lhe-chip);
	text-align: left;
}
.lhe-infobar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--lhe-accent);
	color: var(--lhe-accent);
	flex-shrink: 0;
}
.lhe-infobar__icon i { font-size: 18px; color: inherit; }
.lhe-infobar__icon svg { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; }
.lhe-infobar__small { font-size: 12px; color: var(--lhe-muted); }
.lhe-infobar__bold { font-size: 15px; font-weight: 800; color: var(--lhe-ink); }

/* ================= CARD GRIDS (services / pricing) ================= */
.lhe-grid {
	display: grid;
	gap: 22px;
}
.lhe-grid--services { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.lhe-grid--pricing  { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.lhe-grid--testi    { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

.lhe-card {
	border: 1px solid var(--lhe-border);
	border-radius: 10px;
	overflow: hidden;
}
.lhe-card__media { aspect-ratio: 4 / 3; }
.lhe-card__media img { width: 100%; height: 100%; object-fit: cover; }
.lhe-card__title {
	background: var(--lhe-accent);
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 14.5px;
	padding: 9px;
}
.lhe-card__body { padding: 16px 16px 20px; }
.lhe-card__desc {
	font-size: 13px;
	line-height: 1.55;
	color: var(--lhe-muted);
	margin: 0;
	text-align: center;
}

/* Services cards (reference style: framed border, inset image, full-width
   title bar, description, "starts from" price row) */
.lhe-svc-card {
	border: 1px solid #B7C4E8;
	border-radius: 6px;
	background: #fff;
	display: flex;
	flex-direction: column;
}
.lhe-svc-card__media {
	margin: 10px 10px 0;
	aspect-ratio: 4 / 3;
	border-radius: 4px;
	overflow: hidden;
}
.lhe-svc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.lhe-svc-card__title {
	align-self: stretch;
	margin: 12px 10px 10px;
	background: var(--lhe-accent);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 8px 10px;
	text-align: center;
}
.lhe-svc-card__desc {
	font-size: 13.5px;
	line-height: 1.45;
	color: var(--lhe-ink);
	text-align: center;
	margin: 0;
	padding: 0 14px 12px;
	flex: 1;
}
.lhe-svc-card__price {
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	gap: 0;
	border-top: 1px solid var(--lhe-border);
	background: #EDF0F8;
	border-radius: 0 0 6px 6px;
	overflow: hidden;
}
.lhe-svc-card__pricelabel {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 800;
	color: var(--lhe-ink);
	text-align: right;
	padding: 10px 12px;
	line-height: 1.25;
}
.lhe-svc-card__pricechip {
	display: flex;
	align-items: center;
	background: var(--lhe-accent);
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	padding: 10px 14px;
}

/* Section subheading (services) + bullet feature line (how it works) */
.lhe-subheading {
	text-align: center;
	font-size: 14px;
	color: var(--lhe-muted);
	margin: -24px 0 30px;
}
.lhe-bullets {
	text-align: center;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--lhe-ink);
	margin: -24px 0 34px;
}

/* ================= HOW IT WORKS ================= */
.lhe-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	position: relative;
}
.lhe-step {
	text-align: center;
	width: 150px;
	padding: 0 6px 20px;
}
.lhe-step__num {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--lhe-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	font-weight: 800;
	font-size: 18px;
}
.lhe-step__num i { font-size: 22px; line-height: 1; color: inherit; }
.lhe-step__num svg { width: 24px; height: 24px; fill: currentColor; stroke: currentColor; }

/* Dashed connector arrow between steps — sits at circle-center height */
.lhe-step__arrow {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	color: var(--lhe-accent);
	flex-shrink: 0;
	padding: 0 2px;
	margin-top: 10px;
}
.lhe-step__arrow svg { width: 64px; height: 32px; display: block; }
@media (max-width: 720px) {
	.lhe-step__arrow { display: none; }
}
.lhe-step__title {
	font-size: 13px;
	font-weight: 800;
	color: var(--lhe-ink);
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: .02em;
}
.lhe-step__desc {
	font-size: 11.5px;
	color: var(--lhe-muted);
	line-height: 1.4;
	margin-top: 4px;
}

/* ================= PRICING ================= */
.lhe-price-card {
	border: 1px solid #B7C4E8;
	border-radius: 6px;
	background: #fff;
	padding: 8px;
	display: flex;
	flex-direction: column;
}
.lhe-price-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 4px;
}
.lhe-price-card__media img { width: 100%; height: 100%; object-fit: cover; }
.lhe-price__head {
	background: var(--lhe-accent);
	color: #fff;
	text-align: center;
	padding: 10px;
	margin-top: 8px;
	border-radius: 2px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.lhe-price__name { font-weight: 700; font-size: 15px; }
.lhe-price__amount { font-size: 26px; font-weight: 800; line-height: 1.15; }
.lhe-price__unit { font-size: 12px; font-weight: 500; }
.lhe-price-cta-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 28px;
	flex-wrap: wrap;
	text-align: center;
}
.lhe-price-cta-row__text {
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 800;
	color: var(--lhe-accent);
	line-height: 1.25;
}
.lhe-price-cta-row__btn { font-size: 18px; padding: 14px 22px; border-radius: 4px; }
.lhe-price-cta-row__btn svg { width: 26px; height: 26px; }
.lhe-price-cta-row__btn i { font-size: 26px; }
.lhe-price-cta__note { color: #fff; font-weight: 700; font-size: 12.5px; }

/* ================= TESTIMONIALS ================= */
.lhe-testi {
	border: 1px solid var(--lhe-border);
	border-radius: 10px;
	padding: 20px;
}
.lhe-testi__stars { color: #F5B301; font-size: 13px; margin-bottom: 10px; }
.lhe-testi__quote { font-size: 13px; line-height: 1.6; color: #4B4F73; margin: 0 0 16px; }
.lhe-testi__name { font-size: 13px; font-weight: 700; color: var(--lhe-ink); }
.lhe-testi__area { font-size: 11.5px; color: var(--lhe-soft); }
.lhe-dots { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.lhe-dot { width: 8px; height: 8px; border-radius: 50%; background: #D6D8EC; border: 0; padding: 0; cursor: pointer; transition: background .2s, transform .2s; }
.lhe-dot--active { background: var(--lhe-accent); transform: scale(1.25); }

/* Scrollable testimonials slider */
.lhe-testi-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding: 4px 4px 8px;
	margin-bottom: 20px;
	scrollbar-width: none;
}
.lhe-testi-track::-webkit-scrollbar { display: none; }
.lhe-testi-track > .lhe-testi {
	flex: 0 0 clamp(260px, 32%, 380px);
	scroll-snap-align: start;
}

/* Auto-scrolling testimonials marquee (infinite loop) */
.lhe-testi-marquee { overflow: hidden; width: 100%; padding: 4px 0 8px; }
.lhe-testi-marquee__track {
	display: flex;
	width: max-content;
	animation: lheMarquee 30s linear infinite;
	will-change: transform;
}
.lhe-testi-marquee__group { display: flex; gap: 20px; padding-right: 20px; }
.lhe-testi-marquee__group > .lhe-testi { flex: 0 0 clamp(240px, 78vw, 340px); }
.lhe-testi-marquee--pause:hover .lhe-testi-marquee__track { animation-play-state: paused; }
@keyframes lheMarquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.lhe-testi-marquee__track { animation: none; }
}

/* ================= INSTAGRAM ================= */
.lhe-ig {
	background: #F6F6FB;
	padding: 30px clamp(20px, 5vw, 64px);
}
.lhe-ig__inner { max-width: 1200px; margin: 0 auto; }
.lhe-ig__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.lhe-ig__id { display: flex; align-items: center; gap: 12px; }
.lhe-ig__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lhe-accent);
	background: #fff;
	border: 1px solid var(--lhe-border);
	flex-shrink: 0;
}
.lhe-ig__icon i { font-size: 20px; color: inherit; }
.lhe-ig__icon svg { width: 20px; height: 20px; fill: currentColor; stroke: currentColor; }
.lhe-ig__handle { font-weight: 800; font-size: 16px; color: var(--lhe-ink); line-height: 1.2; }
.lhe-ig__handle:hover { color: var(--lhe-accent); }
.lhe-ig__sub { font-size: 12.5px; color: var(--lhe-muted); }
.lhe-ig__follow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--lhe-accent);
	color: #fff;
	padding: 10px 22px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 13px;
	white-space: nowrap;
}
.lhe-ig__follow:hover { color: #fff; opacity: .92; }
.lhe-ig__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}
.lhe-ig__item {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	overflow: hidden;
	background: color-mix(in srgb, var(--lhe-accent) 8%, #eee);
}
.lhe-ig__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.lhe-ig__item:hover img { transform: scale(1.06); }
.lhe-ig__empty { font-size: 13px; color: var(--lhe-muted); padding: 10px 0; }
@media (max-width: 900px) { .lhe-ig__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .lhe-ig__grid { grid-template-columns: repeat(2, 1fr); } }

/* ================= CTA BANNER ================= */
.lhe-cta {
	background: #F6F6FB;
	padding: 32px clamp(20px, 5vw, 64px);
}
.lhe-cta__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
}
.lhe-cta__avatar {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}
.lhe-cta__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lhe-cta__title { font-weight: 800; font-size: clamp(24px, 3vw, 34px); line-height: 1.2; color: var(--lhe-ink); margin: 0 0 10px; }
.lhe-cta__text { font-size: 16px; font-weight: 500; color: var(--lhe-ink); margin: 0; max-width: 520px; line-height: 1.55; }
.lhe-cta__text strong { background: var(--lhe-wa); color: #fff; padding: 1px 6px; border-radius: 4px; }

/* Big stacked CTA button (icon above text) */
.lhe-cta__btn {
	flex-direction: column;
	gap: 12px;
	padding: 24px 30px;
	border-radius: 14px;
	font-size: 15px;
	text-align: center;
	line-height: 1.3;
	white-space: normal;
}
.lhe-cta__btn svg { width: 46px; height: 46px; }
.lhe-cta__btn i { font-size: 46px; }
.lhe-cta__note {
	text-align: center;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--lhe-accent);
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--lhe-border);
}

/* ================= SERVICE AREA ================= */
.lhe-sa { padding: 34px clamp(20px, 5vw, 64px) 40px; }
.lhe-sa__box {
	background: #EEF0F8;
	border: 1px solid #B7C4E8;
	padding: 16px 20px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--lhe-ink);
	border-radius: 4px;
}
.lhe-sa__box p { margin: 0 0 12px; }
.lhe-sa__box p:last-child { margin-bottom: 0; }
.lhe-sa__note {
	text-align: center;
	font-weight: 800;
	color: var(--lhe-accent);
	font-size: 17px;
	margin-top: 20px;
}

/* ================= FOOTER ================= */
.lhe-footer { background: var(--lhe-accent); padding: 0; }
.lhe-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 28px;
	align-items: center;
	padding: 30px clamp(20px, 5vw, 64px);
}
.lhe-footer__media { border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 3; }
.lhe-footer__media img { width: 100%; height: 100%; object-fit: cover; }
.lhe-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.lhe-footer__logo {
	width: 34px; height: 34px; border-radius: 6px; background: #fff;
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
	color: var(--lhe-accent); font-weight: 800; font-size: 13px;
}
.lhe-footer__name { color: #fff; font-weight: 800; font-size: 16px; }
.lhe-footer__tag { color: #C9CDEE; font-size: 11px; }
.lhe-footer__contacts { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px 24px; font-size: 13px; color: #DCDEF3; }
.lhe-footer__contacts a { color: #DCDEF3; }
.lhe-footer__row { display: flex; align-items: center; gap: 8px; }
.lhe-footer__row--top { flex-basis: 100%; align-items: flex-start; }
.lhe-fico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .35);
	background: rgba(255, 255, 255, .06);
	color: #DCDEF3;
	flex-shrink: 0;
}
.lhe-fico i { font-size: 14px; }
.lhe-fico svg { width: 14px; height: 14px; fill: currentColor; stroke: currentColor; }
.lhe-footer__small { font-size: 12px; color: #C9CDEE; }
.lhe-footer__hours { font-weight: 800; color: #fff; font-size: 14px; }

/* Uploaded logo images (header + footer) */
.lhe-brand__logo--img,
.lhe-footer__logo--img {
	background: transparent;
	width: auto;
	height: auto;
	border-radius: 0;
	padding: 0;
}
.lhe-brand__logo--img img { height: 40px; width: auto; display: block; }
.lhe-footer__logo--img img { height: 40px; width: auto; display: block; }
.lhe-footer__copy {
	text-align: center; font-size: 11.5px; color: #9AA0D6;
	padding: 14px; border-top: 1px solid rgba(255, 255, 255, .15);
}

/* ================= STICKY WHATSAPP FAB ================= */
.lhe-fab {
	position: fixed;
	bottom: 22px;
	right: 22px;
	z-index: 60;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--lhe-wa);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 28px -6px rgba(37, 211, 102, .6);
	animation: lhePulseRing 2.4s infinite;
}
.lhe-fab i { font-size: 26px; color: inherit; }
.lhe-fab svg { width: 26px; height: 26px; fill: currentColor; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
	.lhe-hero__grid { grid-template-columns: 1fr; }
	.lhe-cta__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
	/* Force the single-column footer stack on phones — !important so any
	   desktop-only Elementor column-width/height value can never reintroduce
	   the two-column layout (which overflows the viewport). */
	.lhe-root .lhe-footer .lhe-footer__inner { grid-template-columns: 1fr !important; }
	.lhe-root .lhe-footer .lhe-footer__media {
		height: auto !important;
		width: auto !important;
		max-width: 300px;
		margin: 0 auto;
	}
	.lhe-footer__contacts { gap: 12px 18px; }
	.lhe-footer__row--top { align-items: flex-start; }

	/* ---- Header → hamburger menu ---- */
	.lhe-header {
		flex-wrap: wrap;
		row-gap: 12px;
		overflow: visible;
	}
	.lhe-burger { display: flex; }

	/* Nav + header CTA collapse into the toggle */
	.lhe-nav,
	.lhe-header .lhe-header-btn {
		display: none;
		flex-basis: 100%;
		width: 100%;
	}
	.lhe-nav {
		flex-direction: column;
		gap: 0;
		border-top: 1px solid var(--lhe-border);
	}
	.lhe-nav a {
		padding: 12px 4px;
		border-bottom: 1px solid var(--lhe-border);
	}
	.lhe-nav-toggle:checked ~ .lhe-nav { display: flex; }
	.lhe-nav-toggle:checked ~ .lhe-header-btn {
		display: inline-flex;
		justify-content: center;
	}

	/* Burger → X when open */
	.lhe-nav-toggle:checked ~ .lhe-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.lhe-nav-toggle:checked ~ .lhe-burger span:nth-child(2) { opacity: 0; }
	.lhe-nav-toggle:checked ~ .lhe-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	/* ---- Hero: keep the WhatsApp button inside the screen ---- */
	.lhe-hero { padding-left: 20px; padding-right: 20px; }
	.lhe-hero__offer { gap: 12px; }
	.lhe-hero__offer .lhe-wa-btn {
		flex: 1 1 100%;
		justify-content: center;
	}
	.lhe-wa-btn {
		white-space: normal;
		max-width: 100%;
	}
	.lhe-hero__text { max-width: 100%; }
}

/* Extra breathing room on the smallest phones */
@media (max-width: 480px) {
	.lhe-hero__features { gap: 16px; }
	.lhe-feature { flex: 1 1 100%; }
	.lhe-offer-card { flex-wrap: wrap; }
	.lhe-offer-card .lhe-wa-btn { width: 100%; justify-content: center; }
}
