/* ============================================================
   DI-HARA — Custom Stylesheet  (Light Theme)
   Bootstrap 5.3 + Outfit font + brand tokens
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
	/* Brand */
	--dh-gold: #b07728;
	--dh-gold-light: #c98c35;
	--dh-gold-pale: #f5e8cb;
	--dh-gold-bg: #fdf4e3;
	--dh-secondary: #323842;
	--dh-secondary-lt: #444c58;

	/* Light surfaces */
	--dh-bg: #faf8f5;
	--dh-bg-alt: #f2ede7;
	--dh-bg-white: #ffffff;
	--dh-card: #ffffff;

	/* Dark surfaces (navbar, footer) */
	--dh-dark: #181A1F;
	--dh-deep: #13151a;
	--dh-dark-card: #252830;

	/* Typography */
	--dh-text: #323842;
	--dh-text-muted: #6b7280;
	--dh-text-light: #9ca3af;
	--dh-white: #ffffff;

	/* UI */
	--dh-border: rgba(50, 56, 66, 0.10);
	--dh-border-gold: rgba(176, 119, 40, 0.28);
	--dh-radius: 12px;
	--dh-radius-lg: 18px;
	--dh-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--dh-shadow: 0 2px 16px rgba(50, 56, 66, 0.08);
	--dh-shadow-md: 0 6px 28px rgba(50, 56, 66, 0.11);
	--dh-shadow-lg: 0 12px 48px rgba(50, 56, 66, 0.14);
	--dh-shadow-gold: 0 4px 24px rgba(176, 119, 40, 0.30);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Outfit', system-ui, -apple-system, sans-serif;
	background-color: var(--dh-bg);
	color: var(--dh-text);
	font-size: 1.05rem;
	line-height: 1.7;
	overflow-x: hidden;
}

img {
	max-width: 100%;
}

/* Colour helpers */
.text-gold {
	color: var(--dh-gold) !important;
}

.text-gold-light {
	color: var(--dh-gold-light) !important;
}

.text-secondary-brand {
	color: var(--dh-secondary) !important;
}

/* Section background utilities */
.bg-light-main {
	background-color: var(--dh-bg);
}

.bg-light-alt {
	background-color: var(--dh-bg-alt);
}

.bg-white-clean {
	background-color: var(--dh-bg-white);
}

/* ---------- Section Shared ---------- */
.section-pad {
	padding: 50px 0;
}

.section-tag {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--dh-gold);
	background: rgba(176, 119, 40, 0.10);
	border: 1.5px solid rgba(176, 119, 40, 0.28);
	padding: 4px 14px;
	border-radius: 100px;
	margin-bottom: 14px;
}

.section-title {
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	font-weight: 800;
	color: var(--dh-secondary);
	line-height: 1.2;
	margin-bottom: 14px;
}

.section-sub {
	font-size: 1.06rem;
	color: #000;
	margin: 0 auto;
	line-height: 1.78;
}

/* ---------- Reveal Animation (progressive enhancement) ----------
   Sections are VISIBLE by default. JS adds .js-reveal-ready to <html>
   which opts them in to the animation. Without JS everything stays visible.
   ----------------------------------------------------------------- */
.reveal {
	transition: opacity 0.65s ease, transform 0.65s ease;
}

html.js-reveal-ready .reveal {
	opacity: 0;
	transform: translateY(28px);
}

html.js-reveal-ready .reveal.visible {
	opacity: 1;
	transform: none;
}

.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

/* ============================================================
   NAVBAR  (dark — kept as-is per user preference)
   ============================================================ */
#mainNav {
	padding: 18px 0;
	transition: background var(--dh-transition), padding var(--dh-transition), box-shadow var(--dh-transition);
	background: transparent;
}

#mainNav.scrolled {
	padding: 12px 0;
	background: rgba(20, 22, 28, 0.96);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.40);
}

.navbar-logo {
	transition: transform var(--dh-transition);
}

#mainNav.scrolled .navbar-logo {
	transform: scale(0.92);
}

.navbar-nav .nav-link {
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.75) !important;
	padding: 8px 14px !important;
	border-radius: 8px;
	transition: color var(--dh-transition), background var(--dh-transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	color: var(--dh-white) !important;
	background: rgba(255, 255, 255, 0.07);
}

.btn-support {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--dh-white) !important;
	background: var(--dh-gold);
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	transition: background var(--dh-transition), box-shadow var(--dh-transition), transform var(--dh-transition);
}

.btn-support:hover {
	background: var(--dh-gold-light);
	box-shadow: var(--dh-shadow-gold);
	transform: translateY(-1px);
}

/* ============================================================
   HERO  (dark — strong contrast entry to the page)
   ============================================================ */
.hero-section {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background: linear-gradient(145deg, #0d0f15 0%, #13151e 40%, #0e1016 100%);
}

.hero-section::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(ellipse 60% 55% at 15% 40%, rgba(176, 119, 40, 0.09) 0%, transparent 70%),
		radial-gradient(ellipse 50% 40% at 85% 30%, rgba(60, 80, 160, 0.07) 0%, transparent 60%),
		radial-gradient(ellipse 40% 35% at 50% 90%, rgba(176, 119, 40, 0.05) 0%, transparent 60%);
	pointer-events: none;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		url('../images/hero-bg.webp') center/cover no-repeat,
		linear-gradient(135deg, #1a1d28 0%, #0d1018 50%, #181215 100%);
	transform: scale(1.05);
	transition: transform 8s ease;
}

.hero-section:hover .hero-bg {
	transform: scale(1.0);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(160deg, rgba(10, 11, 18, 0.92) 0%, rgba(10, 11, 18, 0.72) 50%, rgba(10, 11, 18, 0.88) 100%),
		radial-gradient(ellipse at 20% 50%, rgba(176, 119, 40, 0.10) 0%, transparent 60%);
}

.hero-content {
	z-index: 2;
	padding-top: 120px;
	padding-bottom: 80px;
}

.hero-badge {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--dh-gold-light);
	background: rgba(176, 119, 40, 0.15);
	border: 1px solid rgba(176, 119, 40, 0.30);
	padding: 6px 16px;
	border-radius: 100px;
}

.hero-title {
	font-size: clamp(2.6rem, 6vw, 5.5rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--dh-white);
	animation: heroFadeUp 1s ease both;
}

.hero-title em {
	font-style: normal;
	color: var(--dh-gold-light);
}

.hero-subtitle {
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	color: rgba(255, 255, 255, 0.70);
	animation: heroFadeUp 1s 0.2s ease both;
}

@keyframes heroFadeUp {
	from {
		opacity: 0;
		transform: translateY(32px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.btn-app {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 24px;
	border-radius: 12px;
	font-family: 'Outfit', sans-serif;
	cursor: pointer;
	text-decoration: none;
	transition: transform var(--dh-transition), box-shadow var(--dh-transition), background var(--dh-transition);
	animation: heroFadeUp 1s 0.4s ease both;
}

.btn-app span {
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: 1.25;
}

.btn-app span small {
	font-size: 0.65rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.75;
}

.btn-app span strong {
	font-size: 1rem;
	font-weight: 700;
}

.btn-app:hover {
	transform: translateY(-2px);
}

.btn-app-solid {
	background: var(--dh-white);
	color: var(--dh-dark) !important;
	border: 2px solid transparent;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.30);
}

.btn-app-solid:hover {
	background: var(--dh-gold-pale);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.btn-app-outline {
	background: rgba(255, 255, 255, 0.08);
	color: var(--dh-white) !important;
	border: 1px solid rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(8px);
}

.btn-app-outline:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.35);
}

.hero-scroll-cta {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	color: rgba(255, 255, 255, 0.50);
	font-size: 1.4rem;
	text-decoration: none;
	animation: bounce 2s infinite;
	transition: color var(--dh-transition);
}

.hero-scroll-cta:hover {
	color: var(--dh-gold-light);
}

@keyframes bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(8px);
	}
}

/* ============================================================
   STATS / TRUST SECTION  — premium redesign
   ============================================================ */
.trust-section {
	background: var(--dh-secondary);
	position: relative;
	overflow: hidden;
}

