/* Arkani Beauty Hub — Premium Black & Gold Theme */

:root {
	--abh-black: #0c0c0c;
	--abh-black-soft: #141414;
	--abh-charcoal: #1e1e1e;
	--abh-gold: #c9a227;
	--abh-gold-light: #e4c76a;
	--abh-gold-dark: #7a6214;
	--abh-cream: #f8f6f1;
	--abh-white: #ffffff;
	--abh-muted: #5f5c57;
	--abh-text: #2a2826;
	--abh-border: rgba(201, 162, 39, 0.22);
	--abh-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	--abh-radius: 16px;
	--abh-radius-lg: 28px;
	--abh-font: 'Vazirmatn', Tahoma, Arial, sans-serif;
	--abh-container: 1180px;
	--abh-transition: 0.25s ease;
}

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

body.abh-landing-page {
	margin: 0 !important;
	padding: 0 !important;
	background: var(--abh-cream) !important;
	color: var(--abh-text);
	font-family: var(--abh-font);
	font-size: 16px;
	line-height: 1.75;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body.abh-landing-page .abh-site {
	width: 100%;
	min-height: 100vh;
	font-family: var(--abh-font);
}

body.abh-landing-page .abh-site,
body.abh-landing-page .abh-site button,
body.abh-landing-page .abh-site input,
body.abh-landing-page .abh-site select,
body.abh-landing-page .abh-site textarea,
body.abh-landing-page .abh-site .abh-btn {
	font-family: var(--abh-font) !important;
}

body.abh-landing-page .abh-site h1,
body.abh-landing-page .abh-site h2,
body.abh-landing-page .abh-site h3,
body.abh-landing-page .abh-site h4,
body.abh-landing-page .abh-site .abh-section-title,
body.abh-landing-page .abh-site .abh-page-hero h1 {
	font-family: var(--abh-font) !important;
	font-weight: 700;
}

.abh-container {
	width: min(100% - 32px, var(--abh-container));
	margin-inline: auto;
}

/* ─── Header ─── */
.abh-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(12, 12, 12, 0.97);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--abh-border);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.abh-topbar {
	background: var(--abh-black-soft);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.abh-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 24px;
	padding: 8px 16px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
}

.abh-topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.abh-topbar-link {
	color: var(--abh-gold-light);
	text-decoration: none;
	transition: color var(--abh-transition);
}

.abh-topbar-link:hover {
	color: var(--abh-white);
}

.abh-topbar-wa:hover {
	color: #25d366;
}

.abh-icon {
	width: 16px;
	height: 16px;
	fill: currentColor;
	flex-shrink: 0;
}

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

.abh-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
}

.abh-logo img {
	display: block;
	height: 52px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

.abh-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}

.abh-nav a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.88);
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	transition: background var(--abh-transition), color var(--abh-transition);
}

.abh-nav a:hover {
	background: rgba(201, 162, 39, 0.12);
	color: var(--abh-gold-light);
}

.abh-nav-cta {
	background: linear-gradient(135deg, var(--abh-gold), var(--abh-gold-dark)) !important;
	color: var(--abh-black) !important;
	font-weight: 700 !important;
}

.abh-nav-cta:hover {
	background: linear-gradient(135deg, var(--abh-gold-light), var(--abh-gold)) !important;
	color: var(--abh-black) !important;
}

.abh-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 1px solid var(--abh-border);
	border-radius: 10px;
	cursor: pointer;
}

.abh-nav-toggle span {
	display: block;
	height: 2px;
	background: var(--abh-gold);
	border-radius: 2px;
	transition: transform var(--abh-transition), opacity var(--abh-transition);
}

.abh-nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.abh-nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.abh-nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero Slider ─── */
.abh-hero-slider-wrap {
	padding: 24px 16px 0;
	background: linear-gradient(180deg, var(--abh-black) 0%, var(--abh-charcoal) 100%);
}

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

.abh-slider-frame {
	position: relative;
	border-radius: var(--abh-radius-lg);
	overflow: hidden;
	border: 2px solid var(--abh-border);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
}

.abh-slider-track {
	position: relative;
	aspect-ratio: 21 / 9;
	background: var(--abh-black);
}

