/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Child theme for Hello Elementor.
Author: Relative Marketing Group
Author URI: https://relativemarketinggroup.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Add custom CSS below this line */

/* =========================================================
   CONCIERGE HOME DETOX HEADER
========================================================= */

h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif !important; }

ul { margin-top:22px !important; }

.elementor-kit-6 h5 { font-family: Georgia, 'Times New Roman', serif !important; font-weight:normal; }

.chd-hero .elementor-kit-6 a { color:#fff !important; }

.chd-site-header {
	position: relative;
	width: 100%;
	background: #ffffff;
	z-index: 999;
	border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.chd-header-inner {
	width: 100%;
	max-width: 1800px;
	min-height: 138px;
	margin: 0 auto;
	padding: 0 52px;

	display: grid;
	grid-template-columns: 280px 1fr 260px;
	align-items: center;
	gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.chd-header-logo {
	display: flex;
	align-items: center;
}

.chd-header-logo a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.chd-header-logo img {
	display: block;
	width: 100%;
	max-width: 240px;
	height: auto;
}

.chd-site-name {
	font-size: 28px;
	font-weight: 700;
	color: #071a34;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.chd-main-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
}

.chd-main-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(25px, 3vw, 57px);

	padding: 0;
	margin: 0;
	list-style: none;
}

.chd-main-menu li {
	margin: 0;
	padding: 0;
}

.chd-main-menu li a {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0;
	color: #071a34;
	text-decoration: none;
	padding: 12px 0;
	transition:
		color 0.2s ease,
		opacity 0.2s ease;
}

.chd-main-menu li a:hover,
.chd-main-menu li.current-menu-item > a,
.chd-main-menu li.current-menu-ancestor > a {
	color: #c9994d;
}


/* =========================================================
   PHONE CTA
========================================================= */

.chd-header-phone {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.chd-phone-button {
	width: 260px;
	min-height: 84px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 17px;

	padding: 15px 18px;

	background: linear-gradient(
		135deg,
		#d6aa62 0%,
		#f0d49d 50%,
		#ddb56e 100%
	);

	border-radius: 11px;

	color: #071a34;
	text-decoration: none;

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.chd-phone-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(7, 26, 52, 0.12);
	color: #071a34;
}

.chd-phone-icon {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
}

.chd-phone-icon svg {
	width: 25px;
	height: 25px;
	fill: #071a34;
}

.chd-phone-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.chd-phone-number {
	font-size: 23px;
	line-height: 1.15;
	font-weight: 600;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.chd-phone-subtext {
	margin-top: 7px;

	font-size: 13px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0.4px;

	white-space: nowrap;
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.chd-mobile-menu-toggle {
	display: none;

	width: 44px;
	height: 44px;

	padding: 8px;

	background: transparent;
	border: 0;

	cursor: pointer;
}

.chd-mobile-menu-toggle span {
	display: block;

	width: 28px;
	height: 2px;

	margin: 6px auto;

	background: #071a34;

	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}


/* Active Hamburger */

.chd-mobile-menu-toggle.is-active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.chd-mobile-menu-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.chd-mobile-menu-toggle.is-active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.chd-mobile-navigation {
	display: none;
	background: #ffffff;

	border-top: 1px solid rgba(7, 26, 52, 0.08);

	padding: 12px 20px 25px;
}

.chd-mobile-navigation.is-open {
	display: block;
}

.chd-mobile-menu {
	margin: 0;
	padding: 0;

	list-style: none;
}

.chd-mobile-menu li {
	border-bottom: 1px solid rgba(7, 26, 52, 0.08);
}

.chd-mobile-menu a {
	display: block;

	padding: 17px 5px;

	color: #071a34;

	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;

	text-transform: uppercase;
	text-decoration: none;
}

.chd-mobile-menu a:hover {
	color: #c9994d;
}


/* Mobile Phone Button */

.chd-mobile-phone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	margin-top: 22px;
	padding: 15px 20px;

	border-radius: 8px;

	background: linear-gradient(
		135deg,
		#d6aa62 0%,
		#f0d49d 50%,
		#ddb56e 100%
	);

	color: #071a34;
	text-decoration: none;
}

.chd-mobile-phone span {
	font-size: 20px;
	font-weight: 600;
}

.chd-mobile-phone small {
	margin-top: 4px;

	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.4px;
}


/* =========================================================
   LAPTOP / SMALL DESKTOP
========================================================= */

@media (max-width: 1450px) {

	.chd-header-inner {
		grid-template-columns: 285px 1fr 235px;
		padding-left: 30px;
		padding-right: 30px;
		gap: 20px;
	}

	.chd-header-logo img {
		max-width: 270px;
	}

	.chd-main-menu {
		gap: 27px;
	}

	.chd-main-menu li a {
		font-size: 14px;
	}

	.chd-phone-button {
		width: 235px;
		min-height: 76px;
	}

	.chd-phone-number {
		font-size: 20px;
	}

	.chd-phone-subtext {
		font-size: 11px;
	}

}


/* =========================================================
   TABLET / MOBILE MENU BREAKPOINT
========================================================= */

@media (max-width: 1100px) {

	.chd-header-inner {
		min-height: 92px;

		display: flex;
		align-items: center;

		padding: 0 25px;
	}

	.chd-header-logo {
		margin-right: auto;
	}

	.chd-header-logo img {
		max-width: 245px;
	}

	.chd-main-navigation {
		display: none;
	}

	.chd-header-phone {
		margin-left: auto;
		margin-right: 8px;
	}

	.chd-phone-button {
		width: auto;
		min-height: 54px;

		padding: 10px 15px;
	}

	.chd-phone-icon svg {
		width: 21px;
		height: 21px;
	}

	.chd-phone-number {
		font-size: 17px;
	}

	.chd-phone-subtext {
		display: none;
	}

	.chd-mobile-menu-toggle {
		display: block;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-header-inner {
		min-height: 76px;

		padding-left: 20px;
		padding-right: 15px;
	}

	.chd-header-logo img {
		max-width: 190px;
	}

	.chd-phone-button {
		width: 44px;
		height: 44px;
		min-height: 44px;

		padding: 0;

		border-radius: 50%;
	}

	.chd-phone-button .chd-phone-text {
		display: none;
	}

	.chd-phone-icon svg {
		width: 20px;
		height: 20px;
	}

	.chd-mobile-navigation {
		padding-left: 20px;
		padding-right: 20px;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

	.chd-header-inner {
		padding-left: 15px;
		padding-right: 10px;
	}

	.chd-header-logo img {
		max-width: 165px;
	}

	.chd-header-phone {
		margin-right: 2px;
	}

}



/* =========================================================
   HERO
========================================================= */

.chd-hero {
	position: relative;
	overflow: hidden;
	margin:-10px;
	min-height: 640px;
	display: flex;
	align-items: center;
	background-image: url('/wp-content/uploads/2026/08/hero-background.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}


/* =========================================================
   BLUE FADED OVERLAY
========================================================= */

.chd-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;

background: linear-gradient(
    90deg,
    #001c34 0%,
    #001c34 50%,
    rgba(0, 28, 52, .95) 60%,
    rgba(0, 28, 52, .75) 70%,
    rgba(0, 28, 52, .45) 82%,
    rgba(0, 28, 52, .15) 92%,
    rgba(0, 28, 52, 0) 100%
);
}


/* =========================================================
   INNER CONTENT
========================================================= */

.chd-hero-inner {
	position: relative;
	z-index: 2;

	width: 100%;
	max-width: 1800px;

	margin: 0 auto;

	padding: 65px 55px;
}

.chd-hero-content {
	width: 100%;
	max-width: 780px;
}


/* =========================================================
   EYEBROW
========================================================= */

.chd-hero-eyebrow {
	margin-bottom: 16px;

	font-size: 18px;
	line-height: 1.3;
	font-weight: 500;

	letter-spacing: 2.3px;

	color: #e4b563;
}

.chd-hero-line {
	width: 100px;
	height: 2px;

	margin-bottom: 20px;

	background: #e4b563;
}


/* =========================================================
   HEADING
========================================================= */

.chd-hero h1 {
	margin: 0;

	font-family: Georgia, 'Times New Roman', serif;

	font-size: clamp(48px, 4.3vw, 76px);
	line-height: 1.08;
	font-weight: 400;

	letter-spacing: -1px;

	color: #ffffff;
}

.chd-hero h1 span {
	color: #e8bb70;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.chd-hero-description {
    max-width: 720px;
    margin: 25px 0 18px;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 400;
    color: #ffffff;
    padding-bottom: 20px;
}


/* =========================================================
   FEATURE LINE
========================================================= */

.chd-hero-features {
	display: flex;
	align-items: center;
	flex-wrap: wrap;

	gap: 16px;

	margin-top: 12px;

	font-size: 17px;
	line-height: 1.3;

	font-weight: 600;
	letter-spacing: 1.4px;

	color: #ffffff;
}

.chd-hero-features strong {
	color: #e8bb70;
	font-weight: 600;
}

.chd-hero-features i {
	display: block;

	width: 7px;
	height: 7px;

	border-radius: 50%;

	background: #e8bb70;
}


/* =========================================================
   BUTTONS
========================================================= */

.chd-hero-buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;

	gap: 24px;

	margin-top: 30px;
}

.chd-hero-btn {
	min-height: 72px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 18px 22px;

	border-radius: 9px;

	font-size: 15px;
	line-height: 1.2;
	font-weight: 700;

	letter-spacing: 0.8px;

	text-align: center;
	text-decoration: none;

	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}

.chd-hero-btn:hover {
	transform: translateY(-2px);
}


/* Gold Button */

.chd-hero-btn-primary {
	min-width: 350px;

	background: linear-gradient(
		135deg,
		#d9ab60 0%,
		#f0cf94 50%,
		#dfb76d 100%
	);

	color: #08213a;
}

.chd-hero-btn-primary:hover {
	color: #08213a;
}


/* Outline Button */

.chd-hero-btn-outline {
	min-width: 270px;

	border: 2px solid #e3ac5b;

	background: rgba(0, 28, 52, 0.15);

	color: #ffffff;
}

.chd-hero-btn-outline:hover {
	background: #e3ac5b;
	color: #08213a;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

	.chd-hero {
		min-height: 660px;
	}

	.chd-hero-inner {
		padding-top: 70px;
		padding-bottom: 70px;
	}

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1300px) {

	.chd-hero {
		min-height: 600px;
	}

	.chd-hero-inner {
		padding-left: 40px;
		padding-right: 40px;
	}

	.chd-hero-content {
		max-width: 680px;
	}

	.chd-hero-description {
		font-size: 21px;
	}

	.chd-hero-features {
		font-size: 15px;
	}

	.chd-hero-btn-primary {
		min-width: 360px;
	}

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-hero {
		min-height: 620px;
		background-position: 62% center;
	}

	.chd-hero-overlay {
		background:
			linear-gradient(
				90deg,
				rgba(0, 28, 52, 1) 0%,
				rgba(0, 28, 52, 0.96) 45%,
				rgba(0, 28, 52, 0.75) 65%,
				rgba(0, 28, 52, 0.28) 100%
			);
	}

	.chd-hero-inner {
		padding: 60px 30px;
	}

	.chd-hero-content {
		max-width: 620px;
	}

	.chd-hero h1 {
		font-size: clamp(44px, 6vw, 60px);
	}

	.chd-hero-description {
		font-size: 20px;
		line-height: 1.5;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-hero {
		min-height: auto;

		background-position: 67% center;
	}

	.chd-hero-overlay {
		background:
			linear-gradient(
				90deg,
				rgba(0, 28, 52, 0.97) 0%,
				rgba(0, 28, 52, 0.93) 55%,
				rgba(0, 28, 52, 0.78) 100%
			);
	}

	.chd-hero-inner {
		padding: 55px 20px;
	}

	.chd-hero-content {
		max-width: 100%;
	}

	.chd-hero-eyebrow {
		font-size: 13px;
		letter-spacing: 1.8px;
	}

	.chd-hero-line {
		width: 75px;
		margin-bottom: 17px;
	}

	.chd-hero h1 {
		font-size: 43px;
		line-height: 1.08;
		letter-spacing: -0.5px;
	}

	.chd-hero-description {
		margin-top: 22px;

		font-size: 18px;
		line-height: 1.55;
	}

	.chd-hero-features {
		gap: 10px 12px;

		font-size: 13px;
		letter-spacing: 0.8px;
	}

	.chd-hero-features i {
		width: 5px;
		height: 5px;
	}

	.chd-hero-buttons {
		flex-direction: column;
		align-items: stretch;

		gap: 13px;

		margin-top: 27px;
	}

	.chd-hero-btn,
	.chd-hero-btn-primary,
	.chd-hero-btn-outline {
		width: 100%;
		min-width: 0;
		min-height: 62px;

		padding: 15px 20px;

		font-size: 14px;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

	.chd-hero h1 {
		font-size: 37px;
	}

	.chd-hero-description {
		font-size: 17px;
	}

}


/* =========================================================
   TRUST / CREDENTIAL ROW
========================================================= */

.chd-trust-row {
	width: 100%;
	background: #0e4270;
}

.chd-trust-row-inner {
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	padding: 28px 0px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);

	align-items: center;
}


/* =========================================================
   INDIVIDUAL ITEM
========================================================= */

.chd-trust-item {
	position: relative;

	min-height: 82px;

	display: flex;
	align-items: center;

	gap: 22px;

	padding: 0 32px;
}


/* Vertical separators */

.chd-trust-item:not(:last-child)::after {
	content: "";

	position: absolute;

	top: 50%;
	right: 0;

	width: 1px;
	height: 52px;

	background: rgba(226, 177, 98, 0.45);

	transform: translateY(-50%);
}


/* =========================================================
   ICON
========================================================= */

.chd-trust-icon {
	flex: 0 0 62px;

	width: 62px;
	height: 62px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.chd-trust-icon svg {
	width: 58px;
	height: 58px;

	fill: none;

	stroke: #e4b260;
	stroke-width: 2.4;

	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   TEXT
========================================================= */

.chd-trust-text {
	display: flex;
	flex-direction: column;

	gap: 7px;
}

.chd-trust-text span {
    display: block;
    font-size: 14px;
    line-height: 1.25;
    font-weight: normal;
    letter-spacing: 0.2px;
    color: #ffffff;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

	.chd-trust-row-inner {
		padding-left: 60px;
		padding-right: 60px;
	}

	.chd-trust-item {
		gap: 25px;
		padding-left: 35px;
		padding-right: 35px;
	}

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1350px) {

	.chd-trust-row-inner {
		padding-left: 30px;
		padding-right: 30px;
	}

	.chd-trust-item {
		gap: 15px;

		padding-left: 20px;
		padding-right: 20px;
	}

	.chd-trust-icon {
		flex-basis: 52px;

		width: 52px;
		height: 52px;
	}

	.chd-trust-icon svg {
		width: 50px;
		height: 50px;
	}

	.chd-trust-text span {
		font-size: 14px;
	}

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-trust-row-inner {
		grid-template-columns: repeat(2, 1fr);

		padding: 15px 25px;
	}

	.chd-trust-item {
		min-height: 105px;

		padding: 20px 30px;
	}

	/* remove desktop separators */

	.chd-trust-item:not(:last-child)::after {
		display: none;
	}

	/* vertical divider between columns */

	.chd-trust-item:nth-child(odd) {
		border-right: 1px solid rgba(226, 177, 98, 0.35);
	}

	/* horizontal divider between rows */

	.chd-trust-item:nth-child(-n+2) {
		border-bottom: 1px solid rgba(226, 177, 98, 0.25);
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

	.chd-trust-row-inner {
		grid-template-columns: 1fr;

		padding: 8px 20px;
	}

	.chd-trust-item {
		min-height: 90px;

		gap: 20px;

		padding: 17px 10px;
	}

	.chd-trust-item:nth-child(odd) {
		border-right: 0;
	}

	.chd-trust-item:nth-child(-n+2) {
		border-bottom: 0;
	}

	.chd-trust-item:not(:last-child) {
		border-bottom: 1px solid rgba(226, 177, 98, 0.25);
	}

	.chd-trust-icon {
		flex: 0 0 52px;

		width: 52px;
		height: 52px;
	}

	.chd-trust-icon svg {
		width: 48px;
		height: 48px;
	}

	.chd-trust-text {
		gap: 5px;
	}

	.chd-trust-text span {
		font-size: 14px;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

	.chd-trust-row-inner {
		padding-left: 15px;
		padding-right: 15px;
	}

	.chd-trust-item {
		gap: 15px;
	}

	.chd-trust-icon {
		flex-basis: 46px;

		width: 46px;
		height: 46px;
	}

	.chd-trust-icon svg {
		width: 43px;
		height: 43px;
	}

	.chd-trust-text span {
		font-size: 13px;
	}

}


/* =========================================================
   GLOBAL CONTENT BLOCK
========================================================= */

.chd-content-block {
	width: 100%;
	max-width: 700px;
}


/* =========================================================
   GLOBAL EYEBROW / SECTION LABEL
========================================================= */

.chd-eyebrow {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #c99035;
}


/* =========================================================
   GLOBAL GOLD ACCENT LINE
========================================================= */

.chd-accent-line {
	width: 92px;
	height: 2px;
	margin: 0 0 27px;
	background: #d4a04b;
}


/* =========================================================
   GLOBAL SECTION HEADING
========================================================= */

.chd-section-title {
	margin: 0 0 25px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(40px, 3vw, 58px);
	line-height: 1.08;
	font-weight: 400;
	letter-spacing: -0.5px;
	color: #08213a;
}

.chd-section-title span {
	color: #d2a04c;
}


/* =========================================================
   GLOBAL INTRO / LEAD PARAGRAPH
========================================================= */

.chd-section-intro {
	margin: 0 0 31px;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
	color: #102339;
}


/* =========================================================
   GLOBAL GOLD CHECK LIST
========================================================= */

.chd-check-list {
	display: flex;
	flex-direction: column;

	gap: 17px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.chd-check-list li {
	position: relative;

	min-height: 28px;

	display: flex;
	align-items: center;

	padding-left: 42px;

	font-size: 18px;
	line-height: 1.4;
	font-weight: 500;

	color: #102339;
}


/* Gold circle */

.chd-check-list li::before {
	content: "";

	position: absolute;
	left: 0;
	top: 1px;

	width: 25px;
	height: 25px;

	border-radius: 50%;

	background: #d2a04c;
}


/* White checkmark */

.chd-check-list li::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 10px;
	width: 10px;
	height: 5px;
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	transform: rotate(-45deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-content-block {
		max-width: 100%;
	}

	.chd-eyebrow {
		font-size: 16px;
	}

	.chd-section-title {
		font-size: clamp(38px, 5vw, 50px);
	}

	.chd-section-intro {
		font-size: 18px;
	}

	.chd-check-list li {
		font-size: 17px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-eyebrow {
		margin-bottom: 12px;

		font-size: 14px;
		line-height: 1.4;

		letter-spacing: 0.7px;
	}

	.chd-accent-line {
		width: 72px;

		margin-bottom: 21px;
	}

	.chd-section-title {
		margin-bottom: 20px;

		font-size: 38px;
		line-height: 1.1;
	}

	.chd-section-intro {
		margin-bottom: 25px;

		font-size: 17px;
		line-height: 1.55;
	}

	.chd-check-list {
		gap: 14px;
	}

	.chd-check-list li {
		min-height: 25px;

		padding-left: 37px;

		font-size: 16px;
		line-height: 1.4;
	}

	.chd-check-list li::before {
		width: 23px;
		height: 23px;
	}

	.chd-check-list li::after {
		left: 6px;
		top: 6px;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

	.chd-section-title {
		font-size: 34px;
	}

	.chd-section-intro {
		font-size: 16px;
	}

	.chd-check-list li {
		font-size: 15px;
	}

}

/* =========================================================
   AUDIENCE / WHO WE HELP
========================================================= */

.chd-audience-block {
	width: 100%;
}


/* =========================================================
   GRID
========================================================= */

.chd-audience-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.chd-audience-card {
    min-height: 254px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 15px;
    background: #001c34;
    text-align: center;
    border-radius: 20px;
}


/* =========================================================
   ICON
========================================================= */

.chd-audience-icon {
	width: 78px;
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.chd-audience-icon svg {
	width: 100%;
	height: 100%;

	fill: none;

	stroke: #e2aa52;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   TITLE
========================================================= */

.chd-audience-title {
	margin: 0 0 12px;

	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
	line-height: 1.25;

	color: #e4b05d;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.chd-audience-text {
	max-width: 220px;
	margin: 0;
	font-size:16px;
	line-height: 1.7;
	color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-audience-grid {
		gap: 15px;
	}

	.chd-audience-card {
		min-height: 330px;

		padding: 32px 20px;
	}

	.chd-audience-icon {
		width: 68px;
		height: 68px;

		margin-bottom: 24px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-audience-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.chd-audience-card {
		min-height: auto;

		padding: 30px 22px;
	}

	.chd-audience-icon {
		margin-bottom: 20px;
	}

	.chd-audience-title {
		margin-bottom: 18px;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

	.chd-audience-card {
		padding-left: 18px;
		padding-right: 18px;
	}

}


/* =========================================================
   HOME DETOX PROCESS
========================================================= */

.chd-process {
	width: 100%;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.chd-process-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;

	margin-bottom: 34px;
}

.chd-process-heading .chd-eyebrow {
	margin: 0;
	color: #e2aa52;
	white-space: nowrap;
}

.chd-process-heading-line {
	width: 105px;
	height: 1px;

	background: rgba(226, 170, 82, 0.55);
}


/* =========================================================
   PROCESS GRID
========================================================= */

.chd-process-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
}


/* =========================================================
   STEP
========================================================= */

.chd-process-step {
	min-width: 0;
	text-align: center;
}


/* =========================================================
   ICON / CONNECTOR
========================================================= */

.chd-process-top {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 26px;
}

.chd-process-icon {
	position: relative;
	z-index: 2;

	flex: 0 0 132px;

	width: 132px;
	height: 132px;

	display: flex;
	align-items: center;
	justify-content: center;

	border: 2px solid #e2aa52;
	border-radius: 50%;
}

.chd-process-icon svg {
	width: 68px;
	height: 68px;

	fill: none;
	stroke: #e2aa52;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   CONNECTING ARROW
========================================================= */

.chd-process-arrow {
	position: absolute;

	top: 50%;
	left: calc(50% + 82px);

	width: calc(100% - 72px);
	height: 1px;

	border-top: 2px dashed #e2aa52;

	transform: translateY(-50%);
}

.chd-process-arrow::after {
	content: "";

	position: absolute;
	right: 0;
	top: -6px;

	width: 11px;
	height: 11px;

	border-top: 2px solid #e2aa52;
	border-right: 2px solid #e2aa52;

	transform: rotate(45deg);
}


/* =========================================================
   TITLE
========================================================= */

.chd-process-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: center;

	gap: 16px;

	margin-bottom: 20px;
}

.chd-process-number {
    flex: 0 0 auto;
    color: #e2aa52;
    line-height: 1;
    font-size: 50px;
}

.chd-process-title {
	margin: 0;

	color: #ffffff;

	font-weight: 500;
	line-height: 1.45;

	text-align: left;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.chd-process-text {
	max-width: 280px;
	margin: 0 auto;
	font-size:15px;
	color: #ffffff;
	line-height: 1.65;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1300px) {

	.chd-process-grid {
		gap: 18px;
	}

	.chd-process-icon {
		flex-basis: 112px;

		width: 112px;
		height: 112px;
	}

	.chd-process-icon svg {
		width: 58px;
		height: 58px;
	}

	.chd-process-arrow {
		left: calc(50% + 70px);
		width: calc(100% - 60px);
	}

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 45px 30px;
	}

	.chd-process-arrow {
		display: none;
	}

	.chd-process-heading {
		margin-bottom: 40px;
	}

	.chd-process-step:last-child {
		grid-column: 1 / -1;

		max-width: 50%;

		margin: 0 auto;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

	.chd-process-heading {
		gap: 12px;
	}

	.chd-process-heading-line {
		width: 45px;
	}

	.chd-process-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.chd-process-step,
	.chd-process-step:last-child {
		grid-column: auto;

		width: 100%;
		max-width: 100%;
	}

	.chd-process-top {
		margin-bottom: 20px;
	}

	.chd-process-icon {
		flex-basis: 105px;

		width: 105px;
		height: 105px;
	}

	.chd-process-icon svg {
		width: 54px;
		height: 54px;
	}

	.chd-process-title-row {
		align-items: center;

		margin-bottom: 14px;
	}

	.chd-process-title {
		text-align: left;
	}

	.chd-process-text {
		max-width: 360px;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

	.chd-process-heading-line {
		width: 28px;
	}

}




/* =========================================================
   FOOTER
========================================================= */

.chd-site-footer {
	width: 100%;
}


/* =========================================================
   TRUST ROW
========================================================= */

.chd-footer-trust {
	width: 100%;
	background: #001c34;

	border-top: 1px solid #c99342;
}

.chd-footer-trust-inner {
	width: 100%;
	max-width: 1400px;

	margin: 0 auto;
	padding: 36px 40px;

	display: grid;
	grid-template-columns: repeat(4, 1fr);

	align-items: center;
}


/* =========================================================
   TRUST ITEM
========================================================= */

.chd-footer-trust-item {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	gap: 24px;

	padding: 0 35px;
}


/* vertical divider */

.chd-footer-trust-item:not(:last-child)::after {
	content: "";

	position: absolute;

	top: 50%;
	right: 0;

	width: 1px;
	height: 58px;

	background: rgba(216, 164, 82, 0.55);

	transform: translateY(-50%);
}


/* =========================================================
   ICON
========================================================= */

.chd-footer-trust-icon {
	flex: 0 0 64px;

	width: 64px;
	height: 64px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.chd-footer-trust-icon svg {
	width: 100%;
	height: 100%;

	fill: none;

	stroke: #e2a955;
	stroke-width: 2.3;

	stroke-linecap: round;
	stroke-linejoin: round;
}

.chd-footer-trust-icon text {
	fill: #e2a955;
	stroke: none;
}


/* =========================================================
   TEXT
========================================================= */

.chd-footer-trust-text {
	display: flex;
	flex-direction: column;

	gap: 4px;

	color: #ffffff;
}


/* =========================================================
   COPYRIGHT BAR
========================================================= */

.chd-footer-bottom {
	width: 100%;

	background: #e1c08b;
}

.chd-footer-bottom-inner {
	width: 100%;
	max-width: 1400px;

	margin: 0 auto;
	padding: 18px 30px;

	text-align: center;
}

.chd-footer-bottom p {
	margin: 0;

	color: #102339;
}

.chd-footer-bottom a {
	color: inherit;
	text-decoration: none;
}

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


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-footer-trust-inner {
		grid-template-columns: repeat(2, 1fr);

		padding: 20px 30px;
	}

	.chd-footer-trust-item {
		min-height: 110px;

		padding: 20px 30px;
	}

	.chd-footer-trust-item:not(:last-child)::after {
		display: none;
	}

	.chd-footer-trust-item:nth-child(odd) {
		border-right: 1px solid rgba(216, 164, 82, 0.4);
	}

	.chd-footer-trust-item:nth-child(-n+2) {
		border-bottom: 1px solid rgba(216, 164, 82, 0.25);
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

	.chd-footer-trust-inner {
		grid-template-columns: 1fr;

		padding: 10px 20px;
	}

	.chd-footer-trust-item {
		justify-content: flex-start;

		min-height: auto;

		padding: 20px 10px;
	}

	.chd-footer-trust-item:nth-child(odd) {
		border-right: 0;
	}

	.chd-footer-trust-item:nth-child(-n+2) {
		border-bottom: 0;
	}

	.chd-footer-trust-item:not(:last-child) {
		border-bottom: 1px solid rgba(216, 164, 82, 0.25);
	}

	.chd-footer-trust-icon {
		flex-basis: 56px;

		width: 56px;
		height: 56px;
	}

	.chd-footer-bottom-inner {
		padding: 16px 20px;
	}

}



/* =========================================================
   CONDITIONS WE TREAT
========================================================= */

.chd-conditions {
	width: 100%;
}


/* =========================================================
   HEADING
========================================================= */

.chd-conditions-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 28px;
	text-align: center;
}

.chd-conditions-heading .chd-eyebrow {
	margin-bottom: 14px;
	color: #102339;
}

.chd-conditions-heading-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.chd-conditions-heading-mark span {
	width: 105px;
	height: 1px;
	background: #d2a04c;
}

.chd-conditions-heading-mark svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #d2a04c;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   GRID
========================================================= */

.chd-condition-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 6px;
}


/* =========================================================
   CARD
========================================================= */

.chd-condition-card {
	min-width: 0;
	min-height: 235px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 34px 12px 26px;
	border: 1px solid rgba(16, 35, 57, 0.12);
	border-radius: 14px;
	text-align: center;
	box-shadow: 0 3px 12px rgba(16, 35, 57, 0.04);
}


/* =========================================================
   ICON
========================================================= */

.chd-condition-icon {
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.chd-condition-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: #b27c24;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   TITLE
========================================================= */

.chd-condition-title {
	margin: 0;
	color: #102339;
	font-weight: 600;
	line-height: 1.45;
}


/* =========================================================
   CTA
========================================================= */

.chd-conditions-cta {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.chd-outline-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 38px;
	border: 2px solid #c8943d;
	border-radius: 5px;
	color: #b27c24;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.chd-outline-button:hover {
	background: #c8943d;
	color: #ffffff;

	transform: translateY(-1px);
}


/* =========================================================
   LAPTOP / NARROW 60% COLUMN
========================================================= */

@media (max-width: 1300px) {
	.chd-condition-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}
	.chd-condition-card {
		min-height: 210px;
	}
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
	.chd-condition-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.chd-condition-card {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
	.chd-condition-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}
	.chd-condition-card {
		min-height: 190px;
		padding: 26px 12px 22px;
	}
	.chd-condition-icon {
		width: 58px;
		height: 58px;
		margin-bottom: 18px;
	}
	.chd-conditions-heading-mark span {
		width: 65px;
	}
	.chd-conditions-cta {
		margin-top: 24px;
	}
	.chd-outline-button {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
	.chd-condition-grid {
		grid-template-columns: 1fr;
	}
	.chd-condition-card {
		min-height: auto;
		padding: 24px 20px;
	}
}


/* =========================================================
   MEDICAL TRUST CONTENT
========================================================= */

.chd-medical-trust {
	width: 100%;
	max-width: 620px;
}


/* Slightly more spacing for this layout */

.chd-medical-trust .chd-accent-line {
	margin-bottom: 30px;
}

.chd-medical-trust .chd-check-list {
	gap: 20px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
	.chd-medical-trust {
		max-width: 55%;
	}
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
	.chd-medical-trust {
		max-width: 100%;
	}
	.chd-medical-trust .chd-accent-line {
		margin-bottom: 24px;
	}
	.chd-medical-trust .chd-check-list {
		gap: 16px;
	}
}

/* =========================================================
   PRIVACY / RECOVERY SECTION
========================================================= */

.chd-privacy-section {
	width: 100%;
}


/* =========================================================
   LIGHT TEXT VARIANTS
========================================================= */

.chd-section-title-light {
	color: #ffffff;
}

.chd-section-intro-light {
	color: #ffffff;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.chd-privacy-features {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
	margin-top: 42px;
}


/* =========================================================
   FEATURE ITEM
========================================================= */

.chd-privacy-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}


/* =========================================================
   ICON
========================================================= */

.chd-privacy-icon {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.chd-privacy-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: #e2aa52;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   LABEL
========================================================= */

.chd-privacy-label {
	color: #ffffff;
	line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-privacy-features {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 35px 24px;
	}

	.chd-privacy-feature:nth-child(4),
	.chd-privacy-feature:nth-child(5) {
		justify-self: center;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-privacy-features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 18px;
		margin-top: 32px;
	}

	.chd-privacy-feature:nth-child(5) {
		grid-column: 1 / -1;
	}

	.chd-privacy-icon {
		width: 64px;
		height: 64px;
		margin-bottom: 14px;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

	.chd-privacy-features {
		grid-template-columns: 1fr;
	}

	.chd-privacy-feature:nth-child(5) {
		grid-column: auto;
	}

}


/* =========================================================
   FEATURED MARKETS
========================================================= */

.chd-featured-markets {
	width: 100%;
	max-width: 520px;
}

.chd-market-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 2fr));
	column-gap: 40px;
	row-gap: 20px;
	margin: 34px 0 38px;
}


/* =========================================================
   MARKET LIST
========================================================= */

.chd-market-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.chd-market-list li {
	position: relative;
	font-size:14px;
	padding-left: 18px;
	margin-bottom: 22px;
	line-height: 1.5;
	color: #102339;
}

.chd-market-list li:last-child {
	margin-bottom: 0;
}


/* Gold bullet */

.chd-market-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #c8943d;
	transform: translateY(-50%);
}


/* =========================================================
   BUTTON
========================================================= */

.chd-featured-markets-button {
	display: flex;
	justify-content: center;
}

.chd-featured-markets-button .chd-outline-button {
	width: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-featured-markets {
		max-width: 100%;
	}

	.chd-market-grid {
		column-gap: 30px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-market-grid {
		grid-template-columns: 2fr;
		row-gap: 10px;
		margin: 26px 0 30px;
	}

	.chd-market-list li {
		margin-bottom: 16px;
	}

}

/*==========================================================
 FAQ
==========================================================*/

.chd-faq {
	width:100%;
}

.chd-faq-header{
	display:flex;
	align-items:flex-start;
	gap:20px;
	margin-bottom:8px;
}

.chd-faq-icon{
	width:52px;
	height:52px;
	flex:0 0 52px;
	display:flex;
	align-items:center;
	justify-content:center;
}

.chd-faq-icon svg{
	width:100%;
	height:100%;
	fill:none;
	stroke:#c8943d;
	stroke-width:2;
}


/*==========================================================
 Accordion
==========================================================*/

.chd-accordion{
	display:flex;
	flex-direction:column;
	gap:16px;
}

.chd-accordion-item{
	border:1px solid rgba(0,0,0,.06);
	border-radius:10px;
	background:#fff;
	box-shadow:0 3px 12px rgba(0,0,0,.05);
	overflow:hidden;
}

.chd-accordion-trigger{
	width:100%;
	padding:12px 30px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	background:none;
	border:0;
	cursor:pointer;
	text-align:left;
	color:#102339;
}

.chd-accordion-plus{
	position:relative;
	width:22px;
	height:22px;
	flex:0 0 22px;
}

.chd-accordion-plus:before,
.chd-accordion-plus:after{
	content:"";
	position:absolute;
	left:50%;
	top:50%;
	background:#c8943d;
	transform:translate(-50%,-50%);
}

.chd-accordion-plus:before{
	width:18px;
	height:2px;
}

.chd-accordion-plus:after{
	width:2px;
	height:18px;
	transition:.25s;
}

.chd-accordion-item.active .chd-accordion-plus:after{
	height:0;
}

.chd-accordion-content{
	display:none;
	padding:14px 30px 26px;
}

.chd-accordion-item.active .chd-accordion-content{
	display:block;
}


/*==========================================================
 Responsive
==========================================================*/

@media (max-width:767px){

	.chd-faq-header{
		gap:14px;
		margin-bottom:25px;
	}

	.chd-faq-icon{
		width:42px;
		height:42px;
		flex-basis:42px;
	}

	.chd-accordion-trigger{
		padding:20px;
	}

	.chd-accordion-content{
		padding:0 20px 20px;
	}

}

/* =========================================================
   GLOBAL BUTTON HOVER
========================================================= */

button:hover,
button:focus,
[type="button"]:hover,
[type="button"]:focus,
[type="submit"]:hover,
[type="submit"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.elementor-button:hover,
.elementor-button:focus,
.chd-hero-btn:hover,
.chd-outline-button:hover {
	background: #0E4270;
	border-color: #001c34;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
	transition: all .3s ease;
}


/* Keep SVG icons white on hover */

button:hover svg,
[type="button"]:hover svg,
[type="submit"]:hover svg,
.elementor-button:hover svg,
.chd-hero-btn:hover svg,
.chd-outline-button:hover svg {
	stroke: #ffffff;
	fill: none;
}

.chd-hero-btn,
.chd-outline-button {
	transition:
		background-color .3s ease,
		border-color .3s ease,
		color .3s ease,
		transform .3s ease;
}

/* =========================================================
   HEADING WITH ICON
========================================================= */

.chd-heading-with-icon {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 32px;
}

.chd-heading-icon {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.chd-heading-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: #c8943d;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.chd-heading-content {
	display: flex;
	flex-direction: column;
}

.chd-heading-content .chd-eyebrow {
	margin-bottom: 12px;
}

.chd-heading-content .chd-accent-line {
	margin: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-heading-with-icon {
		gap: 14px;
		margin-bottom: 24px;
	}

	.chd-heading-icon {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

}

/*==========================================================
 FOOTER CTA WRAPPER
==========================================================*/

.chd-footer-cta {
	background-image: url('/wp-content/uploads/footer-cta-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.chd-footer-cta-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 40px;
}

/*==========================================================
 CTA BLOCK
==========================================================*/

.chd-cta-block{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:40px;
}


/*==========================================================
 LEFT CONTENT
==========================================================*/

.chd-cta-content{
	max-width:620px;
}

.chd-cta-content .chd-accent-line{
	margin:22px 0;
}


/*==========================================================
 RIGHT COLUMN
==========================================================*/

.chd-cta-actions{
	display:flex;
	flex-direction:column;
	align-items:flex-end;
	gap:34px;
}


/*==========================================================
 GOLD BUTTON
==========================================================*/

.chd-gold-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 26px;
    background: #d6ab63;
    border-radius: 8px;
    color: #102339;
    text-decoration: none;
    transition: .3s;
    font-size: 16px;
}

.chd-gold-button:hover{
	background:#0E4270;
	color:#fff;
}

.chd-gold-button:hover svg{
	stroke:#fff;
}


/*==========================================================
 LOCK ICON
==========================================================*/

.chd-cta-lock{
	width:26px;
	height:26px;
	display:flex;
	align-items:center;
	justify-content:center;
}

.chd-cta-lock svg{
	width:100%;
	height:100%;
	fill:none;
	stroke:#102339;
	stroke-width:2;
	transition:.3s;
}


/*==========================================================
 PHONE
==========================================================*/

.chd-cta-phone{
	display:flex;
	align-items:center;
	gap:18px;
	text-decoration:none;
}

.chd-cta-phone-icon{
	width:58px;
	height:58px;
	display:flex;
	align-items:center;
	justify-content:center;
}

.chd-cta-phone-icon svg{
	width:100%;
	height:100%;
	fill:none;
	stroke:#d6ab63;
	stroke-width:2.2;
}

.chd-cta-phone-text{
	color:#fff;
}

.chd-cta-phone-number{
	font-weight:700;
	line-height:1.2;
}

.chd-cta-phone-label{
	color:#ffffff;
	line-height:1.5;
	font-size:14px;
}


/*==========================================================
 TABLET
==========================================================*/

@media (max-width:1024px){
	.chd-cta-block{
		flex-direction:column;
		align-items:flex-start;
		gap:40px;
	}
	.chd-cta-actions{
		width:100%;
	    align-items:flex-start;
	}
	.chd-gold-button{
		width:100%;
	}
}


/*==========================================================
 MOBILE
==========================================================*/

@media (max-width:767px){
	.chd-cta-phone{
		width:100%;
	}
}


/* =========================================
   SUBPAGE HERO
========================================= */

selector{
    position:relative;
    overflow:hidden;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.chd-subhero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 28, 52, 0.7);
    z-index:1;
}

.chd-subhero-inner{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:0 auto;
    padding:95px 30px;
    text-align:center;
}

.chd-subhero-content{
    color:#fff;
}

.chd-subhero-eyebrow{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#d9bf72;
    margin-bottom:18px;
}

.chd-subhero-line{
    width:70px;
    height:3px;
    background:#d9bf72;
    margin:0 auto 25px;
}

.chd-subhero-content h1{
    color:#fff;
    margin:0 0 18px;
    line-height:1.15;
}

.chd-subhero-description{
    max-width:720px;
    margin:0 auto 35px;
    color:rgba(255,255,255,.92);
	margin-bottom:30px !important; 
}

.chd-subhero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.chd-subhero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    transition:.3s ease;
}

.chd-subhero-btn-primary{
    background:#DABD8E;
    color:#fff;
}
.chd-subhero-btn-primary:hover{
    background:#0E4270;
	color:#fff; 
    transform:translateY(-2px);
}

.chd-subhero-btn-outline{
    border:2px solid #fff;
    color:#fff !important;
}


.chd-subhero-btn-outline:hover{
    background:#0E4270;
    color:#fff;
}

@media (max-width:767px){
    selector{
        min-height:360px;
    }

    .chd-subhero-inner{
        padding:70px 20px;
    }

    .chd-subhero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .chd-subhero-btn{
        width:100%;
        max-width:340px;
    }
}


/* =========================================================
   DESKTOP SUBMENU
========================================================= */

.chd-main-menu li {
	position: relative;
}

/* Hide submenu by default */
.chd-main-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999;

	min-width: 240px;

	margin: 0;
	padding: 10px 0;

	list-style: none;

	background: #001c34;

	border-top: 2px solid #d2a04c;
	border-radius: 0 0 8px 8px;

	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);

	opacity: 0;
	visibility: hidden;

	transform: translateY(10px);

	transition:
		opacity .2s ease,
		transform .2s ease,
		visibility .2s ease;
}

/* Show submenu on hover / keyboard focus */
.chd-main-menu li:hover > .sub-menu,
.chd-main-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Submenu items */
.chd-main-menu .sub-menu li {
	width: 100%;
}

/* Submenu links */
.chd-main-menu .sub-menu li a {
	display: block;
	width: 100%;

	padding: 12px 18px;

	color: #ffffff;

	text-transform: none;
	white-space: nowrap;

	border-bottom: 1px solid rgba(255, 255, 255, 0.08);

	transition:
		background-color .2s ease,
		color .2s ease,
		padding-left .2s ease;
}

.chd-main-menu .sub-menu li:last-child a {
	border-bottom: 0;
}

.chd-main-menu .sub-menu li a:hover,
.chd-main-menu .sub-menu li a:focus {
	background: rgba(210, 160, 76, 0.12);
	color: #d2a04c;

	padding-left: 22px;
}

/* Keep current submenu item highlighted */
.chd-main-menu .sub-menu li.current-menu-item > a {
	color: #d2a04c;
}


/* =========================================================
   SECOND-LEVEL SUBMENUS
========================================================= */

.chd-main-menu .sub-menu .sub-menu {
	top: 0;
	left: 100%;

	margin-left: 2px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1100px) {

	.chd-main-menu .sub-menu {
		display: none;
	}

	.chd-mobile-menu .sub-menu {
		position: static;

		display: block;

		margin: 0;
		padding: 0 0 0 15px;

		list-style: none;

		background: rgba(0, 28, 52, 0.04);

		border: 0;
		box-shadow: none;

		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.chd-mobile-menu .sub-menu li a {
		padding-left: 20px;
	}

}

.elementor-kit-6 button { color:#222;  }
.elementor-kit-6 button:hover { border-radius:0; }
.elementor-kit-6 p { font-size:15px; }


/* =========================================
   SUBPAGE HERO
========================================= */

selector{
    position:relative;
    overflow:hidden;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.chd-subhero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 28, 52, 0.7);
    z-index:1;
}

.chd-subhero-inner{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:0 auto;
    padding:95px 30px;
    text-align:center;
}

.chd-subhero-content{
    color:#fff;
}

.chd-subhero-eyebrow{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#d9bf72;
    margin-bottom:18px;
}

.chd-subhero-line{
    width:70px;
    height:3px;
    background:#d9bf72;
    margin:0 auto 25px;
}

.chd-subhero-content h1{
    color:#fff;
    margin:0 0 18px;
    line-height:1.15;
}

.chd-subhero-description{
    max-width:720px;
    margin:0 auto 35px;
    color:rgba(255,255,255,.92);
}

.chd-subhero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.chd-subhero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    transition:.3s ease;
	font-size:15px;
}

/* =========================================
   SUBPAGE HERO - MOBILE
========================================= */

@media (max-width: 767px) {

    .chd-subhero {
        min-height: 360px;
    }

    .chd-subhero-inner {
        padding: 70px 20px;
    }

    .chd-subhero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .chd-subhero-btn {
        width: 100%;
        max-width: 340px;
    }

}

.elementor-column-gap-default>.elementor-column>.elementor-element-populated { padding:0; }

/* =========================================================
   DETOX PROCESS STEPS
========================================================= */

.chd-detox-steps {
	width: 100%;

	display: flex;
	flex-direction: column;

	gap: 32px;
}


/* =========================================================
   STEP CARD

   Normal:
   IMAGE 36% | TEXT 64%
========================================================= */

.chd-detox-step {
	position: relative;

	display: grid;
	grid-template-columns: 28% 72%;
	align-items: stretch;

	border: 1px solid rgba(16, 35, 57, 0.10);
	border-radius: 20px;

	overflow: hidden;

	box-shadow: 0 8px 30px rgba(16, 35, 57, 0.06);
}


/* =========================================================
   REVERSE STEP

   TEXT 64% | IMAGE 36%
========================================================= */

.chd-detox-step-reverse {
	grid-template-columns: 72% 28%;
}

.chd-detox-step-reverse .chd-detox-step-image {
	order: 2;
}

.chd-detox-step-reverse .chd-detox-step-content {
	order: 1;
}


/* =========================================================
   IMAGE
========================================================= */

.chd-detox-step-image {
	min-height: 330px;

	overflow: hidden;
}

.chd-detox-step-image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;

	transition: transform .4s ease;
}


/* Image hover */

.chd-detox-step:hover .chd-detox-step-image img {
	transform: scale(1.025);
}


/* =========================================================
   CONTENT
========================================================= */

.chd-detox-step-content {
	display: flex;
	flex-direction: column;
	justify-content: center;

	padding: 42px 48px;
}

.chd-detox-step-content .chd-section-title {
	margin-bottom: 20px;
}

.chd-detox-step-content p {
	margin: 0 0 16px;

	line-height: 1.7;

	color: #102339;
}

.chd-detox-step-content p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   STEP NUMBER / ACCENT
========================================================= */

.chd-detox-step-label {
	display: flex;
	align-items: center;

	gap: 16px;

	margin-bottom: 16px;
}

.chd-detox-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	min-width: 48px;
	min-height: 48px;

	border: 1px solid #d2a04c;
	border-radius: 50%;

	color: #c99035;

	font-weight: 700;
}

.chd-detox-step-line {
	width: 70px;
	height: 2px;

	background: #d2a04c;
}


/* =========================================================
   TABLET

   Image remains smaller:
   34% image / 66% text
========================================================= */

@media (max-width: 1024px) {

	.chd-detox-step {
		grid-template-columns: 34% 66%;
	}

	.chd-detox-step-reverse {
		grid-template-columns: 66% 34%;
	}

	.chd-detox-step-content {
		padding: 34px 32px;
	}

	.chd-detox-step-image {
		min-height: 300px;
	}

}


/* =========================================================
   MOBILE

   Image always above content
========================================================= */

@media (max-width: 767px) {

	.chd-detox-steps {
		gap: 24px;
	}

	.chd-detox-step,
	.chd-detox-step-reverse {
		grid-template-columns: 1fr;
	}

	/* Always place image first */

	.chd-detox-step-image,
	.chd-detox-step-reverse .chd-detox-step-image {
		order: 1;
	}

	/* Content always underneath */

	.chd-detox-step-content,
	.chd-detox-step-reverse .chd-detox-step-content {
		order: 2;
	}

	.chd-detox-step-image {
		min-height: 240px;
		max-height: 320px;
	}

	.chd-detox-step-content {
		padding: 28px 22px 32px;
	}

	.chd-detox-step-label {
		margin-bottom: 14px;
	}

	.chd-detox-step-line {
		width: 50px;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

	.chd-detox-step-image {
		min-height: 210px;
	}

	.chd-detox-step-content {
		padding-left: 18px;
		padding-right: 18px;
	}

}

.elementor-shortcode span { font-size:15px; }

/* =========================================================
   FAQ GRID
========================================================= */

.chd-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));

	gap: 20px;

	width: 100%;

	align-items: start;
}


/* =========================================================
   FAQ CARD
========================================================= */

.chd-faq-card {
	background: #ffffff;

	border: 1px solid rgba(14, 66, 112, 0.12);
	border-radius: 12px;

	overflow: hidden;

	box-shadow: 0 5px 20px rgba(0, 28, 52, 0.05);

	transition:
		border-color .25s ease,
		box-shadow .25s ease;
}

.chd-faq-card.active {
	border-color: rgba(201, 144, 53, 0.45);

	box-shadow: 0 8px 25px rgba(0, 28, 52, 0.08);
}


/* =========================================================
   QUESTION
========================================================= */

.chd-faq-card-trigger {
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 25px;

	padding: 24px 26px;

	background: #ffffff;
	border: 0;
	border-radius: 0;

	color: #0e4270;

	font-weight: 600;
	line-height: 1.4;

	text-align: left;

	white-space: normal;

	cursor: pointer;

	transition:
		background-color .25s ease,
		color .25s ease;
}

.chd-faq-card-trigger:hover,
.chd-faq-card-trigger:focus {
	background: #f7f8f8;
	color: #0e4270;

	transform: none;
}


/* =========================================================
   PLUS / MINUS
========================================================= */

.chd-faq-card-toggle {
	position: relative;

	flex: 0 0 34px;

	width: 34px;
	height: 34px;

	border: 1px solid #c99035;
	border-radius: 50%;
}

.chd-faq-card-toggle::before,
.chd-faq-card-toggle::after {
	content: "";

	position: absolute;

	top: 50%;
	left: 50%;

	background: #c99035;

	transform: translate(-50%, -50%);

	transition: transform .25s ease;
}

.chd-faq-card-toggle::before {
	width: 12px;
	height: 2px;
}

.chd-faq-card-toggle::after {
	width: 2px;
	height: 12px;
}


/* Remove vertical bar when open */

.chd-faq-card.active .chd-faq-card-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}


/* =========================================================
   ANSWER
========================================================= */

.chd-faq-card-answer {
	display: grid;

	grid-template-rows: 0fr;

	transition: grid-template-rows .3s ease;
}

.chd-faq-card.active .chd-faq-card-answer {
	grid-template-rows: 1fr;
}

.chd-faq-card-answer-inner {
	overflow: hidden;
}

.chd-faq-card-answer-inner p {
	margin: 0;

	padding: 0 26px 26px;

	color: #102339;

	line-height: 1.7;
}


/* Gold divider above open answer */

.chd-faq-card.active .chd-faq-card-answer-inner::before {
	content: "";

	display: block;

	width: calc(100% - 52px);
	height: 1px;

	margin: 0 26px 20px;

	background: rgba(201, 144, 53, 0.25);
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 767px) {

	.chd-faq-grid {
		grid-template-columns: 1fr;

		gap: 14px;
	}

	.chd-faq-card-trigger {
		padding: 20px;

		gap: 18px;
	}

	.chd-faq-card-answer-inner p {
		padding: 0 20px 22px;
	}

	.chd-faq-card.active .chd-faq-card-answer-inner::before {
		width: calc(100% - 40px);

		margin-left: 20px;
		margin-right: 20px;
	}

}

.elementor-kit-6 button:focus, .elementor-kit-6 button:hover { color:#333 !important; }

/* =========================================================
   STATE DIRECTORY
========================================================= */

.chd-state-directory {
	width: 100%;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.chd-state-directory-header {
	margin-bottom: 38px;
}


/* =========================================================
   STATE GRID
========================================================= */

.chd-state-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}


/* =========================================================
   STATE CARD
========================================================= */

.chd-state-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 165px;
	padding: 26px 28px;
	background: #ffffff;
	border: 1px solid rgba(14, 66, 112, 0.12);
	border-radius: 14px;
	box-shadow: 0 5px 20px rgba(0, 28, 52, 0.04);
	transition:
		transform .25s ease,
		border-color .25s ease,
		box-shadow .25s ease;
}

.chd-state-card:hover {
	transform: translateY(-3px);
	border-color: rgba(201, 144, 53, 0.45);
	box-shadow: 0 10px 28px rgba(0, 28, 52, 0.08);
}


/* =========================================================
   CARD HEADER
========================================================= */

.chd-state-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid rgba(14, 66, 112, 0.10);
}

.chd-state-card h3 {
	margin: 0;
}

.chd-state-card h3 a {
	color: #0e4270;
	text-decoration: none;
	transition: color .2s ease;
}

.chd-state-card h3 a:hover {
	color: #c99035;
}


/* =========================================================
   ARROW
========================================================= */

.chd-state-arrow {
	display: flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 34px;

	width: 34px;
	height: 34px;

	border: 1px solid rgba(201, 144, 53, 0.65);
	border-radius: 50%;

	color: #c99035;

	transition:
		background-color .2s ease,
		color .2s ease,
		transform .2s ease;
}

.chd-state-card:hover .chd-state-arrow {
	background: #c99035;
	color: #ffffff;

	transform: translateX(2px);
}


/* =========================================================
   CITY LINKS
========================================================= */

.chd-state-locations {
	display: flex;
	flex-wrap: wrap;

	gap: 8px;
}

.chd-state-locations a {
	display: inline-flex;
	align-items: center;

	padding: 7px 12px;

	background: rgba(14, 66, 112, 0.05);

	border: 1px solid rgba(14, 66, 112, 0.08);
	border-radius: 100px;

	color: #102339;
	text-decoration: none;

	transition:
		background-color .2s ease,
		border-color .2s ease,
		color .2s ease;
}

.chd-state-locations a:hover {
	background: #0e4270;
	border-color: #0e4270;

	color: #ffffff;
}


/* =========================================================
   STATEWIDE / COVERAGE NOTE
========================================================= */

.chd-state-note {
	margin-top: auto;

	padding: 12px 14px;

	background: rgba(201, 144, 53, 0.08);

	border-left: 3px solid #c99035;
	border-radius: 0 6px 6px 0;

	color: #102339;

	line-height: 1.5;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.chd-state-directory-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 40px;

	margin-top: 32px;
	padding: 28px 32px;

	border: 1px solid rgba(14, 66, 112, 0.12);
	border-radius: 14px;

	background: rgba(14, 66, 112, 0.035);
}

.chd-state-directory-cta-content {
	display: flex;
	flex-direction: column;

	gap: 6px;

	max-width: 700px;

	color: #102339;
}

.chd-state-directory-cta-actions {
	display: flex;
	align-items: center;

	gap: 12px;

	flex: 0 0 auto;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

	.chd-state-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-state-directory-cta {
		flex-direction: column;
		align-items: flex-start;

		gap: 22px;
	}

	.chd-state-directory-cta-actions {
		width: 100%;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-state-directory-header {
		margin-bottom: 28px;
	}

	.chd-state-grid {
		grid-template-columns: 1fr;

		gap: 14px;
	}

	.chd-state-card {
		min-height: auto;

		padding: 22px 20px;
	}

	.chd-state-directory-cta {
		padding: 24px 20px;
	}

	.chd-state-directory-cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.chd-state-directory-cta-actions .chd-gold-button,
	.chd-state-directory-cta-actions .chd-outline-button {
		width: 100%;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

	.chd-state-card-header {
		gap: 12px;
	}

	.chd-state-locations {
		gap: 6px;
	}

}

/* =========================================================
   REUSABLE THREE CARD GRID
========================================================= */

.chd-three-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
}


/* =========================================================
   CARD
========================================================= */

.chd-info-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 34px 30px;
	background: #ffffff;
	border: 1px solid rgba(14, 66, 112, 0.12);
	border-radius: 18px;
	box-shadow: 0 8px 28px rgba(0, 28, 52, 0.05);
	transition:
		transform .25s ease,
		border-color .25s ease,
		box-shadow .25s ease;
}

.chd-info-card:hover {
	transform: translateY(-4px);

	border-color: rgba(201, 144, 53, 0.45);

	box-shadow: 0 14px 34px rgba(0, 28, 52, 0.08);
}


/* =========================================================
   ICON
========================================================= */

.chd-info-card-icon {
	width: 64px;
	height: 64px;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 22px;

	border: 1px solid rgba(201, 144, 53, 0.55);
	border-radius: 50%;
}

.chd-info-card-icon svg {
	width: 34px;
	height: 34px;

	fill: none;

	stroke: #c99035;
	stroke-width: 2.1;

	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   TITLE
========================================================= */

.chd-info-card-title {
	margin: 0 0 16px;

	color: #0e4270;
}


/* =========================================================
   CONTENT
========================================================= */

.chd-info-card p {
	margin: 0;

	color: #102339;

	line-height: 1.7;
}

.chd-info-card a {
	color: #c99035;
	text-decoration: none;

	font-weight: 600;
}

.chd-info-card a:hover {
	color: #0e4270;
	text-decoration: underline;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-three-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.chd-info-card:last-child {
		grid-column: 1 / -1;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-three-card-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.chd-info-card:last-child {
		grid-column: auto;
	}

	.chd-info-card {
		padding: 28px 22px;
	}

	.chd-info-card-icon {
		margin-bottom: 18px;
	}

}

/* =========================================================
   WHY PEOPLE CHOOSE US
========================================================= */

.chd-why-choose {
	width: 100%;
}

.chd-why-choose-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.chd-why-card {
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 34px 26px;

	text-align: center;

	background: #ffffff;

	border: 1px solid rgba(14, 66, 112, 0.12);
	border-radius: 16px;

	box-shadow: 0 6px 24px rgba(0, 28, 52, 0.05);

	transition:
		transform .25s ease,
		border-color .25s ease,
		box-shadow .25s ease;
}

.chd-why-card:hover {
	transform: translateY(-4px);

	border-color: rgba(201, 144, 53, 0.45);

	box-shadow: 0 12px 30px rgba(0, 28, 52, 0.08);
}


/* =========================================================
   ICON
========================================================= */

.chd-why-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 68px;
	height: 68px;

	margin-bottom: 22px;

	background: rgba(201, 144, 53, 0.07);

	border: 1px solid rgba(201, 144, 53, 0.45);
	border-radius: 50%;
}

.chd-why-icon svg {
	width: 36px;
	height: 36px;

	fill: none;

	stroke: #c99035;
	stroke-width: 2;

	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   HEADING
========================================================= */

.chd-why-card h3 {
	margin: 0 0 14px;

	color: #0e4270;
}


/* =========================================================
   GOLD ACCENT
========================================================= */

.chd-why-line {
	width: 42px;
	height: 2px;

	margin-bottom: 16px;

	background: #c99035;
}


/* =========================================================
   TEXT
========================================================= */

.chd-why-card p {
	margin: 0;

	color: #102339;

	line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-why-choose-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-why-choose-grid {
		grid-template-columns: 1fr;

		gap: 16px;
	}

	.chd-why-card {
		padding: 28px 22px;
	}

}


/* =========================================================
   DALLAS DETOX BENEFITS
========================================================= */

.chd-dallas-benefits {
	width: 100%;
	padding: 40px 0;
}

.chd-dallas-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	width: 100%;
}


/* CARD */
.chd-dallas-benefits__card {
	background: #ffffff;
	border: 1px solid #e5e8ec;
	border-radius: 16px;
	padding: 36px 32px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}


/* TITLE */
.chd-dallas-benefits__title {
	margin: 0;
	color: #124b7d;
}


/* ACCENT LINE */
.chd-dallas-benefits__line {
	width: 50px;
	height: 3px;
	background: #f2b233;
	margin: 18px 0 22px;
	border-radius: 10px;
}


/* BODY TEXT */
.chd-dallas-benefits__card p {
	margin: 0;
	line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-dallas-benefits__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.chd-dallas-benefits__card {
		padding: 30px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

	.chd-dallas-benefits {
		padding: 25px 0;
	}

	.chd-dallas-benefits__card {
		padding: 26px 22px;
		border-radius: 12px;
	}

	.chd-dallas-benefits__line {
		margin: 15px 0 18px;
	}

}

/* =========================================================
   HELP CTA
========================================================= */

.chd-help-cta {
	width: 100%;
	padding: 30px;
	background: #f7f9fb;
}

.chd-help-cta__inner {
	max-width: 1050px;
	margin: 0 auto;
	padding: 55px 65px;
	background: #ffffff;
	border: 1px solid #e3e8ed;
	border-radius: 20px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
	text-align: center;
}


/* EYEBROW */
.chd-help-cta__eyebrow {
	margin-bottom: 14px;
	color: #c99132;
	font-weight: 700;
	letter-spacing: 1.4px;
}


/* ACCENT */
.chd-help-cta__line {
	width: 52px;
	height: 3px;
	margin: 0 auto 22px;
	background: #e0b66f;
	border-radius: 10px;
}


/* HEADING */
.chd-help-cta__inner h2 {
	margin: 0 0 20px;
	color: #124b7d;
}


/* MAIN COPY */
.chd-help-cta__text {
	max-width: 850px;
	margin: 0 auto;
	line-height: 1.75;
}


/* CTA PROMPT */
.chd-help-cta__prompt {
	margin: 22px 0 0;
	font-weight: 600;
	color: #263746;
}


/* BUTTON */
.chd-help-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 28px;
	padding: 15px 30px;
	min-height: 54px;
	background: #124b7d;
	color: #ffffff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	transition:
		background 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.chd-help-cta__button:hover {
	background: #0b365d;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(18, 75, 125, 0.18);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-help-cta {
		padding: 55px 30px;
	}

	.chd-help-cta__inner {
		padding: 45px 40px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-help-cta {
		padding: 40px 20px;
	}

	.chd-help-cta__inner {
		padding: 35px 22px;
		border-radius: 14px;
	}

	.chd-help-cta__button {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}

}

.chd-help-cta__button { color:#fff !important; }

#comments, .post-tags { display:none; }


/* =========================================================
   SINGLE BLOG POST
========================================================= */

.chd-single-post {
	background: #fff;
}

.chd-single-container {
	width: min(1320px, calc(100% - 48px));
	margin: 0 auto;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.chd-single-featured {
	padding: 55px 0 0;
	background: #fff;
}

.chd-single-featured-image {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: #f3f5f7;
}

.chd-single-featured-image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 620px;
	object-fit: cover;
}


/* =========================================================
   HEADER
========================================================= */

.chd-single-header {
	padding: 45px 0 55px;
	background: #fff;
}

.chd-single-header-inner {
	max-width: 950px;
}

.chd-single-eyebrow {
	margin-bottom: 10px;
	color: #164a79;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.chd-single-accent {
	width: 55px;
	height: 3px;
	margin-bottom: 20px;
	background: #efb340;
}

.chd-single-title {
	margin: 0 0 18px;
	color: #0d477a;
	line-height: 1.1;
}

.chd-single-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	color: #666;
}

.chd-single-meta a {
	color: #164a79;
	text-decoration: none;
}

.chd-single-meta a:hover {
	text-decoration: underline;
}


/* =========================================================
   BODY LAYOUT
========================================================= */

.chd-single-body {
	padding: 0 0 80px;
	background: #fff;
}

.chd-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 60px;
	align-items: start;
}


/* =========================================================
   POST CONTENT
========================================================= */

.chd-single-content {
	min-width: 0;
}

.chd-single-content > *:first-child {
	margin-top: 0;
}

.chd-single-content p {
	line-height: 1.75;
}

.chd-single-content h2,
.chd-single-content h3,
.chd-single-content h4 {
	color: #0d477a;
	margin-top: 1.6em;
}

.chd-single-content a {
	color: #164a79;
}

.chd-single-content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.chd-single-content ul,
.chd-single-content ol {
	padding-left: 24px;
}

.chd-single-content li {
	margin-bottom: 8px;
	line-height: 1.7;
}

.chd-single-content blockquote {
	margin: 35px 0;
	padding: 25px 30px;
	border-left: 4px solid #efb340;
	background: #f7f9fb;
}


/* =========================================================
   TAGS
========================================================= */

.chd-single-tags {
	margin-top: 45px;
	padding-top: 25px;
	border-top: 1px solid #e6e6e6;
}

.chd-single-tags-label {
	margin-bottom: 12px;
	color: #0d477a;
	font-weight: 700;
}

.chd-single-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.chd-single-tags-list a {
	display: inline-block;
	padding: 7px 12px;
	border-radius: 30px;
	background: #edf4f9;
	color: #164a79;
	text-decoration: none;
}

.chd-single-tags-list a:hover {
	background: #164a79;
	color: #fff;
}


/* =========================================================
   SIDEBAR
========================================================= */

.chd-single-sidebar {
	position: sticky;
	top: 30px;
}

.chd-single-sidebar .widget,
.chd-sidebar-card {
	margin-bottom: 25px;
	padding: 30px;
	border: 1px solid #e5e9ed;
	border-radius: 16px;
	background: #f8fafb;
}

.chd-single-sidebar h2,
.chd-single-sidebar h3,
.chd-single-sidebar .widget-title {
	margin-top: 0;
	color: #0d477a;
}

.chd-sidebar-eyebrow {
	margin-bottom: 8px;
	color: #efb340;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.chd-sidebar-card p {
	line-height: 1.6;
}

.chd-sidebar-button {
	display: inline-block;
	margin-top: 8px;
	padding: 13px 20px;
	border-radius: 6px;
	background: #164a79;
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
	transition: 0.2s ease;
}

.chd-sidebar-button:hover {
	background: #0d385e;
}

.chd-sidebar-posts {
	margin: 0;
	padding: 0;
	list-style: none;
}

.chd-sidebar-posts li {
	padding: 12px 0;
	border-bottom: 1px solid #dde3e8;
}

.chd-sidebar-posts li:first-child {
	padding-top: 0;
}

.chd-sidebar-posts li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.chd-sidebar-posts a {
	color: #164a79;
	text-decoration: none;
	font-weight: 600;
	line-height: 1.4;
}

.chd-sidebar-posts a:hover {
	text-decoration: underline;
}


/* =========================================================
   WORDPRESS SIDEBAR WIDGETS
========================================================= */

.chd-single-sidebar .widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.chd-single-sidebar .widget li {
	padding: 10px 0;
	border-bottom: 1px solid #dde3e8;
}

.chd-single-sidebar .widget li:last-child {
	border-bottom: 0;
}

.chd-single-sidebar .widget a {
	color: #164a79;
	text-decoration: none;
}

.chd-single-sidebar .widget a:hover {
	text-decoration: underline;
}


/* =========================================================
   COMMENTS
========================================================= */

.chd-single-comments {
	padding: 0 0 80px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.chd-single-layout {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 35px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.chd-single-container {
		width: min(100% - 32px, 1320px);
	}

	.chd-single-featured {
		padding-top: 30px;
	}

	.chd-single-featured-image {
		border-radius: 12px;
	}

	.chd-single-header {
		padding: 30px 0 40px;
	}

	.chd-single-body {
		padding-bottom: 55px;
	}

	.chd-single-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.chd-single-sidebar {
		position: static;
	}

	.chd-single-sidebar .widget,
	.chd-sidebar-card {
		padding: 24px;
	}

}


.chd-sidebar-posts a {
    color: #164a79;
    text-decoration: none;
    font-weight: normal;
    line-height: 1.4;
    font-size: 14px;
}

div#ez-toc-container {
    margin-top: 24px;
}

#ez-toc-container { padding:20px; }

.chd-single-content li {

    font-size: 15px;
}

li { font-size:14px; }
ul { margin-bottom:16px; }