/* decorative background texture */
.trust-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 80% at 0% 50%, rgba(176, 119, 40, 0.08) 0%, transparent 60%),
		radial-gradient(ellipse 50% 60% at 100% 30%, rgba(176, 119, 40, 0.06) 0%, transparent 55%),
		repeating-linear-gradient(90deg,
			rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px,
			transparent 1px, transparent 80px);
	pointer-events: none;
}

/* ---- Stats Bar ---- */
.stats-bar {
	padding: 60px 0 52px;
	position: relative;
	z-index: 1;
}

.stats-bar-inner {
	display: flex;
	align-items: stretch;
}

.stat-bar-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 16px 20px;
	position: relative;
}

.stat-bar-item+.stat-bar-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 15%;
	height: 70%;
	width: 1px;
	background: rgba(255, 255, 255, 0.12);
}

.stat-bar-icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(176, 119, 40, 0.18);
	border: 1.5px solid rgba(176, 119, 40, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--dh-gold-light);
	margin-bottom: 14px;
	transition: background var(--dh-transition), transform var(--dh-transition);
}

.stat-bar-item:hover .stat-bar-icon-wrap {
	background: rgba(176, 119, 40, 0.28);
	transform: scale(1.07);
}

.stat-bar-num {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 900;
	color: var(--dh-white);
	line-height: 1;
	letter-spacing: -0.02em;
	margin-bottom: 6px;
}

.stat-bar-num .stat-gold {
	color: var(--dh-gold-light);
}

.stat-bar-lbl {
	font-size: 0.82rem;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

/* First stat number in gold, star accent */
.stat-bar-item:first-child .stat-bar-num {
	color: var(--dh-gold-light);
}

.stat-gold {
	color: var(--dh-gold-light);
}

/* ---- Trust CTA Cards ---- */
.trust-cta-wrap {
	padding: 0 0 52px;
	position: relative;
	z-index: 1;
}

.trust-cta-card {
	border-radius: var(--dh-radius-lg);
	padding: 36px 32px;
	display: flex;
	align-items: flex-start;
	gap: 22px;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.trust-cta-card::after {
	content: '';
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	opacity: 0.06;
	background: currentColor;
}

/* Partner card */
.trust-cta-partner {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(4px);
	transition: background var(--dh-transition), border-color var(--dh-transition), transform var(--dh-transition);
}

.trust-cta-partner:hover {
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(176, 119, 40, 0.35);
	transform: translateY(-2px);
}

.trust-cta-partner .trust-cta-icon-wrap {
	width: 58px;
	height: 58px;
	min-width: 58px;
	border-radius: 16px;
	background: rgba(176, 119, 40, 0.18);
	border: 1.5px solid rgba(176, 119, 40, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: var(--dh-gold-light);
}

.trust-cta-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--dh-white);
	line-height: 1.35;
	margin-bottom: 0;
}

.trust-link {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--dh-gold-light) !important;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	transition: gap var(--dh-transition), color var(--dh-transition);
}

.trust-link:hover {
	gap: 10px !important;
	color: var(--dh-white) !important;
}

.trust-link i {
	font-size: 1.1rem;
}

/* Discount card */
.trust-cta-discount {
	background: linear-gradient(135deg, rgba(176, 119, 40, 0.22) 0%, rgba(176, 119, 40, 0.10) 100%);
	border: 1.5px solid rgba(176, 119, 40, 0.40);
	backdrop-filter: blur(4px);
	transition: transform var(--dh-transition), box-shadow var(--dh-transition);
}

.trust-cta-discount:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(176, 119, 40, 0.20);
}

.trust-discount-badge {
	min-width: 70px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--dh-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--dh-white);
	box-shadow: 0 4px 20px rgba(176, 119, 40, 0.45);
	flex-shrink: 0;
}

.trust-cta-sub {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.60);
	margin: 6px 0 0;
	line-height: 1.55;
}

.btn-trust-install {
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--dh-white) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	border-radius: 100px;
	padding: 6px 20px;
	text-decoration: none;
	margin-top: 12px;
	transition: background var(--dh-transition), border-color var(--dh-transition), transform var(--dh-transition);
}

.btn-trust-install:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.60);
	transform: translateY(-1px);
}

/* ============================================================
   SERVICES  (light theme)
   ============================================================ */
.service-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 32px 28px;
	transition: transform var(--dh-transition), border-color var(--dh-transition), box-shadow var(--dh-transition);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--dh-gold), transparent);
	opacity: 0;
	transition: opacity var(--dh-transition);
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: rgba(176, 119, 40, 0.35);
	box-shadow: var(--dh-shadow-lg);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card-featured {
	background: linear-gradient(145deg, #fdf6ea, #fffcf7);
	border-color: rgba(176, 119, 40, 0.30);
}

.service-card-featured::before {
	opacity: 1;
}

.service-icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(176, 119, 40, 0.10);
	border: 1.5px solid rgba(176, 119, 40, 0.22);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--dh-gold);
	margin-bottom: 18px;
	transition: background var(--dh-transition), transform var(--dh-transition);
}

.service-card:hover .service-icon-wrap {
	background: rgba(176, 119, 40, 0.18);
	transform: scale(1.07);
}

.service-badge {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--dh-text-muted);
	background: var(--dh-bg-alt);
	border: 1px solid var(--dh-border);
	padding: 3px 10px;
	border-radius: 100px;
	margin-bottom: 10px;
}

.service-badge-gold {
	color: var(--dh-gold);
	background: rgba(176, 119, 40, 0.10);
	border-color: rgba(176, 119, 40, 0.25);
}

.service-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dh-secondary);
	margin-bottom: 16px;
}

.service-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-list li {
	font-size: 0.875rem;
	color: var(--dh-text-muted);
	padding: 6px 0;
	padding-left: 20px;
	position: relative;
	border-bottom: 1px solid var(--dh-border);
	transition: color var(--dh-transition);
}

.service-list li:last-child {
	border-bottom: none;
}

.service-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--dh-gold);
}

.service-card:hover .service-list li {
	color: var(--dh-text);
}

/* ============================================================
   HOW IT WORKS  (light theme)
   ============================================================ */
.steps-wrapper {
	position: relative;
}

.step-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 36px 24px 28px;
	position: relative;
	transition: transform var(--dh-transition), border-color var(--dh-transition), box-shadow var(--dh-transition);
}

.step-card:hover {
	transform: translateY(-5px);
	border-color: rgba(176, 119, 40, 0.35);
	box-shadow: var(--dh-shadow-md);
}

.step-card-accent {
	/*background: linear-gradient(145deg, #fdf6ea, #fffcf7);
  border-color: rgba(176,119,40,0.30);*/
}

.step-number {
	font-size: 3.5rem;
	font-weight: 900;
	color: rgba(176, 119, 40, 0.10);
	line-height: 1;
	position: absolute;
	top: 16px;
	right: 20px;
	letter-spacing: -0.03em;
}

.step-card:hover .step-number {
	color: rgba(176, 119, 40, 0.18);
}

.step-icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(176, 119, 40, 0.10);
	border: 1.5px solid rgba(176, 119, 40, 0.22);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--dh-gold);
	margin: 0 auto 20px;
	transition: background var(--dh-transition), transform var(--dh-transition);
}

.step-card:hover .step-icon-wrap {
	background: rgba(176, 119, 40, 0.18);
	transform: scale(1.08);
}

.step-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dh-secondary);
	margin-bottom: 10px;
}

.step-desc {
	font-size: 0.875rem;
	color: #000;
	line-height: 1.65;
	margin: 0;
}

.service-area-pill {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--dh-text-muted);
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	padding: 10px 24px;
	border-radius: 100px;
	box-shadow: var(--dh-shadow);
}

.service-area-pill i {
	color: var(--dh-gold);
}

/* ============================================================
   APP DOWNLOAD  (rich dark section — striking contrast)
   ============================================================ */
.app-section {
	background: var(--dh-secondary);
	position: relative;
	overflow: hidden;
}

.app-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 70% at 0% 60%, rgba(176, 119, 40, 0.10) 0%, transparent 60%),
		radial-gradient(ellipse 50% 60% at 100% 20%, rgba(176, 119, 40, 0.07) 0%, transparent 55%),
		repeating-linear-gradient(90deg,
			rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px,
			transparent 1px, transparent 80px);
	pointer-events: none;
}