.abh-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.7s ease;
	pointer-events: none;
	overflow: hidden;
}

.abh-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.abh-slide picture,
.abh-slide img,
.abh-slide-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	background: var(--abh-black);
}

.abh-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(12, 12, 12, 0.65);
	border: 1px solid var(--abh-border);
	border-radius: 50%;
	cursor: pointer;
	color: var(--abh-gold);
	transition: background var(--abh-transition);
}

.abh-slider-arrow svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.abh-slider-arrow:hover {
	background: rgba(201, 162, 39, 0.25);
}

.abh-slider-prev { right: 16px; }
.abh-slider-next { left: 16px; }

.abh-slider-dots {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 4px;
	z-index: 5;
}

.abh-slider-dot {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: transparent;
	cursor: pointer;
	padding: 0;
	position: relative;
	transition: transform var(--abh-transition);
}

.abh-slider-dot::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	transition: background var(--abh-transition), transform var(--abh-transition);
}

.abh-slider-dot.is-active::after {
	background: var(--abh-gold);
	transform: scale(1.25);
}

/* ─── Hero Intro (below slider) ─── */
.abh-hero-intro {
	padding: 48px 0 56px;
	background: var(--abh-cream);
}

.abh-hero-intro-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	align-items: start;
}

.abh-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--abh-gold-dark);
	background: rgba(201, 162, 39, 0.12);
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid var(--abh-border);
	margin-bottom: 16px;
}

.abh-hero-intro h1 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--abh-black);
	line-height: 1.4;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.abh-lead {
	font-size: 1.1rem;
	color: var(--abh-muted);
	margin: 0 0 28px;
	max-width: 54ch;
}

.abh-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.abh-stat-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 20px;
}

.abh-stat-card {
	background: var(--abh-white);
	border: 1px solid var(--abh-border);
	border-radius: var(--abh-radius);
	padding: 18px 12px;
	text-align: center;
	box-shadow: var(--abh-shadow);
}

.abh-stat-card strong {
	display: block;
	font-size: 1.5rem;
	color: var(--abh-gold-dark);
	font-weight: 700;
}

.abh-stat-card span {
	font-size: 12px;
	color: var(--abh-muted);
}

.abh-doctor-mini {
	background: var(--abh-black);
	color: var(--abh-white);
	border-radius: var(--abh-radius);
	padding: 24px;
	border: 1px solid var(--abh-border);
}

.abh-doctor-mini-name {
	margin: 0 0 8px;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--abh-gold-light);
}

.abh-doctor-mini h3 {
	margin: 0 0 8px;
	font-size: 1.1rem;
	color: var(--abh-gold-light);
}

.abh-doctor-mini p {
	margin: 0 0 16px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.abh-link-arrow {
	color: var(--abh-gold);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.abh-link-arrow:hover {
	color: var(--abh-gold-light);
}

/* ─── Buttons ─── */
.abh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 10px;
	font-family: var(--abh-font) !important;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform var(--abh-transition), box-shadow var(--abh-transition), background var(--abh-transition);
}

.abh-btn:hover {
	transform: translateY(-1px);
}

.abh-btn-lg {
	padding: 14px 28px;
	font-size: 16px;
}

.abh-btn-sm {
	padding: 8px 16px;
	font-size: 13px;
}

.abh-btn-primary {
	background: linear-gradient(135deg, var(--abh-gold), var(--abh-gold-dark));
	color: var(--abh-black);
	box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

.abh-btn-primary:hover {
	box-shadow: 0 6px 24px rgba(201, 162, 39, 0.45);
}

.abh-btn-gold {
	background: var(--abh-black);
	color: var(--abh-gold-light);
	border-color: var(--abh-gold);
}

.abh-btn-gold:hover {
	background: var(--abh-charcoal);
}

.abh-btn-outline {
	background: transparent;
	color: var(--abh-black);
	border-color: var(--abh-gold);
}

.abh-btn-outline:hover {
	background: rgba(201, 162, 39, 0.08);
}

.abh-btn-whatsapp {
	background: #128c7e;
	color: var(--abh-white);
	border-color: #128c7e;
}

.abh-btn-whatsapp:hover {
	background: #0d6b60;
}

.abh-btn-call {
	background: #2e7d32;
	color: var(--abh-white);
}

/* ─── Sections ─── */
.abh-section {
	padding: 72px 0;
}

.abh-section:nth-child(even) {
	background: var(--abh-white);
}

.abh-section-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--abh-black);
	text-align: center;
	margin: 0 0 12px;
	font-weight: 800;
}