.app-section .section-tag {
	color: var(--dh-gold-light);
	background: rgba(176, 119, 40, 0.15);
	border-color: rgba(176, 119, 40, 0.30);
}

.app-section .section-title {
	color: var(--dh-white);
}

.app-section .section-sub {
	color: rgba(255, 255, 255, 0.60);
}

.app-stats {
	display: flex;
	align-items: center;
	gap: 24px;
}

.app-stat {
	display: flex;
	flex-direction: column;
}

.app-stat-num {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--dh-white);
	line-height: 1;
}

.app-stat-lbl {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.50);
	margin-top: 4px;
	font-weight: 500;
}

.app-stat-sep {
	width: 1px;
	height: 36px;
	background: rgba(255, 255, 255, 0.15);
}

.app-img-wrap {
	position: relative;
}

.app-img {
	max-height: 480px;
	object-fit: contain;
	filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.40));
	border-radius: 20px;
}

/* app section dark button overrides */
.app-section .btn-app-solid {
	background: var(--dh-white);
	color: var(--dh-secondary) !important;
}

.app-section .btn-app-solid:hover {
	background: var(--dh-gold-pale);
}

.app-section .btn-app-outline {
	background: rgba(255, 255, 255, 0.08);
	color: var(--dh-white) !important;
	border-color: rgba(255, 255, 255, 0.20);
}

.app-section .btn-app-outline:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   BLOG  (light theme)
   ============================================================ */
.blog-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform var(--dh-transition), border-color var(--dh-transition), box-shadow var(--dh-transition);
}

.blog-card:hover {
	transform: translateY(-5px);
	border-color: rgba(176, 119, 40, 0.30);
	box-shadow: var(--dh-shadow-lg);
}

.blog-img-wrap {
	position: relative;
	overflow: hidden;
	height: 210px;
	background: var(--dh-bg-alt);
}

.blog-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
	transform: scale(1.05);
}

.blog-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 55%);
}

.blog-tags-wrap {
	position: absolute;
	top: 14px;
	left: 14px;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.blog-tag-pill {
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--dh-white);
	background: rgba(0, 0, 0, 0.50);
	backdrop-filter: blur(8px);
	padding: 4px 10px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-body {
	padding: 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-meta {
	display: flex;
	gap: 14px;
	font-size: 0.78rem;
	color: var(--dh-text-light);
	margin-bottom: 12px;
}

.blog-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dh-secondary);
	line-height: 1.45;
	margin-bottom: 10px;
	transition: color var(--dh-transition);
}

.blog-card:hover .blog-title {
	color: var(--dh-gold);
}

.blog-excerpt {
	font-size: 0.855rem;
	color: #000;
	line-height: 1.65;
	flex: 1;
	margin-bottom: 16px;
}

.blog-read-more {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--dh-gold);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: gap var(--dh-transition), color var(--dh-transition);
	margin-top: auto;
}

.blog-read-more:hover {
	color: var(--dh-secondary);
	gap: 8px;
}

.btn-outline-gold {
	color: var(--dh-gold) !important;
	border: 1.5px solid var(--dh-gold) !important;
	background: transparent !important;
	font-weight: 600;
	font-size: 0.9rem;
	transition: background var(--dh-transition), color var(--dh-transition), box-shadow var(--dh-transition), transform var(--dh-transition) !important;
}

.btn-outline-gold:hover {
	background: var(--dh-gold) !important;
	color: var(--dh-white) !important;
	box-shadow: var(--dh-shadow-gold) !important;
	transform: translateY(-1px);
}

/* ============================================================
   FAQ  (light theme)
   ============================================================ */
.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	background: var(--dh-card) !important;
	border: 1.5px solid var(--dh-border) !important;
	border-radius: var(--dh-radius) !important;
	overflow: hidden;
	transition: border-color var(--dh-transition), box-shadow var(--dh-transition);
}

.faq-item:has(.accordion-button:not(.collapsed)) {
	border-color: rgba(176, 119, 40, 0.35) !important;
	box-shadow: var(--dh-shadow);
}

.faq-btn {
	background: var(--dh-card) !important;
	color: var(--dh-secondary) !important;
	font-family: 'Outfit', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	padding: 20px 24px;
	box-shadow: none !important;
	transition: color var(--dh-transition);
}

.faq-btn:not(.collapsed) {
	color: var(--dh-gold) !important;
	background: var(--dh-card) !important;
}

.faq-btn::after {
	filter: none;
	opacity: 0.5;
	transition: opacity var(--dh-transition), transform 0.3s ease;
}

.faq-btn:not(.collapsed)::after {
	opacity: 1;
	filter: brightness(0.4) sepia(1) saturate(8) hue-rotate(10deg);
}

.faq-body {
	background: var(--dh-bg) !important;
	color: #000;
	font-size: 1rem;
	line-height: 1.75;
	padding: 16px 24px 20px;
	border-top: 1px solid var(--dh-border);
}

/* ============================================================
   FOOTER  (dark — kept as-is per user preference)
   ============================================================ */
.site-footer {
	background: var(--dh-deep);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
	padding: 72px 0 48px;
}

.footer-desc {
	font-size: 0.875rem;
	color: #fff;
	line-height: 1.75;
	max-width: 320px;
}

.footer-socials {
	display: flex;
	gap: 10px;
}

.social-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.9rem;
	text-decoration: none;
	transition: background var(--dh-transition), color var(--dh-transition), border-color var(--dh-transition), transform var(--dh-transition);
}

.social-icon:hover {
	background: var(--dh-gold);
	color: var(--dh-white);
	border-color: var(--dh-gold);
	transform: translateY(-2px);
}

.footer-heading {
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0em;
	text-transform: uppercase;
	color: #b07728;
	margin-bottom: 18px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	font-size: 0.875rem;
	color: #fff;
	text-decoration: none;
	transition: color var(--dh-transition), padding-left var(--dh-transition);
	display: inline-block;
}

.footer-links a:hover {
	color: var(--dh-white);
	padding-left: 4px;
}

.footer-app-btn {
	display: inline-flex;
	align-items: center;
	font-size: 0.82rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.60) !important;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 8px;
	padding: 9px 14px;
	text-decoration: none;
	transition: background var(--dh-transition), color var(--dh-transition), border-color var(--dh-transition);
}

.footer-app-btn:hover {
	background: var(--dh-gold);
	color: var(--dh-white) !important;
	border-color: var(--dh-gold);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 20px 0;
}

.footer-copy {
	font-size: 0.8rem;
	color: #fff;
}

.footer-legal-link {
	font-size: 0.8rem;
	color: #fff;
	text-decoration: none;
	transition: color var(--dh-transition);
}

.footer-legal-link:hover {
	color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   FONT SIZE REFINEMENTS — readability bump
   ============================================================ */
.service-list li {
	font-size: 1rem;
}

.step-desc {
	font-size: 1rem;
}

.blog-meta {
	font-size: 0.82rem;
}

.blog-excerpt {
	font-size: 1rem;
}

.blog-read-more {
	font-size: 1rem;
}

.faq-btn {
	font-size: 1rem !important;
}

.faq-body {
	font-size: 0.96rem;
	line-height: 1.78;
}

.trust-cta-sub {
	font-size: 0.9rem;
}

.stat-bar-lbl {
	font-size: 0.86rem;
}

.footer-desc {
	font-size: 0.92rem;
}

.footer-links a {
	font-size: 0.92rem;
}

.service-area-pill {
	font-size: 0.9rem;
}

/* ============================================================
   WHY CHOOSE DI-HARA
   ============================================================ */
.why-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 32px 26px 28px;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: transform var(--dh-transition), border-color var(--dh-transition), box-shadow var(--dh-transition);
}

.why-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--dh-gold), transparent);
	opacity: 0;
	transition: opacity var(--dh-transition);
}

.why-card:hover {
	transform: translateY(-5px);
	border-color: rgba(176, 119, 40, 0.30);
	box-shadow: var(--dh-shadow-lg);
}