.abh-section-desc {
	text-align: center;
	color: var(--abh-muted);
	max-width: 60ch;
	margin: 0 auto 40px;
}

/* Services */
.abh-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
}

.abh-service-card {
	display: flex;
	flex-direction: column;
	background: var(--abh-cream);
	border: 1px solid var(--abh-border);
	border-radius: var(--abh-radius);
	padding: 28px 22px;
	text-decoration: none;
	color: inherit;
	transition: transform var(--abh-transition), box-shadow var(--abh-transition), border-color var(--abh-transition);
}

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

.abh-service-icon {
	font-size: 2rem;
	margin-bottom: 12px;
}

.abh-service-card h3 {
	margin: 0 0 10px;
	font-size: 1.05rem;
	color: var(--abh-black);
}

.abh-service-card p {
	margin: 0 0 16px;
	font-size: 14px;
	color: var(--abh-muted);
	flex: 1;
}

.abh-service-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--abh-gold-dark);
}

/* Skin promo → Online services */
.abh-online-section {
	background: linear-gradient(180deg, var(--abh-black) 0%, var(--abh-charcoal) 100%) !important;
	color: var(--abh-white);
}

.abh-online-section .abh-section-title,
.abh-online-section .abh-section-desc {
	color: rgba(255, 255, 255, 0.9);
}

.abh-online-section .abh-section-desc {
	color: rgba(255, 255, 255, 0.88);
}

.abh-online-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
}

.abh-online-grid-home {
	margin-bottom: 24px;
}

.abh-online-card {
	position: relative;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--abh-border);
	border-radius: var(--abh-radius);
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.abh-online-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	font-size: 11px;
	font-weight: 700;
	background: var(--abh-gold);
	color: var(--abh-black);
	padding: 4px 10px;
	border-radius: 999px;
}

.abh-online-icon {
	font-size: 2rem;
}

.abh-online-card h2,
.abh-online-card h3 {
	margin: 0;
	font-size: 1.05rem;
	color: var(--abh-gold-light);
}

.abh-online-card p {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	flex: 1;
	line-height: 1.7;
}

.abh-online-price {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 14px;
}

.abh-online-price strong {
	color: var(--abh-gold-light);
}

.abh-online-deposit {
	font-size: 13px;
	color: var(--abh-gold);
	font-weight: 600;
}

.abh-online-more {
	text-align: center;
	margin: 0;
}

.abh-online-trust {
	margin-top: 40px;
	padding: 24px;
	background: rgba(201, 162, 39, 0.08);
	border-radius: var(--abh-radius);
	border: 1px solid var(--abh-border);
}

.abh-online-trust h3 {
	color: var(--abh-gold-light);
	margin: 0 0 12px;
}

.abh-online-trust ul {
	margin: 0;
	padding-right: 20px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.8);
}

/* Online services — flow panels */
.abh-online-picker .abh-online-card {
	cursor: pointer;
	border: none;
	text-align: right;
	font-family: inherit;
	width: 100%;
	transition: border-color var(--abh-transition), transform var(--abh-transition);
}

.abh-online-picker .abh-online-card:hover,
.abh-online-picker .abh-online-card.is-active {
	border-color: var(--abh-gold);
	transform: translateY(-2px);
}

.abh-online-picker .abh-online-card.is-active {
	background: rgba(201, 162, 39, 0.12);
	box-shadow: 0 0 0 1px var(--abh-gold);
}

.abh-flow-panels { margin-top: 32px; }
.abh-flow-panel { display: none; }
.abh-flow-panel.is-active { display: block; }

.abh-flow-panel-inner {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--abh-border);
	border-radius: var(--abh-radius);
	padding: 28px 24px;
}

.abh-flow-panel-inner h2 {
	margin: 0 0 8px;
	color: var(--abh-gold-light);
	font-size: 1.25rem;
}