.why-card:hover::after {
	opacity: 1;
}

.why-icon-wrap {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: rgba(176, 119, 40, 0.10);
	border: 1.5px solid rgba(176, 119, 40, 0.22);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--dh-gold);
	margin-bottom: 20px;
	transition: background var(--dh-transition), transform var(--dh-transition);
}

.why-card:hover .why-icon-wrap {
	background: rgba(176, 119, 40, 0.18);
	transform: scale(1.08);
}

.why-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dh-secondary);
	margin-bottom: 10px;
}

.why-desc {
	font-size: 1rem;
	color: #000000;
	line-height: 1.7;
	margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: transform var(--dh-transition), border-color var(--dh-transition), box-shadow var(--dh-transition);
	position: relative;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	border-color: rgba(176, 119, 40, 0.30);
	box-shadow: var(--dh-shadow-md);
}

.testimonial-card::before {
	content: '\201C';
	position: absolute;
	top: 20px;
	right: 28px;
	font-size: 4.5rem;
	line-height: 1;
	font-family: Georgia, serif;
	color: rgba(176, 119, 40, 0.10);
	font-weight: 900;
}

.testimonial-card-featured {
	background: linear-gradient(145deg, #fdf6ea, #fffcf7);
	border-color: rgba(176, 119, 40, 0.28);
}

.testimonial-card-featured::before {
	color: rgba(176, 119, 40, 0.18);
}

.testimonial-stars {
	display: flex;
	gap: 3px;
	font-size: 0.9rem;
	color: var(--dh-gold);
}

.testimonial-stars .bi-star-half {
	color: var(--dh-gold);
}

.testimonial-text {
	font-size: 0.96rem;
	color: var(--dh-text);
	line-height: 1.75;
	flex: 1;
	font-style: italic;
	margin: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid var(--dh-border);
}

.testimonial-avatar {
	width: 42px;
	height: 42px;
	min-width: 42px;
	border-radius: 50%;
	background: var(--dh-secondary);
	color: var(--dh-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 700;
}

.testimonial-avatar-gold {
	background: var(--dh-gold);
}

.testimonial-name {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--dh-secondary);
}

.testimonial-location {
	font-size: 0.8rem;
	color: var(--dh-text-light);
	margin-top: 2px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
	background: var(--dh-secondary);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 55% 70% at 10% 50%, rgba(176, 119, 40, 0.12) 0%, transparent 60%),
		radial-gradient(ellipse 45% 60% at 90% 30%, rgba(176, 119, 40, 0.08) 0%, transparent 55%),
		repeating-linear-gradient(90deg,
			rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px,
			transparent 1px, transparent 80px);
	pointer-events: none;
}

.cta-banner-inner {
	position: relative;
	z-index: 1;
}

.cta-banner-glow {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(176, 119, 40, 0.15) 0%, transparent 70%);
	top: -100px;
	left: -80px;
	pointer-events: none;
}

.cta-tag {
	color: var(--dh-gold-light) !important;
	background: rgba(176, 119, 40, 0.18) !important;
	border-color: rgba(176, 119, 40, 0.35) !important;
}

.cta-banner-title {
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	font-weight: 900;
	color: var(--dh-white);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 14px;
}

.cta-banner-sub {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.60);
	line-height: 1.7;
	max-width: 500px;
	margin: 0;
}

.btn-app-cta-solid {
	background: var(--dh-gold);
	color: var(--dh-white) !important;
	border: 2px solid transparent;
	box-shadow: var(--dh-shadow-gold);
}

.btn-app-cta-solid:hover {
	background: var(--dh-gold-light);
	box-shadow: 0 8px 32px rgba(176, 119, 40, 0.50);
}

.btn-app-cta-outline {
	background: rgba(255, 255, 255, 0.09);
	color: var(--dh-white) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(8px);
}

.btn-app-cta-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.40);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
	.navbar-collapse {
		background: rgba(18, 20, 26, 0.97);
		backdrop-filter: blur(16px);
		border: 1px solid rgba(255, 255, 255, 0.07);
		border-radius: 14px;
		padding: 16px;
		margin-top: 12px;
	}

	.navbar-nav .nav-link {
		padding: 10px 16px !important;
	}

	.btn-support {
		margin-top: 10px;
		width: 100%;
		justify-content: center;
	}

	.section-pad {
		padding: 64px 0;
	}

	.stat-bar-item+.stat-bar-item::before {
		display: none;
	}

	.stats-bar-inner {
		flex-wrap: wrap;
	}

	.stat-bar-item {
		flex: 0 0 50%;
		padding: 20px;
	}

	.trust-cta-card {
		gap: 16px;
		padding: 28px 22px;
	}
}

@media (max-width: 767.98px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.stats-bar {
		padding: 44px 0 36px;
	}

	.stat-bar-num {
		font-size: 2rem;
	}

	.stat-bar-icon-wrap {
		width: 44px;
		height: 44px;
		font-size: 1.2rem;
		margin-bottom: 10px;
	}

	.app-stats {
		gap: 16px;
	}

	.app-stat-num {
		font-size: 1.25rem;
	}

	.footer-top {
		padding: 48px 0 32px;
	}
}

@media (max-width: 575.98px) {
	.btn-app {
		width: 100%;
		justify-content: center;
	}

	.section-pad {
		padding: 52px 0;
	}

	.stat-bar-item {
		flex: 0 0 50%;
	}
}

/* ============================================================
   INNER PAGE HERO (shared)
   ============================================================ */
.page-hero {
	background: var(--dh-secondary);
	padding: 150px 0 80px;
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 80px),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 80px);
	pointer-events: none;
}

.page-hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(176, 119, 40, 0.12) 0%, transparent 65%);
	top: -150px;
	left: -100px;
	pointer-events: none;
}

.page-hero-tag {
	color: var(--dh-gold-light) !important;
	background: rgba(176, 119, 40, 0.15) !important;
	border-color: rgba(176, 119, 40, 0.30) !important;
}

.page-hero-title {
	font-size: clamp(1.9rem, 3.5vw, 2.9rem);
	font-weight: 900;
	color: var(--dh-white);
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.page-hero-sub {
	font-size: 1.06rem;
	color: rgba(255, 255, 255, 0.58);
	line-height: 1.75;
	max-width: 580px;
	margin: 0 auto;
}

.page-hero-helpdesk {
	padding-bottom: 100px;
}

/* Partner CTA buttons in hero */
.btn-partner-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	background: var(--dh-gold);
	color: var(--dh-white) !important;
	border: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background var(--dh-transition), box-shadow var(--dh-transition), transform var(--dh-transition);
	box-shadow: var(--dh-shadow-gold);
}

.btn-partner-primary:hover {
	background: var(--dh-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(176, 119, 40, 0.45);
}

.btn-partner-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--dh-white) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	backdrop-filter: blur(6px);
	transition: background var(--dh-transition), border-color var(--dh-transition);
}

.btn-partner-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.40);
}

/* Generic primary button */
.btn-dh-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 26px;
	background: var(--dh-gold);
	color: var(--dh-white) !important;
	border: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background var(--dh-transition), box-shadow var(--dh-transition), transform var(--dh-transition);
	box-shadow: var(--dh-shadow-gold);
}

.btn-dh-primary:hover {
	background: var(--dh-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(176, 119, 40, 0.40);
}

/* ============================================================
   HELP DESK SEARCH
   ============================================================ */
.help-search-wrap {
	max-width: 600px;
	margin: 0 auto;
}

.help-search-box {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.10);
	border: 1.5px solid rgba(255, 255, 255, 0.18);
	border-radius: 50px;
	padding: 6px 6px 6px 20px;
	backdrop-filter: blur(10px);
	gap: 10px;
}

.help-search-icon {
	color: rgba(255, 255, 255, 0.50);
	font-size: 1.1rem;
	flex-shrink: 0;
}

.help-search-input {
	flex: 1;
	background: none;
	border: none;
	outline: none;
	color: var(--dh-white);
	font-size: 0.95rem;
	font-family: 'Outfit', sans-serif;
}

.help-search-input::placeholder {
	color: rgba(255, 255, 255, 0.40);
}

.help-search-btn {
	padding: 10px 22px;
	background: var(--dh-gold);
	color: var(--dh-white);
	border: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.9rem;
	font-family: 'Outfit', sans-serif;
	cursor: pointer;
	transition: background var(--dh-transition);
	flex-shrink: 0;
}

.help-search-btn:hover {
	background: var(--dh-gold-light);
}

/* Help categories */
.help-cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 24px 16px 20px;
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	cursor: pointer;
	transition: transform var(--dh-transition), border-color var(--dh-transition), box-shadow var(--dh-transition);
}

.help-cat-card:hover {
	transform: translateY(-4px);
	border-color: rgba(176, 119, 40, 0.30);
	box-shadow: var(--dh-shadow-md);
}

.help-cat-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(176, 119, 40, 0.10);
	border: 1.5px solid rgba(176, 119, 40, 0.20);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	color: var(--dh-gold);
	margin-bottom: 12px;
}

.help-cat-title {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--dh-secondary);
	margin-bottom: 4px;
	line-height: 1.3;
}

.help-cat-count {
	font-size: 0.78rem;
	color: var(--dh-text-light);
}

/* Contact channel cards — help desk */
.contact-channel-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 32px 24px 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transition: transform var(--dh-transition), box-shadow var(--dh-transition);
}

.contact-channel-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--dh-shadow-md);
}

.contact-channel-card-featured {
	background: linear-gradient(145deg, #1c2030, #232838);
	border-color: rgba(176, 119, 40, 0.30);
}

.contact-channel-icon {
	width: 62px;
	height: 62px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	background: rgba(176, 119, 40, 0.10);
	border: 1.5px solid rgba(176, 119, 40, 0.20);
	color: var(--dh-gold);
	margin-bottom: 8px;
}

.contact-channel-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dh-secondary);
}

.contact-channel-card-featured .contact-channel-title {
	color: var(--dh-white);
}

.contact-channel-desc {
	font-size: 1rem;
	color: #000;
	line-height: 1.65;
	margin: 0;
}

.contact-channel-card-featured .contact-channel-desc {
	color: #fff;
}

.contact-channel-time {
	font-size: 0.8rem;
	color: #000;
}

.contact-channel-link {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--dh-gold) !important;
	text-decoration: none;
}

.contact-channel-link:hover {
	color: var(--dh-gold-light) !important;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-card {
	position: relative;
}

.about-story-img-wrap {
	border-radius: var(--dh-radius-lg);
	overflow: hidden;
	position: relative;
	box-shadow: var(--dh-shadow-lg);
}

.about-story-img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.about-story-img-wrap:hover .about-story-img {
	transform: scale(1.03);
}

.about-story-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: var(--dh-gold);
	color: var(--dh-white);
	border-radius: 14px;
	padding: 14px 20px;
	box-shadow: 0 4px 20px rgba(176, 119, 40, 0.40);
	backdrop-filter: blur(6px);
}

.about-story-badge-num {
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
}

.about-story-badge-lbl {
	font-size: 0.78rem;
	opacity: 0.85;
	margin-top: 3px;
	line-height: 1.3;
}

/* Mission / Vision cards */
.mv-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 36px 32px;
	position: relative;
	overflow: hidden;
	transition: transform var(--dh-transition), box-shadow var(--dh-transition);
}

.mv-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--dh-shadow-lg);
}

.mv-card-mission {
	border-top: 3px solid var(--dh-gold);
}

.mv-card-vision {
	border-top: 3px solid var(--dh-secondary);
}

.mv-icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--dh-gold);
	background: rgba(176, 119, 40, 0.10);
	border: 1.5px solid rgba(176, 119, 40, 0.20);
	margin-bottom: 20px;
}

.mv-title {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--dh-secondary);
	margin-bottom: 14px;
}

.mv-desc {
	font-size: 1rem;
	color: var(--dh-text-muted);
	line-height: 1.78;
	margin: 0;
}

/* Value cards */
.value-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 32px 24px 28px;
	transition: transform var(--dh-transition), border-color var(--dh-transition), box-shadow var(--dh-transition);
}

.value-card:hover {
	transform: translateY(-4px);
	border-color: rgba(176, 119, 40, 0.28);
	box-shadow: var(--dh-shadow-md);
}

.value-icon-wrap {
	width: 54px;
	height: 54px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--dh-gold);
	background: rgba(176, 119, 40, 0.10);
	border: 1.5px solid rgba(176, 119, 40, 0.20);
	margin: 0 auto 18px;
}

.value-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dh-secondary);
	margin-bottom: 10px;
}

.value-desc {
	font-size: 1rem;
	color: #000;
	line-height: 1.7;
	margin: 0;
}

/* About stats dark section */
.about-stats-section {
	background: var(--dh-secondary);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.about-stats-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 70% at 15% 50%, rgba(176, 119, 40, 0.10) 0%, transparent 60%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 80px);
	pointer-events: none;
}

.about-stats-glow {
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(176, 119, 40, 0.12) 0%, transparent 70%);
	top: -120px;
	right: -80px;
	pointer-events: none;
}

.about-stats-tag {
	color: var(--dh-gold-light) !important;
	background: rgba(176, 119, 40, 0.15) !important;
	border-color: rgba(176, 119, 40, 0.30) !important;
}

.about-stat-item {
	position: relative;
	z-index: 1;
}

.about-stat-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	color: var(--dh-gold);
	background: rgba(176, 119, 40, 0.12);
	border: 1px solid rgba(176, 119, 40, 0.22);
	margin: 0 auto 14px;
}

.about-stat-num {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--dh-white);
	line-height: 1;
	margin-bottom: 6px;
}

.about-stat-lbl {
	font-size: 0.86rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Our Promise section */
.promise-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius);
	transition: border-color var(--dh-transition), box-shadow var(--dh-transition);
}

.promise-item:hover {
	border-color: rgba(176, 119, 40, 0.28);
	box-shadow: var(--dh-shadow-sm);
}

.promise-icon {
	font-size: 1.15rem;
	color: var(--dh-gold);
	margin-top: 2px;
	flex-shrink: 0;
}

.promise-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dh-secondary);
	margin-bottom: 3px;
}

.promise-desc {
	font-size: 1rem;
	color: #000;
	line-height: 1.6;
	margin: 0;
}

/* ============================================================
   BECOME A PARTNER PAGE
   ============================================================ */
.partner-type-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform var(--dh-transition), box-shadow var(--dh-transition), border-color var(--dh-transition);
}

.partner-type-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--dh-shadow-lg);
	border-color: rgba(176, 119, 40, 0.28);
}

.partner-type-card-gold {
	background: linear-gradient(145deg, #fdf6ea, #fffcf7);
	border-color: rgba(176, 119, 40, 0.28);
}

.partner-type-icon {
	width: 60px;
	height: 60px;
	border-radius: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: var(--dh-gold);
	background: rgba(176, 119, 40, 0.10);
	border: 1.5px solid rgba(176, 119, 40, 0.22);
}

.partner-type-badge {
	display: inline-block;
	padding: 4px 14px;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: var(--dh-secondary);
	color: var(--dh-white);
	width: fit-content;
}

.partner-type-badge-gold {
	background: var(--dh-gold);
	color: var(--dh-white);
}

.partner-type-title {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--dh-secondary);
	margin: 0;
}

.partner-type-desc {
	font-size: 0.96rem;
	color: #000;
	line-height: 1.72;
	margin: 0;
}

.partner-feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.partner-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.93rem;
	color: var(--dh-text);
	line-height: 1.5;
}

.partner-feature-list li i {
	color: var(--dh-gold);
	font-size: 0.9rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.btn-partner-card,
.btn-partner-card-gold {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	border: 2px solid;
	transition: all var(--dh-transition);
	width: fit-content;
}

.btn-partner-card {
	background: transparent;
	color: var(--dh-secondary) !important;
	border-color: var(--dh-secondary);
}

.btn-partner-card:hover {
	background: var(--dh-secondary);
	color: var(--dh-white) !important;
}

.btn-partner-card-gold {
	background: var(--dh-gold);
	color: var(--dh-white) !important;
	border-color: var(--dh-gold);
	box-shadow: var(--dh-shadow-gold);
}

.btn-partner-card-gold:hover {
	background: var(--dh-gold-light);
	border-color: var(--dh-gold-light);
}

/* Benefits */
.benefit-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 28px 24px;
	transition: transform var(--dh-transition), border-color var(--dh-transition), box-shadow var(--dh-transition);
}