.abh-flow-intro {
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 24px;
}

.abh-flow-form .abh-row { margin-bottom: 16px; }

.abh-flow-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
}

.abh-flow-form input,
.abh-flow-form select,
.abh-flow-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--abh-border);
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.25);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	box-sizing: border-box;
}

.abh-flow-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.abh-bmi-result {
	margin: 24px 0;
	padding: 20px;
	background: rgba(201, 162, 39, 0.1);
	border: 1px solid var(--abh-border);
	border-radius: 12px;
	text-align: center;
}

.abh-bmi-score {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--abh-gold-light);
}

.abh-bmi-label {
	display: block;
	font-size: 1.1rem;
	color: #fff;
	margin-top: 4px;
}

.abh-bmi-advice {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

.abh-flow-request {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--abh-border);
}

.abh-goal-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 10px;
	margin-bottom: 20px;
}

.abh-goal-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid var(--abh-border);
	border-radius: 10px;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.2);
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
}

.abh-goal-option:has(input:checked) {
	border-color: var(--abh-gold);
	background: rgba(201, 162, 39, 0.12);
}

.abh-goal-option input { width: auto; margin: 0; }

.abh-flow-steps {
	padding-right: 20px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 24px;
}

.abh-flow-booking-cta { text-align: center; }

.abh-flow-msg {
	margin-top: 12px;
	padding: 12px;
	border-radius: 8px;
	font-size: 14px;
}

.abh-flow-msg.success { background: rgba(46, 125, 50, 0.2); color: #a5d6a7; }
.abh-flow-msg.error { background: rgba(198, 40, 40, 0.2); color: #ef9a9a; }

.abh-flow-stepbar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.abh-flow-stepbar li {
	flex: 1;
	min-width: 140px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid var(--abh-border);
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
}

.abh-flow-stepbar li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	font-weight: 700;
	font-size: 12px;
}

.abh-flow-stepbar li.is-done {
	color: rgba(255, 255, 255, 0.85);
	border-color: rgba(201, 162, 39, 0.4);
}

.abh-flow-stepbar li.is-active {
	color: #fff;
	border-color: var(--abh-gold);
	background: rgba(201, 162, 39, 0.15);
}

.abh-flow-stepbar li.is-active span,
.abh-flow-stepbar li.is-done span {
	background: var(--abh-gold);
	color: #000;
}

.abh-flow-pricebox {
	margin: 0 0 20px;
	padding: 16px 18px;
	border-radius: 12px;
	background: rgba(201, 162, 39, 0.08);
	border: 1px solid var(--abh-border);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.9;
}

.abh-flow-pricebox strong { color: var(--abh-gold-light); }
.abh-flow-pricebox small { display: block; margin-top: 6px; color: rgba(255, 255, 255, 0.65); font-size: 13px; }

.abh-seo-content .abh-lead {
	font-size: 1.1rem;
	line-height: 2;
	margin-bottom: 20px;
}

.abh-seo-body h2,
.abh-seo-content h2 {
	margin-top: 32px;
	color: var(--abh-charcoal);
}

.abh-cta-box {
	margin-top: 40px;
	padding: 28px;
	background: var(--abh-cream);
	border: 1px solid var(--abh-border);
	border-radius: var(--abh-radius-lg);
	text-align: center;
}

.abh-btn-block {
	width: 100%;
}

/* Legacy skin promo (unused) */
.abh-skin-promo {
	background: linear-gradient(135deg, var(--abh-black) 0%, var(--abh-charcoal) 100%) !important;
	color: var(--abh-white);
}

.abh-skin-promo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.abh-skin-promo h2 {
	font-family: var(--abh-font);
	color: var(--abh-gold-light);
	margin: 0 0 16px;
}

.abh-skin-promo ol {
	padding-right: 20px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.8);
}

.abh-score-demo {
	background: rgba(201, 162, 39, 0.1);
	border: 2px solid var(--abh-border);
	border-radius: var(--abh-radius-lg);
	padding: 48px;
	text-align: center;
}

.abh-score-big {
	font-size: 4rem;
	font-weight: 700;
	color: var(--abh-gold);
}