.benefit-card:hover {
	transform: translateY(-4px);
	border-color: rgba(176, 119, 40, 0.28);
	box-shadow: var(--dh-shadow-md);
}

.benefit-icon-wrap {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: var(--dh-gold);
	background: rgba(176, 119, 40, 0.10);
	border: 1.5px solid rgba(176, 119, 40, 0.18);
	margin-bottom: 16px;
}

.benefit-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dh-secondary);
	margin-bottom: 8px;
}

.benefit-desc {
	font-size: 1rem;
	color: #000;
	line-height: 1.7;
	margin: 0;
}

/* Requirements */
.req-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 32px 30px;
}

.req-icon-wrap {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: var(--dh-gold);
	background: rgba(176, 119, 40, 0.10);
	border: 1.5px solid rgba(176, 119, 40, 0.18);
	flex-shrink: 0;
}

.req-title {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--dh-secondary);
}

.req-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.req-list li {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	font-size: 1rem;
	color: var(--dh-text);
	line-height: 1.55;
}

.req-list li i {
	color: var(--dh-gold);
	font-size: 1.3rem;
	margin-top: -1px;
	flex-shrink: 0;
}

/* Application / Support forms */
.partner-form-card,
.support-form-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 40px 36px;
}

.dh-label {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--dh-secondary);
	margin-bottom: 7px;
}

.dh-input {
	background: var(--dh-bg-alt) !important;
	border: 1.5px solid var(--dh-border) !important;
	border-radius: 10px !important;
	color: var(--dh-text) !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 0.95rem !important;
	padding: 12px 16px !important;
	transition: border-color var(--dh-transition), box-shadow var(--dh-transition) !important;
}

.dh-input:focus {
	border-color: var(--dh-gold) !important;
	box-shadow: 0 0 0 3px rgba(176, 119, 40, 0.12) !important;
	outline: none !important;
}

.dh-input::placeholder {
	color: var(--dh-text-light) !important;
}

.btn-partner-submit,
.btn-support-submit {
	padding: 15px 32px;
	background: var(--dh-gold);
	color: var(--dh-white) !important;
	border: none;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1rem;
	font-family: 'Outfit', sans-serif;
	cursor: pointer;
	box-shadow: var(--dh-shadow-gold);
	transition: background var(--dh-transition), transform var(--dh-transition), box-shadow var(--dh-transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-partner-submit:hover,
.btn-support-submit:hover {
	background: var(--dh-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(176, 119, 40, 0.45);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.featured-post-img-wrap {
	border-radius: var(--dh-radius-lg);
	overflow: hidden;
	position: relative;
	box-shadow: var(--dh-shadow-lg);
}

.featured-post-img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.featured-post-img-wrap:hover .featured-post-img {
	transform: scale(1.03);
}

.featured-post-label {
	position: absolute;
	top: 18px;
	left: 18px;
	background: var(--dh-gold);
	color: var(--dh-white);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 50px;
}

.featured-post-title {
	font-size: 1.55rem;
	font-weight: 800;
	color: var(--dh-secondary);
	line-height: 1.25;
	margin: 0;
}

.featured-post-excerpt {
	font-size: 0.98rem;
	color: var(--dh-text-muted);
	line-height: 1.75;
	margin: 0;
}

.blog-filter-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.blog-filter-btn {
	padding: 7px 18px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	background: var(--dh-card);
	color: var(--dh-text-muted);
	border: 1.5px solid var(--dh-border);
	cursor: pointer;
	font-family: 'Outfit', sans-serif;
	transition: all var(--dh-transition);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
	background: var(--dh-gold);
	color: var(--dh-white);
	border-color: var(--dh-gold);
}

/* Blog image placeholders (laundry colour palette) */
.blog-img-placeholder {
	width: 100%;
	height: 200px;
}

.blog-img-1 {
	background: linear-gradient(135deg, #2a2e3a 0%, #3d4150 100%);
}

.blog-img-2 {
	background: linear-gradient(135deg, #b07728 0%, #c98c35 100%);
}

.blog-img-3 {
	background: linear-gradient(135deg, #1f2330 0%, #323842 100%);
}

/* Pagination */
.blog-pagination {
	gap: 6px;
}

.blog-page-link {
	padding: 8px 16px !important;
	border-radius: 8px !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 600 !important;
	font-size: 0.9rem !important;
	color: var(--dh-secondary) !important;
	background: var(--dh-card) !important;
	border-color: var(--dh-border) !important;
	transition: all var(--dh-transition) !important;
}

.page-item.active .blog-page-link {
	background: var(--dh-gold) !important;
	border-color: var(--dh-gold) !important;
	color: var(--dh-white) !important;
}

.blog-page-link:hover {
	background: var(--dh-gold) !important;
	border-color: var(--dh-gold) !important;
	color: var(--dh-white) !important;
}

/* Newsletter */
.newsletter-input {
	border-radius: 50px !important;
	flex: 1;
	min-width: 240px;
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
	color: var(--dh-white) !important;
}

.newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.45) !important;
}

.newsletter-input:focus {
	border-color: var(--dh-gold) !important;
	box-shadow: 0 0 0 3px rgba(176, 119, 40, 0.18) !important;
}

.btn-newsletter-submit {
	padding: 12px 26px;
	border-radius: 50px;
	background: var(--dh-gold);
	color: var(--dh-white);
	border: none;
	font-weight: 700;
	font-size: 0.9rem;
	font-family: 'Outfit', sans-serif;
	cursor: pointer;
	white-space: nowrap;
	transition: background var(--dh-transition);
}

.btn-newsletter-submit:hover {
	background: var(--dh-gold-light);
}

/* ============================================================
   SUPPORT PAGE
   ============================================================ */
.support-channel-card {
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 36px 28px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transition: transform var(--dh-transition), box-shadow var(--dh-transition);
}

.support-channel-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--dh-shadow-md);
}

.support-channel-card-featured {
	background: linear-gradient(145deg, #1c2030, #232838);
	border-color: rgba(176, 119, 40, 0.35);
}

.support-channel-icon {
	width: 66px;
	height: 66px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7rem;
	margin-bottom: 6px;
}

.support-channel-chat {
	background: rgba(176, 119, 40, 0.12);
	border: 1.5px solid rgba(176, 119, 40, 0.22);
	color: var(--dh-gold);
}

.support-channel-call {
	background: rgba(176, 119, 40, 0.15);
	border: 1.5px solid rgba(176, 119, 40, 0.28);
	color: var(--dh-gold);
}

.support-channel-email {
	background: rgba(176, 119, 40, 0.12);
	border: 1.5px solid rgba(176, 119, 40, 0.22);
	color: var(--dh-gold);
}

.support-channel-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--dh-secondary);
	margin: 0;
}

.support-channel-card-featured .support-channel-title {
	color: var(--dh-white);
}

.support-channel-desc {
	font-size: 1rem;
	color: #000;
	line-height: 1.65;
	margin: 0;
	text-align: center;
}

.support-channel-card-featured .support-channel-desc {
	color: #fff;
}

.support-channel-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
}

.support-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 700;
}

.support-badge-green {
	background: rgba(16, 185, 129, 0.15);
	color: #10b981;
	border: 1px solid rgba(16, 185, 129, 0.25);
}

.support-response-time {
	font-size: 0.8rem;
	color: #000;
}

.support-channel-card-featured .support-response-time {
	color: #fff;
}

.support-phone-number {
	font-size: 1.3rem;
	font-weight: 900;
	color: var(--dh-gold) !important;
	text-decoration: none;
	line-height: 1;
}

.support-email {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--dh-gold) !important;
	text-decoration: none;
}

.btn-support-channel,
.btn-support-channel-gold {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	transition: all var(--dh-transition);
	font-family: 'Outfit', sans-serif;
	border: 2px solid;
}