/* About */
.abh-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.abh-about h2 {
	font-family: var(--abh-font);
	color: var(--abh-black);
}

.abh-about-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.abh-feature {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: var(--abh-cream);
	padding: 18px;
	border-radius: var(--abh-radius);
	border: 1px solid var(--abh-border);
}

.abh-feature span {
	font-size: 1.5rem;
}

.abh-feature strong {
	display: block;
	color: var(--abh-black);
}

.abh-feature p {
	margin: 4px 0 0;
	font-size: 14px;
	color: var(--abh-muted);
}

/* Testimonials */
.abh-testimonials {
	background: var(--abh-cream) !important;
}

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

.abh-testimonial {
	margin: 0;
	padding: 24px;
	background: var(--abh-white);
	border-radius: var(--abh-radius);
	border: 1px solid var(--abh-border);
	box-shadow: var(--abh-shadow);
}

.abh-testimonial-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.abh-testimonial-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--abh-gold);
	background: var(--abh-cream);
	flex-shrink: 0;
}

.abh-testimonial-head cite {
	display: block;
	font-style: normal;
	font-size: 15px;
	color: var(--abh-black);
	font-weight: 700;
}

.abh-testimonial-stars {
	color: var(--abh-gold);
	font-size: 14px;
	letter-spacing: 1px;
}

.abh-testimonial p {
	font-style: normal;
	color: var(--abh-text);
	margin: 0;
	line-height: 1.8;
	font-size: 15px;
}

/* FAQ */
.abh-faq-list {
	max-width: 760px;
	margin: 0 auto;
}

.abh-faq-item {
	background: var(--abh-white);
	border: 1px solid var(--abh-border);
	border-radius: var(--abh-radius);
	margin-bottom: 12px;
	overflow: hidden;
}

.abh-faq-item summary {
	padding: 18px 22px;
	font-weight: 600;
	cursor: pointer;
	color: var(--abh-black);
	list-style: none;
}

.abh-faq-item summary::-webkit-details-marker {
	display: none;
}

.abh-faq-item p {
	padding: 0 22px 18px;
	margin: 0;
	color: var(--abh-muted);
}

/* Blog */
.abh-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.abh-blog-card {
	background: var(--abh-cream);
	border: 1px solid var(--abh-border);
	border-radius: var(--abh-radius);
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.abh-blog-thumb {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--abh-charcoal);
}

.abh-blog-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.abh-blog-thumb-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	background: linear-gradient(135deg, var(--abh-black), var(--abh-charcoal));
}

.abh-blog-card time {
	font-size: 12px;
	color: var(--abh-muted);
	padding: 14px 20px 0;
}

.abh-blog-card h3 {
	margin: 8px 20px 10px;
	font-size: 1.05rem;
}

.abh-blog-card p {
	margin: 0 20px 12px;
	font-size: 14px;
	color: var(--abh-muted);
	flex: 1;
}

.abh-blog-card .abh-link {
	margin: 0 20px 20px;
}

.abh-blog-empty {
	text-align: center;
	max-width: 520px;
	margin: 0 auto;
	padding: 32px;
	background: var(--abh-white);
	border-radius: var(--abh-radius);
	border: 1px dashed var(--abh-border);
}

.abh-blog-card h3 a {
	color: var(--abh-black);
	text-decoration: none;
}

.abh-blog-card h3 a:hover {
	color: var(--abh-gold-dark);
}

.abh-link {
	color: var(--abh-gold-dark);
	font-weight: 600;
	text-decoration: none;
	font-size: 14px;
}

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

.abh-contact-grid-form {
	grid-template-columns: 1fr 1fr 1.1fr;
	align-items: start;
}

.abh-contact-form-col h3 {
	margin: 0 0 8px;
	font-size: 1.15rem;
	color: var(--abh-black);
}

.abh-contact-form-desc {
	font-size: 14px;
	color: var(--abh-muted);
	margin: 0 0 16px;
}

.abh-contact-form-wrap {
	background: var(--abh-white);
	border: 1px solid var(--abh-border);
	border-radius: var(--abh-radius);
	padding: 22px 20px;
	box-shadow: var(--abh-shadow);
}

.abh-contact-form .abh-optional {
	font-weight: 400;
	font-size: 12px;
	color: var(--abh-muted);
}

.abh-contact-form .abh-required {
	color: #c62828;
}

.abh-contact-form-standalone {
	max-width: 480px;
	margin: 0 auto;
}

.abh-contact-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.abh-contact-list li {
	padding: 8px 0;
	border-bottom: 1px solid var(--abh-border);
}

.abh-contact-list a {
	color: var(--abh-gold-dark);
	text-decoration: none;
}

.abh-map-col {
	min-height: 280px;
}

.abh-map-widget {
	position: relative;
	border-radius: var(--abh-radius);
	overflow: hidden;
	border: 2px solid var(--abh-gold);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	background: var(--abh-charcoal);
	min-height: 280px;
}

.abh-map-widget--footer {
	min-height: 320px;
	margin-bottom: 40px;
}

.abh-map-frame {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.abh-map-iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	filter: saturate(0.92) contrast(1.05);
}

.abh-map-widget--footer .abh-map-iframe {
	min-height: 320px;
}

.abh-map-card {
	position: relative;
	z-index: 2;
	margin: 16px;
	max-width: 300px;
	padding: 18px 18px 16px;
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(12, 12, 12, 0.94), rgba(28, 24, 18, 0.92));
	border: 1px solid rgba(212, 175, 55, 0.45);
	backdrop-filter: blur(8px);
	color: #fff;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.abh-map-widget--inline .abh-map-card {
	margin: 20px 20px auto auto;
}

.abh-map-widget--footer .abh-map-card {
	margin: 24px 24px auto auto;
}

.abh-map-card-icon {
	color: var(--abh-gold);
	margin-bottom: 8px;
}

.abh-map-card-title {
	display: block;
	font-size: 15px;
	color: var(--abh-gold-light);
	margin-bottom: 6px;
}

.abh-map-card-address,
.abh-map-card-city {
	margin: 0 0 6px;
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
}

.abh-map-card-city {
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 14px;
}

.abh-map-directions {
	width: 100%;
	justify-content: center;
	text-align: center;
}

.abh-footer-map-wrap {
	padding: 0 0 8px;
}

/* ─── Subpages ─── */
.abh-page-hero {
	background: linear-gradient(135deg, var(--abh-black), var(--abh-charcoal));
	color: var(--abh-white);
	padding: 56px 0 48px;
	text-align: center;
	border-bottom: 3px solid var(--abh-gold);
}

.abh-page-hero h1 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin: 0 0 12px;
	color: var(--abh-gold-light);
	font-weight: 800;
}

.abh-page-hero p {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
}

.abh-page-content {
	padding: 48px 16px 64px;
	max-width: 800px;
}

.abh-page-content h2 {
	font-family: var(--abh-font);
	color: var(--abh-black);
	margin-top: 32px;
}

.abh-benefits-list {
	padding-right: 20px;
	line-height: 2;
}

.abh-site-inner .abh-container {
	padding-top: 32px;
	padding-bottom: 48px;
}

/* ─── Footer ─── */
.abh-site-footer {
	background: var(--abh-black);
	color: rgba(255, 255, 255, 0.75);
	padding: 56px 0 0;
	border-top: 3px solid var(--abh-gold);
}

.abh-footer-grid {
	display: grid;
	grid-template-columns: 1.3fr repeat(3, 1fr);
	gap: 32px;
	padding-bottom: 40px;
}

.abh-footer-logo {
	display: block;
	height: 72px;
	width: auto;
	margin-bottom: 16px;
}

.abh-footer-brand p {
	font-size: 14px;
	line-height: 1.8;
	margin: 0;
}

.abh-footer-col h4 {
	color: var(--abh-gold-light);
	font-size: 15px;
	margin: 0 0 16px;
	font-weight: 600;
}

.abh-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.abh-footer-col li {
	margin-bottom: 10px;
	font-size: 14px;
}

.abh-footer-col a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color var(--abh-transition);
}

.abh-footer-col a:hover {
	color: var(--abh-gold);
}

.abh-footer-contact li {
	line-height: 1.7;
}

.abh-footer-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.abh-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	font-size: 13px;
}