.btn-support-channel {
	background: transparent;
	color: var(--dh-secondary) !important;
	border-color: var(--dh-secondary);
}

.btn-support-channel:hover {
	background: var(--dh-secondary);
	color: var(--dh-white) !important;
}

.btn-support-channel-gold {
	background: var(--dh-gold);
	color: var(--dh-white) !important;
	border-color: var(--dh-gold);
	box-shadow: var(--dh-shadow-gold);
}

.btn-support-channel-gold:hover {
	background: var(--dh-gold-light);
	border-color: var(--dh-gold-light);
}

/* Support info block */
.support-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.support-info-icon {
	width: 40px;
	height: 40px;
	border-radius: 11px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.05rem;
	color: var(--dh-gold);
	background: rgba(176, 119, 40, 0.10);
	border: 1px solid rgba(176, 119, 40, 0.18);
}

.support-info-label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--dh-text-light);
	margin-bottom: 3px;
}

.support-info-value {
	font-size: 0.94rem;
	color: var(--dh-text);
	line-height: 1.55;
}

/* Quick help cards */
.quick-help-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius);
	transition: transform var(--dh-transition), border-color var(--dh-transition), box-shadow var(--dh-transition);
}

.quick-help-card:hover {
	transform: translateY(-3px);
	border-color: rgba(176, 119, 40, 0.30);
	box-shadow: var(--dh-shadow-sm);
}

.quick-help-icon {
	font-size: 1.15rem;
	color: var(--dh-gold);
	flex-shrink: 0;
}

.quick-help-label {
	flex: 1;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--dh-secondary);
}

.quick-help-arrow {
	font-size: 0.85rem;
	color: var(--dh-text-light);
	transition: transform var(--dh-transition);
}

.quick-help-card:hover .quick-help-arrow {
	transform: translateX(4px);
	color: var(--dh-gold);
}

/* Blog category tag (used on home + blog pages) */
.blog-cat-tag {
	display: inline-block;
	padding: 3px 12px;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: rgba(176, 119, 40, 0.12);
	color: var(--dh-gold);
	border: 1px solid rgba(176, 119, 40, 0.22);
}

/* ============================================================
   INNER PAGES RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
	.page-hero {
		padding: 130px 0 60px;
	}

	.about-story-img {
		height: 320px;
	}

	.partner-form-card,
	.support-form-card {
		padding: 28px 22px;
	}
}

@media (max-width: 767.98px) {
	.page-hero {
		padding: 120px 0 52px;
	}

	.page-hero-title {
		font-size: 1.8rem;
	}

	.featured-post-img {
		height: 240px;
	}

	.mv-card {
		padding: 26px 22px;
	}

	.partner-form-card,
	.support-form-card {
		padding: 24px 18px;
	}

	.help-search-box {
		padding: 5px 5px 5px 16px;
	}
}

/* ============================================================
   POLICY / LEGAL PAGES
   ============================================================ */
.page-hero-legal {
	padding: 130px 0 60px;
}

.policy-last-updated {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.38);
	letter-spacing: 0.02em;
}

/* Sticky TOC sidebar */
.policy-toc {
	position: sticky;
	top: 96px;
	background: var(--dh-card);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius-lg);
	padding: 24px 22px;
}

.policy-toc-title {
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--dh-secondary);
	margin-bottom: 14px;
}

.policy-toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.policy-toc-list a {
	display: block;
	padding: 7px 10px;
	font-size: 1rem;
	font-weight: 500;
	color: #000;
	text-decoration: none;
	border-radius: 7px;
	transition: background var(--dh-transition), color var(--dh-transition);
	line-height: 1.4;
}

.policy-toc-list a:hover {
	background: rgba(176, 119, 40, 0.08);
	color: var(--dh-gold);
}

/* Policy body */
.policy-body {
	max-width: 720px;
}

.policy-section {
	padding-bottom: 36px;
	margin-bottom: 36px;
	border-bottom: 1px solid var(--dh-border);
}

.policy-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.policy-heading {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--dh-secondary);
	margin: 0 0 16px;
	padding-top: 4px;
	scroll-margin-top: 100px;
}

.policy-subheading {
	font-size: 1rem;
	font-weight: 700;
	color: var(--dh-secondary);
	margin: 20px 0 10px;
}

.policy-text {
	font-size: 0.97rem;
	color: var(--dh-text-muted);
	line-height: 1.82;
	margin-bottom: 12px;
}

.policy-text:last-child {
	margin-bottom: 0;
}

.policy-list {
	list-style: none;
	padding: 0;
	margin: 0 0 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.policy-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.97rem;
	color: var(--dh-text-muted);
	line-height: 1.72;
	padding-left: 4px;
}

.policy-list li::before {
	content: '›';
	color: var(--dh-gold);
	font-weight: 800;
	font-size: 1rem;
	margin-top: 1px;
	flex-shrink: 0;
}

.policy-link {
	color: var(--dh-gold);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 1px solid rgba(176, 119, 40, 0.30);
	transition: color var(--dh-transition), border-color var(--dh-transition);
}

.policy-link:hover {
	color: var(--dh-gold-light);
	border-color: var(--dh-gold-light);
}

/* Notice / callout boxes */
.policy-notice-box {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: rgba(176, 119, 40, 0.07);
	border: 1.5px solid rgba(176, 119, 40, 0.22);
	border-radius: var(--dh-radius);
	padding: 18px 20px;
	margin-bottom: 32px;
	font-size: 0.93rem;
	color: var(--dh-text);
	line-height: 1.72;
}

.policy-notice-warning {
	background: rgba(234, 179, 8, 0.07);
	border-color: rgba(234, 179, 8, 0.25);
}

.policy-notice-icon {
	font-size: 1.15rem;
	color: var(--dh-gold);
	flex-shrink: 0;
	margin-top: 2px;
}

.policy-notice-warning .policy-notice-icon {
	color: #b45309;
}

/* Contact block inside policy */
.policy-contact-block {
	background: var(--dh-bg-alt);
	border: 1.5px solid var(--dh-border);
	border-radius: var(--dh-radius);
	padding: 20px 22px;
	margin-top: 12px;
	font-size: 0.93rem;
	color: var(--dh-text);
	line-height: 1.8;
}

.policy-contact-block p {
	margin: 0 0 10px;
}

.policy-contact-block p:last-child {
	margin: 0;
}

/* Refund summary cards */
.policy-summary-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 20px 18px;
	border-radius: var(--dh-radius);
	border: 1.5px solid;
	font-size: 0.85rem;
}

.policy-summary-card i {
	font-size: 1.3rem;
}

.policy-summary-label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.policy-summary-value {
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.45;
}

.policy-summary-green {
	background: rgba(16, 185, 129, 0.07);
	border-color: rgba(16, 185, 129, 0.22);
	color: #065f46;
}

.policy-summary-green i {
	color: #10b981;
}

.policy-summary-gold {
	background: rgba(176, 119, 40, 0.08);
	border-color: rgba(176, 119, 40, 0.22);
	color: #78350f;
}

.policy-summary-gold i {
	color: var(--dh-gold);
}

.policy-summary-blue {
	background: rgba(59, 130, 246, 0.07);
	border-color: rgba(59, 130, 246, 0.20);
	color: #1e3a5f;
}

.policy-summary-blue i {
	color: #3b82f6;
}

/* Policy data table */
.policy-table-wrap {
	overflow-x: auto;
	margin: 16px 0;
	border-radius: var(--dh-radius);
	border: 1.5px solid var(--dh-border);
}

.policy-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	font-family: 'Outfit', sans-serif;
}

.policy-table thead tr {
	background: var(--dh-secondary);
}

.policy-table thead th {
	padding: 12px 16px;
	color: var(--dh-white);
	font-weight: 700;
	text-align: left;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.policy-table tbody tr {
	border-bottom: 1px solid var(--dh-border);
}

.policy-table tbody tr:last-child {
	border-bottom: none;
}

.policy-table tbody tr:nth-child(even) {
	background: var(--dh-bg-alt);
}

.policy-table tbody td {
	padding: 11px 16px;
	color: var(--dh-text-muted);
	vertical-align: top;
	line-height: 1.55;
}

.policy-table tbody td:first-child {
	color: var(--dh-text);
	font-weight: 500;
}

@media (max-width: 767.98px) {
	.page-hero-legal {
		padding: 115px 0 50px;
	}

	.policy-body {
		max-width: 100%;
	}

	.policy-heading {
		font-size: 1.1rem;
	}

	.policy-summary-card {
		padding: 16px 14px;
	}
}

/* ---- Single Post Styles ---- */
    .post-breadcrumb {
        padding: 16px 0 0;
        font-size: 0.82rem;
        color: var(--dh-text-light);
    }
    .post-breadcrumb a { color: var(--dh-gold); text-decoration: none; font-weight: 500; }
    .post-breadcrumb a:hover { text-decoration: underline; }
    .post-breadcrumb .bc-sep { margin: 0 7px; opacity: 0.4; }

    .post-header { padding: 40px 0 36px; }
    .post-category-tag {
        display: inline-block;
        background: rgba(176,119,40,0.10);
        color: var(--dh-gold);
        border: 1px solid rgba(176,119,40,0.22);
        padding: 4px 14px;
        border-radius: 50px;
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        margin-bottom: 18px;
    }
    .post-title {
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        font-weight: 900;
        color: var(--dh-secondary);
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .post-meta-bar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 18px;
        padding: 14px 0;
        border-top: 1.5px solid var(--dh-border);
        border-bottom: 1.5px solid var(--dh-border);
        margin-bottom: 32px;
    }
    .post-meta-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.83rem;
        color: var(--dh-text-muted);
        font-weight: 500;
    }
    .post-meta-item i { color: var(--dh-gold); font-size: 0.9rem; }
    .post-meta-author {
        display: flex;
        align-items: center;
        gap: 9px;
        margin-left: auto;
    }
    .post-author-avatar {
        width: 32px; height: 32px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--dh-gold), var(--dh-gold-light));
        display: flex; align-items: center; justify-content: center;
        font-size: 0.78rem; font-weight: 800; color: #fff;
        flex-shrink: 0;
    }
    .post-author-name { font-size: 0.82rem; font-weight: 700; color: var(--dh-secondary); }
    .post-author-role { font-size: 0.72rem; color: var(--dh-text-light); }

    /* ---- Post Banner ---- */
    .post-banner {
        border-radius: var(--dh-radius-lg);
        overflow: hidden;
        margin-bottom: 36px;
        height: 340px;
        position: relative;
    }
    .post-banner-img {
        width: 100%; height: 100%;
    }

    /* ---- Content body ---- */
    .post-content {
        font-size: 1rem;
        line-height: 1.82;
        color: var(--dh-text-muted);
        max-width: 760px;
    }
    .post-content p { margin-bottom: 1.3em; }
    .post-content h2 {
        font-size: 1.35rem; font-weight: 800;
        color: var(--dh-secondary);
        margin: 2.2em 0 0.7em; line-height: 1.3;
    }
    .post-content h3 {
        font-size: 1.1rem; font-weight: 700;
        color: var(--dh-secondary);
        margin: 1.8em 0 0.5em;
    }
    .post-content h4 {
        font-size: 1rem; font-weight: 700;
        color: var(--dh-secondary);
        margin: 1.5em 0 0.4em;
    }
    .post-content ul, .post-content ol { padding-left: 1.6em; margin-bottom: 1.3em; }
    .post-content li { margin-bottom: 0.45em; }
    .post-content a {
        color: var(--dh-gold); font-weight: 600;
        text-decoration: none;
        border-bottom: 1.5px solid rgba(176,119,40,0.30);
        transition: border-color 0.2s, color 0.2s;
    }
    .post-content a:hover { color: var(--dh-gold-light); border-bottom-color: var(--dh-gold-light); }
    .post-content img { max-width: 100%; border-radius: 12px; margin: 1.5em 0; display: block; }
    .post-content blockquote {
        border-left: 4px solid var(--dh-gold);
        padding: 12px 20px; margin: 1.8em 0;
        background: rgba(176,119,40,0.05);
        border-radius: 0 8px 8px 0;
        font-style: italic; color: var(--dh-secondary);
    }
    .post-content code {
        background: var(--dh-bg-alt); padding: 2px 7px;
        border-radius: 5px; font-size: 0.87em; color: var(--dh-secondary);
    }
    .post-content pre {
        background: var(--dh-secondary); color: #e8eaed;
        padding: 18px 20px; border-radius: 10px;
        overflow-x: auto; margin: 1.5em 0; font-size: 0.87rem;
    }
    .post-content hr { border: none; border-top: 1.5px solid var(--dh-border); margin: 2.5em 0; }

    /* ---- Share ---- */
    .post-share { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
    .post-share-label { font-size: 0.8rem; font-weight: 700; color: var(--dh-text-muted); }
    .share-btn {
        display: inline-flex; align-items: center; justify-content: center;
        width: 36px; height: 36px; border-radius: 50%;
        background: var(--dh-bg-alt); border: 1.5px solid var(--dh-border);
        color: var(--dh-text-muted); font-size: 0.9rem;
        text-decoration: none; transition: all 0.2s; cursor: pointer;
    }
    .share-btn:hover { background: var(--dh-gold); border-color: var(--dh-gold); color: #fff; }

    /* ---- Sidebar ---- */
    .post-sidebar { padding-left: 32px; }
    @media (max-width: 991.98px) { .post-sidebar { padding-left: 0; margin-top: 40px; } }
    .sidebar-widget {
        background: var(--dh-bg-alt); border: 1.5px solid var(--dh-border);
        border-radius: var(--dh-radius-lg); padding: 22px 20px; margin-bottom: 20px;
    }
    .sidebar-widget-title {
        font-size: 0.75rem; font-weight: 800;
        text-transform: uppercase; letter-spacing: 0.08em;
        color: var(--dh-secondary); margin-bottom: 16px;
        display: flex; align-items: center; gap: 7px;
    }
    .sidebar-widget-title i { color: var(--dh-gold); }
    .sidebar-post { display: flex; gap: 12px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--dh-border); }
    .sidebar-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .sidebar-post-thumb { width: 56px; height: 56px; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
    .sidebar-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .sidebar-post-title {
        font-size: 0.82rem; font-weight: 700; color: var(--dh-secondary);
        line-height: 1.35; text-decoration: none; display: block;
    }
    .sidebar-post-title:hover { color: var(--dh-gold); }
    .sidebar-post-date { font-size: 0.72rem; color: var(--dh-text-light); margin-top: 3px; }

    /* ---- Related posts ---- */
    .related-posts-section { border-top: 2px solid var(--dh-border); padding-top: 48px; margin-top: 48px; }
    .related-post-card {
        background: #fff; border: 1.5px solid var(--dh-border);
        border-radius: var(--dh-radius-lg); overflow: hidden;
        text-decoration: none; display: block;
        transition: transform 0.22s, box-shadow 0.22s;
    }
    .related-post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }
    .related-post-img { height: 140px; overflow: hidden; }
    .related-post-img img { width: 100%; height: 100%; object-fit: cover; }
    .related-post-body { padding: 16px 18px 18px; }
    .related-post-cat { font-size: 0.69rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--dh-gold); margin-bottom: 6px; }
    .related-post-title { font-size: 0.9rem; font-weight: 700; color: var(--dh-secondary); line-height: 1.35; margin-bottom: 8px; }
    .related-post-meta { font-size: 0.75rem; color: var(--dh-text-light); }

    /* ---- 404 ---- */
    .post-not-found { text-align: center; padding: 80px 20px; }
    .post-not-found-icon { font-size: 4rem; color: var(--dh-border); margin-bottom: 16px; }
    .post-not-found-title { font-size: 1.5rem; font-weight: 800; color: var(--dh-secondary); margin-bottom: 8px; }
    .post-not-found-sub { color: var(--dh-text-muted); margin-bottom: 28px; }

    /* ---- Reading progress bar ---- */
    .reading-progress {
        position: fixed; top: 0; left: 0; right: 0;
        height: 3px; z-index: 9999; background: transparent;
    }
    .reading-progress-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--dh-gold), var(--dh-gold-light));
        transition: width 0.1s; width: 0%;
    }