.abh-footer-bottom-text {
	flex: 1;
	min-width: 200px;
}

.abh-footer-enamad {
	flex-shrink: 0;
}

.abh-footer-enamad img {
	max-height: 90px;
	width: auto;
	display: block;
}

.abh-footer-bottom a {
	color: var(--abh-gold);
	text-decoration: none;
}

.abh-footer-bottom a:hover {
	text-decoration: underline;
}

/* ─── Floating CTA ─── */
.abh-floating-cta {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.abh-floating-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--abh-font);
	color: var(--abh-white);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
	transition: transform var(--abh-transition), box-shadow var(--abh-transition);
}

.abh-floating-btn svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	flex-shrink: 0;
}

.abh-floating-btn:hover {
	transform: scale(1.04);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.abh-floating-call {
	background: #2e7d32;
}

.abh-floating-book {
	background: linear-gradient(135deg, var(--abh-gold), var(--abh-gold-dark));
	color: var(--abh-black);
}

.abh-floating-wa {
	background: #128c7e;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
	.abh-hero-intro-grid,
	.abh-about-grid,
	.abh-online-grid,
	.abh-contact-grid,
	.abh-contact-grid-form,
	.abh-footer-grid {
		grid-template-columns: 1fr;
	}

	.abh-stat-cards {
		grid-template-columns: repeat(3, 1fr);
	}

	.abh-hero-slider-wrap {
		padding: 10px 10px 0;
	}

	.abh-slider-frame {
		clip-path: none;
		border-radius: 14px;
	}

	.abh-map-widget--inline .abh-map-card,
	.abh-map-widget--footer .abh-map-card {
		margin: 12px auto 12px 12px;
		max-width: none;
	}

	.abh-map-widget,
	.abh-map-iframe,
	.abh-map-widget--footer .abh-map-iframe {
		min-height: 260px;
	}

	.abh-hero-slider-wrap {
		padding: 0;
	}

	.abh-slider-frame {
		clip-path: none;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}

	.abh-slider-track {
		display: block;
		aspect-ratio: unset;
		height: auto;
		min-height: 0;
		max-height: none;
		background: var(--abh-black);
	}

	.abh-slide {
		display: none;
		position: relative;
		inset: auto;
		width: 100%;
		height: auto;
		min-height: 0;
		opacity: 0;
	}

	.abh-slide.is-active {
		display: block;
		opacity: 1;
	}

	.abh-slide-img,
	.abh-slide img {
		width: 100%;
		height: auto;
		min-height: 0;
		max-height: none;
		object-fit: contain;
		object-position: center center;
	}

	.abh-slider-dots {
		bottom: 14px;
	}
}

@media (max-width: 600px) {
	.abh-flow-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.abh-hero-intro {
		padding: 32px 0 40px;
	}

	.abh-hero-intro h1 {
		font-size: 1.55rem;
		line-height: 1.45;
	}

	.abh-lead {
		font-size: 1rem;
	}

	.abh-eyebrow {
		font-size: 12px;
	}

	.abh-online-grid {
		grid-template-columns: 1fr;
	}

	.abh-services-grid {
		grid-template-columns: 1fr;
	}

	.abh-nav-toggle {
		display: flex;
	}

	.abh-nav {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		flex-direction: column;
		background: var(--abh-black);
		padding: 16px;
		border-top: 1px solid var(--abh-border);
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
	}

	.abh-nav.is-open {
		display: flex;
	}

	.abh-header-inner {
		position: relative;
		flex-wrap: wrap;
	}

	.abh-hero-cta {
		flex-direction: column;
	}

	.abh-hero-cta .abh-btn {
		width: 100%;
	}

	.abh-section {
		padding: 48px 0;
	}

	.abh-floating-cta {
		bottom: 12px;
		left: 12px;
	}

	.abh-floating-btn span {
		display: none;
	}

	.abh-floating-btn {
		width: 52px;
		height: 52px;
		padding: 0;
		justify-content: center;
		border-radius: 50%;
	}

	.abh-footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.abh-footer-enamad {
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.abh-stat-cards {
		grid-template-columns: 1fr;
	}

	.abh-logo img {
		height: 44px;
	}
}

/* ─── 404 Page ─── */
.abh-404-hero {
	background: linear-gradient(145deg, var(--abh-black) 0%, var(--abh-charcoal) 55%, #2a2418 100%);
	color: var(--abh-white);
	padding: 72px 16px 64px;
	text-align: center;
	border-bottom: 3px solid var(--abh-gold);
}

.abh-404-inner {
	max-width: 720px;
	margin: 0 auto;
}

.abh-404-code {
	margin: 0 0 8px;
	font-size: clamp(5rem, 18vw, 8rem);
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, var(--abh-gold-light), var(--abh-gold-dark));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: -0.02em;
}

.abh-404-hero h1 {
	margin: 0 0 16px;
	font-size: clamp(1.5rem, 4vw, 2rem);
	color: var(--abh-gold-light);
	font-weight: 700;
}

.abh-404-lead {
	margin: 0 auto 32px;
	max-width: 560px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.05rem;
	line-height: 1.85;
}

.abh-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.abh-404-links {
	background: var(--abh-cream);
	padding: 56px 16px 64px;
}

.abh-404-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
	margin-bottom: 40px;
}

.abh-404-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 22px 18px;
	background: var(--abh-white);
	border: 1px solid var(--abh-border);
	border-radius: var(--abh-radius);
	text-decoration: none;
	color: var(--abh-text);
	transition: transform var(--abh-transition), box-shadow var(--abh-transition), border-color var(--abh-transition);
	box-shadow: var(--abh-shadow);
}

.abh-404-card:hover {
	transform: translateY(-3px);
	border-color: var(--abh-gold);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.abh-404-card-icon {
	font-size: 1.75rem;
}

.abh-404-card strong {
	color: var(--abh-black);
	font-size: 1rem;
}

.abh-404-card span:last-child {
	font-size: 13px;
	color: var(--abh-muted);
	line-height: 1.6;
}

.abh-404-services h3 {
	margin: 0 0 12px;
	font-size: 1.1rem;
	color: var(--abh-black);
}

.abh-404-service-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}

.abh-404-service-list a {
	color: var(--abh-gold-dark);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}

.abh-404-service-list a:hover {
	color: var(--abh-gold);
	text-decoration: underline;
}

@media (max-width: 600px) {
	.abh-404-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.abh-404-actions .abh-btn {
		width: 100%;
	}
}

/* ─── Promo bar (growth) ─── */
.abh-promo-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9998;
	background: linear-gradient(90deg, #1a1a1a, #2a2418);
	border-top: 2px solid var(--abh-gold);
	padding: 10px 12px;
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}

.abh-promo-bar-inner {
	max-width: var(--abh-container);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.abh-promo-text {
	color: #fff;
	font-size: 14px;
}

.abh-promo-text strong {
	color: var(--abh-gold-light);
}

.abh-promo-btn {
	background: var(--abh-gold);
	color: #000;
	padding: 8px 16px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
}

.abh-promo-close {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
	padding: 0 4px;
}

body:has(.abh-promo-bar:not([style*="display: none"])) .abh-floating-cta {
	bottom: 72px;
}

/* ─── Growth packages ─── */
.abh-packages-section {
	background: var(--abh-cream);
}

.abh-packages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.abh-package-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--abh-border);
	border-radius: var(--abh-radius-lg);
	padding: 24px 20px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.abh-package-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--abh-gold);
	color: #000;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
}

.abh-package-icon {
	font-size: 2rem;
	display: block;
	margin-bottom: 8px;
}

.abh-package-card h3 {
	margin: 0 0 10px;
	font-size: 1.1rem;
}

.abh-package-card p {
	color: #555;
	font-size: 14px;
	line-height: 1.8;
	margin: 0 0 12px;
}

.abh-package-save {
	color: #2e7d32;
	font-weight: 600;
	font-size: 13px;
}

.abh-package-price {
	margin: 16px 0;
}

.abh-package-price strong {
	display: block;
	font-size: 1.3rem;
	color: var(--abh-charcoal);
}

.abh-package-price span {
	font-size: 12px;
	color: #777;
}

@media (max-width: 900px) {
	.abh-packages-grid {
		grid-template-columns: 1fr;
	}
}
