/* =========================================================
   Tokens
   ========================================================= */
:root {
	--c-teal: #45c4ba;
	--c-teal-dark: #339189;
	--mint: #EAF7F6;
	--c-charcoal: #3f3f42;
	--c-charcoal-soft: #58585b;
	--c-ink: #455055;
	--c-paper: #ffffff;
	--c-mist: #f4f7f7;
	--c-line: #e3e8e8;
	--c-dark-band: #2b2b2d;

	/* --font-body: 'Roboto', Arial, sans-serif; */
	--font-heading: 'Montserrat', Arial, sans-serif;
	/* --font-display: 'Roboto Slab', Georgia, serif; */

	--container: 1440px;
	--gutter: 24px;
	--radius: 10px;
	--radius-lg: 18px;

	--space-xs: 8px;
	--space-sm: 16px;
	--space-md: 24px;
	--space-lg: 40px;
	--space-xl: 64px;
	--space-2xl: 96px;

	--header-h: 88px;
	--header-h-mobile: 68px;

}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-heading);
	color: var(--c-ink);
	/* background: var(--c-paper); */
	line-height: 1.6;
	font-size: 17px;
}

img {
	max-width: 100%;
	display: block;
	height: auto;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	margin: 0 0 1em;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	cursor: pointer;
}

svg {
	display: block;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.5em;
	color: var(--c-charcoal);
}

h1 {
	font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
	font-size: clamp(1.6rem, 3vw, 2.25rem);
}

h3 {
	font-size: 1.25rem;
}


.bg-dark .wysiwyg p,
.bg-dark h2{
	color: #fff;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-teal-dark);
	margin-bottom: var(--space-xs);
}

.section-heading {
	text-align: center;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--space-lg);
}

.pt-0{
	padding-top: 0 !important;
}

.pb-0{
	padding-bottom: 0 !important;
}

.bg-mint{
	background-color: var(--mint) !important;
}

.accordion{
	margin-bottom: 40px;
}


/* =========================================================
   Buttons — one consistent size/shape used everywhere
   ========================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 10px 24px;
	border-radius: 999px;
	border: 2px solid transparent;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
	white-space: nowrap;
}

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





.btn svg {
	width: 18px;
	height: 18px;
	flex: none;
}

.btn--primary {
	background: #27a298;
	color: #fff;
}

.btn--primary:hover {
	background: #1c6c65;
}

.btn--dark {
	background: var(--c-charcoal);
	color: #fff;
}

.btn--dark:hover {
	background: var(--c-ink);
}

.btn--outline {
	background: transparent;
	color: var(--c-charcoal);
	border-color: var(--c-charcoal);
}

.btn--outline:hover {
	background: var(--c-charcoal);
	color: #fff;
}

.btn--outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .6);
}

.btn--outline-light:hover {
	background: #fff;
	color: var(--c-charcoal);
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	align-items: center;
}

.btn-row--center {
	justify-content: center;
}

/* =========================================================
   Skip link / a11y
   ========================================================= */
.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--c-teal);
	color: #fff;
	padding: 12px 20px;
	z-index: 1000;
}

.skip-link:focus {
	left: var(--space-sm);
	top: var(--space-sm);
}

/* =========================================================
   Header / Nav — fixed, transparent over the banner; solid once
   scrolled. Unscrolled: phone + address. Scrolled: nav links.
   ========================================================= */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 500;
	color: #fff;
	/* background: linear-gradient(180deg, rgba(20, 22, 22, .62), rgba(20, 22, 22, 0)); */
	transition: background-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
	background: #fff;
	box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .6);
}

.site-header.is-scrolled .site-header__logo img{
	filter: none;
}

.site-header.is-scrolled .header-info a{
	color: var(--c-teal-dark);
}

.site-header.is-scrolled .drawer-toggle{
	color: var(--c-charcoal);
}

.ser-btn,
.card-btn{
	margin-top: auto;
}

.s-card p{
	flex: 1;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
	padding-block: 10px;
	gap: var(--space-md);
}

.site-header__logo {
	flex: none;
}

.site-header__logo img {
	height: 50px;
	width: auto;
	filter: brightness(0) invert(1);
}

.header-info {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	flex-wrap: wrap;
	font-size: 0.85rem;
	font-weight: 700;
	font-family: var(--font-heading);
	transition: opacity .2s ease, visibility .2s ease;
}

.header-info a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	opacity: .95;
	font-size: 20px;
	transition: all 0.3s ease;
}

.header-info a:hover {
	opacity: 1;
	color: var(--c-teal-dark);
	transition: all 0.3s ease;
}

.header-info .icon {
	width: 25px;
	height: 25px;
	flex: none;
}

/* .site-header.is-scrolled .header-info {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	position: absolute;
} */

/* Home layout: info swaps for nav-inline once scrolled */
.site-header:not(.site-header--inner) .header-mid {
	display: none;
}

/* .site-header:not(.site-header--inner) .site-header__cta .header-info,
.site-header:not(.site-header--inner) .nav-inline {
	transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
} */

/* .site-header:not(.site-header--inner).is-scrolled .site-header__cta .header-info {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	pointer-events: none;
	position: absolute;
} */

.site-header:not(.site-header--inner) .nav-inline {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site-header:not(.site-header--inner).is-scrolled .nav-inline {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* .site-header:not(.site-header--inner).is-scrolled .header-mid {
	display: block;
} */

/* Inner-page layout: 3-col grid until scrolled, then flex with nav visible */
.site-header--inner .site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
}

.site-header--inner .header-mid {
	display: none;
	grid-column: 1 / -1;
	order: 4;
}

.site-header--inner.is-scrolled .site-header__inner {
	display: flex;
}

/* .site-header--inner.is-scrolled .header-mid {
	display: block;
	order: 0;
} */

.site-header--inner .site-header__cta {
	justify-self: end;
}

.header-mid {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-inline>ul {
	display: flex;
	align-items: center;
	gap: 26px;
}

.nav-inline>ul>li {
	position: relative;
}

.nav-inline>ul>li>a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 2px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
}

.nav-inline>ul>li>a:hover {
	color: var(--c-teal);
}

.nav-inline .dropdown-arrow {
	width: 9px;
	height: 9px;
	flex: none;
}

.nav-inline .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: #fff;
	border-radius: 0 0 var(--radius) var(--radius);
	box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-inline .has-dropdown:hover>.dropdown,
.nav-inline .has-dropdown:focus-within>.dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-inline .dropdown a {
	display: block;
	padding: 10px 20px;
	font-size: 0.85rem;
	color: var(--c-charcoal-soft);
	text-transform: none;
	letter-spacing: normal;
	font-weight: 600;
}

.nav-inline .dropdown a:hover {
	color: var(--c-teal-dark);
	background: var(--c-mist);
}



.site-header__cta {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.header-cta-btn {
	/* font-size: 0.76rem; */
	display: none;
}


/* Plain 3-line drawer toggle (reopelle-style: icon only, no circle/border) */
.drawer-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: none;
	color: #fff;
}

.drawer-toggle:focus-visible{
	outline: none;
	border: none;
}

.drawer-toggle svg {
	width: 30px;
	height: 30px;
}

/* =========================================================
   Site drawer (slide-in from right) — brand teal bg, white links
   ========================================================= */
.drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 600;
	background: rgba(20, 22, 22, .55);
	backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
}

.drawer-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.site-drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: min(400px, 88vw);
	z-index: 601;
	background: #50ccc6;
	color: #fff;
	display: flex;
	flex-direction: column;
	padding: var(--space-lg) var(--space-lg) var(--space-md);
	transform: translateX(100%);
	transition: transform .35s cubic-bezier(.65, 0, .35, 1);
	/* box-shadow: -30px 0 60px -20px rgba(0, 0, 0, .35); */
	overflow-y: auto;
}

.drawer-bg-img{
	position: absolute;
	width: 200px;
	height: 200px;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	filter: brightness(0) invert(1);
	opacity: 0.2;
	z-index: 0;
}

.menu-list-item{
	position: relative;
	z-index: 1;
}

.site-drawer.is-visible {
	transform: translateX(0);
}

.site-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--space-lg);
}

.site-drawer__head img {
	height: 44px;
	width: auto;
	filter: brightness(0) invert(1);
}

.site-drawer__close {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .5);
	background: none;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.site-drawer__close svg {
	width: 16px;
	height: 16px;
}

.site-drawer__close:hover {
	background: #fff;
	color: #50ccc6;
	border-color: #fff;
	transform: rotate(90deg);
}

.trail-path {
	flex: 1;
}

.trail-path>li {
	margin-bottom: var(--space-sm);
}

.trail-item__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.trail-path a {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.05rem;
	color: #fff;
	opacity: .95;
}

.trail-path a:hover {
	opacity: 1;
	/* text-decoration: underline; */
}

.trail-item__toggle {
	background: none;
	border: none;
	color: #fff;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.trail-item__arrow {
	width: 11px;
	height: 11px;
	transition: transform 0.3s ease;
}

.has-submenu.open .trail-item__arrow {
	transform: rotate(180deg);
}

.trail-submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
	padding-left: 14px;
	transition: all 0.3s ease;
}

.has-submenu.open>.trail-submenu {
	max-height: 600px;
	transition: all 0.3s ease;
}

.trail-submenu li {
	margin-bottom: 8px;
}

.trail-submenu a {
	font-size: 0.9rem;
	font-weight: 600;
	color: #fff;
	text-transform: none;
	opacity: .85;
}

.site-drawer__foot {
	margin-top: var(--space-lg);
	padding-top: var(--space-md);
	border-top: 1px solid rgba(255, 255, 255, .25);
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.site-drawer__foot .btn--primary {
	background: #fff;
	color: #339189;
}

.site-drawer__foot .btn--primary:hover {
	background: var(--c-charcoal);
	color: #fff;
}

.site-drawer__tel {
	text-align: center;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.1rem;
	color: #fff;
}

.site-drawer__addr {
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	opacity: .9;
	margin: 0;
}

.site-drawer .social-row {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.site-drawer .social-row a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-drawer .social-row a:hover {
	background: #fff;
	color: var(--c-teal-dark);
}

.site-drawer .social-row svg {
	width: 15px;
	height: 15px;
	fill: #fff;
}

.site-drawer .social-row a:hover svg {
	fill: #50ccc6;
}

body.menu-open {
	overflow: hidden;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
	position: relative;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	color: #fff;
	background: var(--c-charcoal) center / cover no-repeat;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(206deg,rgba(168,195,195,.50) 10%,rgba(71,71,71,.85) 100%);
}

.hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero__inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
	padding: var(--space-2xl) var(--gutter);
}

.hero h1 {
	color: #fff;
}

.hero .hero-text-large{
	font-size: clamp(2.5rem, 4vw, 4rem);
}

.hero p {
	font-size: 1.15rem;
	color: #eef2f2;
	margin-bottom: var(--space-md);
}

/* =========================================================
   Logo / certification strip
   ========================================================= */
.logo-strip {
	padding: 10px 0;
	border-bottom: 1px solid var(--c-line);
}

.logo-strip img {
	margin: 0 auto;
}

.logo-strip picture {
	display: block;
}



/* =========================================================
   Image + Content
   ========================================================= */
.image-content {
	padding: var(--space-2xl) 0;
	/* background-color: #f7f7f6; */
}

.image-content__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	align-items: center;
	box-sizing: 0 0 100px 0 rgba(12,5,0,.11);
}



.image-content__media{
	height: 100%;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 18px 44px -22px rgba(20,70,66,.38);
}



.image-content__media img {
	/* border-radius: var(--radius-lg); */
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* aspect-ratio: 4/3; */
}

.image-content__media--portrait img {
	aspect-ratio: 3/4;
}

.image-content__body .btn {
	margin-top: var(--space-sm);
}

.image-content__quote {
	margin-top: var(--space-md);
	padding-left: var(--space-md);
	border-left: 3px solid var(--c-teal);
	font-style: italic;
	color: var(--c-charcoal-soft);
}

.image-content--band {
	background: var(--c-mist);
}

.what-part-wrapper{
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 80px;
}

/* =========================================================
   Simple colour/text banner (What Sets Us Apart)
   ========================================================= */
.text-banner {
	background: #efefee;
	color: #000;
	padding: var(--space-xl) 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.text-banner h2 {
	color: #000;
}

.text-banner__body {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.05rem;
	position: relative;
	z-index: 1;
}

/* =========================================================
   Treatment / feature cards
   ========================================================= */
.cards-section {
	padding: var(--space-2xl) 0;
	position: relative;
}

.cards-section:after{
	position: absolute;
	content: '';
	inset: 0;
	background-image: linear-gradient(180deg,#50ccc6 0,rgba(80,204,198,.4) 100%);
}

.cards-section .container{
	position: relative;
	z-index: 1;
}

.service-treat-bg{
	position: absolute;
	inset: 0;
}

.service-treat-bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-md);
}



.card {
	/* background: #fff; */
	/* border: 1px solid var(--c-line); */
	/* border-radius: var(--radius-lg); */
	text-align: center;
	transition: box-shadow .2s ease, transform .2s ease;
}


.card__icon {
	width: 160px;
	height: 160px;
	margin: 0 auto var(--space-sm);
}

.card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.card h3 {
	font-size: 24px;
	color: #fff;
}

.card .btn {
	margin-top: var(--space-sm);
}

.what-part-wrapper p,
.what-part-wrapper h2{
	color: #fff;
}

.cards-section .section-heading h2{
	color: #fff;
}

.cards-grid .btn--primary{
	background-color: #fff;
	color: var(--c-teal-dark);
	font-size: 16px;
}

/* =========================================================
   CTA banner (dark, e.g. "How Much Will I Pay?")
   ========================================================= */
.cta-banner {
	background: var(--c-dark-band);
	color: #fff;
	padding: var(--space-lg) 0;
}

.cta-banner__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
}

.cta-banner h2 {
	color: #fff;
	margin: 0;
	font-size: 1.4rem;
}

/* =========================================================
   Reviews slider (Parkway-style testimonial card)
   ========================================================= */
.reviews {
	background: #2c3538;
	color: #fff;
	padding: var(--space-2xl) 0;
}

.bg-dark{
	background-color: #2c3538;
}

.reviews .section-heading h2 {
	color: #fff;
}

.reviews-track {
	display: flex;
	gap: var(--space-md);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: var(--space-sm);
	scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
	display: none;
}

.review-card {
	scroll-snap-align: start;
	flex: 0 0 100%;
	max-width: 328px;
	background: #3a4548;
	color: var(--c-ink);
	border-radius: var(--radius-lg);
	padding: var(--space-md);
	border: 1px solid rgba(255,255,255,.07);
}





.review-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: var(--space-sm);
}

.review-card__head svg.google {
	width: 35px;
	height: 35px;
}

.review-card__stars {
	display: flex;
	gap: 2px;
}

.review-card__stars svg {
	width: 15px;
	height: 15px;
	fill: #f5b301;
}

.review-card p {
	color: #fff;
	margin-bottom: 0;
}

.review-card__name {
	font-family: var(--font-heading);
	font-weight: 700;
	color: #fff;
	margin-top: var(--space-sm);
}

.reviews-nav {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: var(--space-lg);
}

.reviews-nav button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .3);
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reviews-nav button:hover {
	background: var(--c-teal);
	border-color: var(--c-teal);
}

.reviews-nav svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

/* =========================================================
   Blog grid
   ========================================================= */
.blog-grid-section {
	padding: var(--space-2xl) 0;
}

.blog-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: var(--space-md);
}


.post-card {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
	display: flex;
	flex-direction: column;
	border: 1px solid #e3edec;
}

.post-card__img {
	aspect-ratio: 16/10;
	overflow: hidden;
}

.post-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.post-card:hover .post-card__img img {
	transform: scale(1.05);
}

.post-card__body {
	padding: var(--space-md);
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 10px;
}

.post-card__body h3 {
	font-size: 1.05rem;
}

.post-card__body h3 a:hover {
	color: var(--c-teal-dark);
}

.post-card__body p {
	color: var(--c-charcoal-soft);
	font-size: 0.92rem;
	flex: 1;
}

.post-card__link {
	align-self: flex-start;
	margin-top: 6px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--c-teal-dark);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.post-card__link svg{
	transition: all 0.3s ease;
}

.post-card__link:hover svg{
	transform: translateX(5px);
	transition: all 0.3s ease;
}


/* =========================================================
   Inner page banner
   ========================================================= */
.inner-banner {
	position: relative;
	padding: 200px 0 180px 0;
	color: #fff;
	background: var(--c-charcoal) center/cover no-repeat;
	text-align: center;
}

.inner-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(20, 22, 22, .68);
}

.inner-banner__inner {
	position: relative;
	z-index: 1;
	/* min-height: 100dvh; */
	/* display: flex;
	align-items: center;
	justify-content: center; */
}

.inner-banner h1 {
	color: #fff;
	margin-bottom: 6px;
}

.breadcrumbs {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, .8);
}

.breadcrumbs a {
	text-decoration: underline;
}

/* =========================================================
   Generic content / FAQ / team — Phase B extends these
   ========================================================= */
.wysiwyg-section {
	padding: var(--space-2xl) 0;
}

.wysiwyg-section .wysiwyg {
	/* max-width: 820px; */
	margin: 0 auto;
}

.wysiwyg h2:nth-child(1){
	margin-top: 0;
}
.wysiwyg h2,
.wysiwyg h3 {
	margin-top: 1.4em;
}

.wysiwyg a {
	color: var(--c-teal-dark);
	text-decoration: underline;
}

.wysiwyg ul {
	list-style: disc;
	padding-left: 1.4em;
	margin-bottom: 1em;
}

.wysiwyg ul li {
	margin-bottom: .4em;
}

.wysiwyg ol {
	list-style: decimal;
	padding-left: 1.4em;
	margin-bottom: 1em;
}

.wysiwyg ol li {
	margin-bottom: .4em;
}

.wysiwyg table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: var(--space-md);
	font-size: 0.92rem;
}

.wysiwyg th,
.wysiwyg td {
	text-align: left;
	padding: 12px 14px;
	border: 1px solid var(--c-line);
}

.wysiwyg thead th {
	background: var(--c-mist);
	font-family: var(--font-heading);
	font-size: 0.8rem;
	letter-spacing: .03em;
	text-transform: uppercase;
}

.wysiwyg table {
	display: block;
	overflow-x: auto;
}

/* Image + Content sections with no image fall back to a single centered column */
.image-content--text-only .image-content__grid {
	grid-template-columns: 1fr;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.image-content--text-only .btn-row {
	justify-content: center;
}

/* =========================================================
   Image gallery + lightbox
   ========================================================= */
.gallery-section {
	padding: var(--space-2xl) 0;
}

.photo-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-sm);
}



.photo-gallery__item {
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4/3;
}

.photo-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.photo-gallery__item:hover img {
	transform: scale(1.06);
}

.lightbox-overlay {
	position: fixed;
	inset: 0;
	z-index: 900;
	background: rgba(10, 10, 10, .92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-md);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

.lightbox-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.lightbox-overlay__img {
	max-width: 100%;
	max-height: 90vh;
	border-radius: var(--radius);
}

.lightbox-overlay__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-overlay__close svg {
	width: 18px;
	height: 18px;
	stroke: #fff;
}

/* =========================================================
   Accordion
   ========================================================= */
.accordion-section {
	padding: var(--space-2xl) 0;
}

/* .accordion {
	max-width: 860px;
	margin: 0 auto;
} */

.accordion__item {
	border-bottom: 1px solid var(--c-line);
}

.accordion__heading {
	margin: 0;
}

.accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	width: 100%;
	padding: 20px 0px;
	background: none;
	border: none;
	text-align: left;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 20px;
	color: var(--c-charcoal);
}

.accordion__trigger[aria-expanded="true"]{
	color: var(--c-teal) !important;
}

.accordion__trigger svg {
	width: 13px;
	height: 13px;
	flex: none;
	transition: transform .2s ease;
}

.accordion__trigger[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.accordion__panel {
	padding: 0 4px var(--space-md);
}

/* =========================================================
   Contact + form
   ========================================================= */
.contact-section {
	padding: var(--space-2xl) 0;
}

.contact-section__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
}



.contact-section__details {
	margin-top: var(--space-md);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-section__details .contact-line {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.contact-section__details svg {
	width: 17px;
	height: 17px;
	fill: var(--c-teal-dark);
	flex: none;
	margin-top: 3px;
}

.contact-section__form {
	background: var(--c-mist);
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
}

.c-map-page .contact-section__form{
	padding: 0;
	overflow: hidden;
}

.contact-section__form iframe{
	width: 100%;
	height: 100%;
}

.form-row {
	margin-bottom: var(--space-sm);
}

.form-row label {
	display: block;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 6px;
	color: var(--c-charcoal);
}

.form-row input,
.form-row textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--c-line);
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	background: #fff;
}

.form-row input:focus,
.form-row textarea:focus {
	outline: 2px solid var(--c-teal);
	outline-offset: 1px;
}

.form-success {
	background: #e7f8f6;
	color: var(--c-teal-dark);
	padding: var(--space-md);
	border-radius: var(--radius);
	font-weight: 700;
}

/* =========================================================
   Map + CTA (sits between page content and the footer)
   ========================================================= */
.map-cta-section {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
}

.map-cta__map {
	position: relative;
	min-height: 320px;
	background: var(--c-mist);
}

.map-cta__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.map-cta__card {
	position: relative;
	background: linear-gradient(135deg, var(--c-teal), var(--c-teal-dark));
	color: #fff;
	padding: var(--space-xl) var(--gutter);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--space-sm);
}

.map-cta__card h2 {
	color: #fff;
	margin-bottom: 0;
}

.map-cta__card p {
	color: rgba(255, 255, 255, .92);
}

.map-cta__addr {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-weight: 700;
}

.map-cta__addr svg {
	width: 18px;
	height: 18px;
	fill: #fff;
	flex: none;
	margin-top: 2px;
}

.map-cta__card .btn--outline-light svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}



/* =========================================================
   Footer
   ========================================================= */
.site-footer {
	position: relative;
	background: var(--c-charcoal);
	color: #d9dbdb;
	overflow: hidden;
}

.site-footer__mark {
	position: absolute;
	top: -60px;
	right: -60px;
	width: 420px;
	height: 420px;
	opacity: .06;
	pointer-events: none;
}

/* Icon-card contact row (reopelle-style) */
.footer-info {
	position: relative;
	z-index: 1;
	padding: var(--space-xl) 0;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-info__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
}



.footer-info__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
}

.footer-info__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 2px solid var(--c-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
}

.footer-info__icon svg {
	width: 24px;
	height: 24px;
	fill: var(--c-teal);
	color: var(--c-teal);
}

.footer-info__card>span {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--c-teal);
}

.footer-info__card p {
	color: #d9dbdb;
	font-size: 0.9rem;
}

.footer-info__card>a {
	font-weight: 700;
	font-size: 0.95rem;
	color: #fff;
}

.footer-info__card>a:hover {
	color: var(--c-teal);
}

.footer-info__social {
	display: flex;
	gap: 10px;
}

.footer-info__social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
	transition: all 0.3s ease;
}

.footer-info__social a:hover{
	border-color: var(--c-charcoal);
	color: var(--c-charcoal);
	transition: all 0.3s ease;
}

.footer-info__social a:hover svg{
	fill: var(--c-charcoal) !important;
	transition: all 0.3s ease;
}



.footer-info__social svg {
	width: 15px;
	height: 15px;
	fill: #fff;
}

.site-footer__inner {
	position: relative;
	z-index: 1;
	padding: var(--space-2xl) 0 var(--space-lg);
	background-color: var(--c-teal);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
}



.footer-brand img {
	height: 55px;
	margin-bottom: var(--space-sm);
	filter: brightness(0) invert(1);
}

.footer-brand p {
	color: #fff;
	font-size: 0.9rem;
}

.footer-col h3 {
	color: #fff;
	font-size: 0.85rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: var(--space-sm);
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col a {
	color: #FFF;
	font-size: 0.92rem;
	transition: all 0.3s ease;
}

.footer-col a:hover {
	color: var(--c-charcoal);
	transition: all 0.3s ease;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding: var(--space-md) 0;
	background-color: var(--c-teal);
}

.site-footer__bottom .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--space-sm);
	font-size: 0.8rem;
	color: #ffffff;
}

.site-footer__bottom a {
	color: #fff;
	font-weight: 600;
}

.site-footer__bottom a:hover {
	color: var(--c-ink);
}

.logo-wrapper{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: auto;
	gap: 10px;
}



.contact-col ul li{
	padding: 3px 0;
}

.contact-col ul li a{
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-col ul li .of-hours{
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 0.92rem;
}

.contact-col ul li .of-hours span{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-col ul li .of-hours span svg{
	width: 20px;
	height: 20px;
}

.contact-col ul li a span{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-col ul li a span svg{
	width: 20px;
	height: 20px;
}

.f-social{
	margin-top: 20px;
}

/* =========================================================
   Utilities
   ========================================================= */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.cr-home-about-section{
	padding: var(--space-2xl) 0;
	background-color: #f3f3f3;
	position: relative;
}

.about-bg {
	position: absolute;
	inset: 0;
}

.about-bg .bg-inner{
	opacity: 0.02;
}

.about-wrapper{
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.about-wrapper h2{
	text-align: center;
}

.about-wrapper p{
	text-align: center;
	margin-bottom: 30px;
}

.about-wrapper img{
	width: 80%;
	margin: 0 auto;
}

.about-wrapper .about-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
}

.footer-brand{
	max-width: 330px;
}

.service-card-section{
	padding: var(--space-2xl) 0;
}

.s-card-grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: row;
	column-gap: 20px;
	row-gap: 20px;
}

.s-card-grid .s-card{
	border-radius: 24px;
    padding: 38px;
    border: 1px solid #e3edec;
    /* background: var(--mint); */
    display: flex;
    flex-direction: column;
	position: relative;
	overflow: hidden;
}



.s-card h3{
	font-size: 28px;
	color: var(--c-teal-dark);
}

.s-card .btn{
	margin-top: 20px;
}

.contact-info-card{
	margin-top: 30px;
}

.contact-info-item{
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 15px;
}

.contact-info-item .c-icon{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--c-teal);
	color: #fff;
	flex-shrink: 0;
}

.contact-info-item .c-icon svg{
	width: 20px;
	height: 20px;
	
}

.off-hours{
	margin-top: 40px;
}

.off-hours ul li{
	padding: 2px 0;
}

.map-section-full{
	padding: var(--space-2xl) 0;
}

.c-map-wrapper {
	height: 500px;
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.c-map-wrapper iframe{
	width: 100%;
	height: 100%;
}

.s-title-wrapper h2{
	margin-bottom: 30px;
}

.cr-service-section{
	padding: var(--space-2xl) 0;
	background: linear-gradient(165deg,#57cfc9,#2ba9a3);
	position: relative;
	overflow: hidden;
}

.cr-service-section::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.cr-ser-card-wrapper{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	gap: 20px;
}

.cr-service-section .title-wrapper{
	max-width: 600px;
	width: 100%;
}

.cr-service-section .title-wrapper h2{
	color: #fff;
}

.cr-service-section .title-wrapper p{
	color: #fff;
}

.cr-ser-card-wrapper {
	margin-top: 50px;
}

.cr-ser-card-wrapper .ser-card{ 
	background-color: #fff;
	padding: 20px;
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.cr-ser-card-wrapper .ser-card .ser-c-img{
	background-color: var(--c-teal-dark);
	width: 80px;
	height: 80px;
	border-radius: var(--radius);
}

.cr-ser-card-wrapper .ser-card .ser-c-img img{
	width: 100%;
}

.cr-ser-card-wrapper .ser-card .ser-c-content{
	display: flex;
	flex-direction: column;
}

.cr-ser-card-wrapper .ser-card .ser-c-content p{
	font-size: 16px;
	flex: 1;
}

.cr-ser-card-wrapper .ser-card .ser-btn span{
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--c-teal-dark);
	font-weight: 600;
	transition: all 0.3s ease;
}

.cr-ser-card-wrapper .ser-card .ser-btn span svg{
	transition: all 0.3s ease;
}

.cr-ser-card-wrapper .ser-card .ser-btn span:hover svg{
	transform: translateX(5px);
	transition: all 0.3s ease;
}

.finance-section{
	padding: var(--space-2xl) 0;
}

.twoup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.panel {
    border-radius: 24px;
    padding: 38px;
    border: 1px solid #e3edec;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.panel.tint {
    background: var(--mint);
    border-color: transparent;
}

.panel .pi {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--c-teal);
    color: #093f3b;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.panel .pi svg {
    width: 28px;
    height: 28px;
}

.panel h3 {
    font-size: 1.7rem;
}

.panel p {
    margin-top: 14px;
    color: var(--body);
}

.panel .btnrow {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


.fin-list {
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.fin-list li {
    list-style: none;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: .98rem;
}

.fin-list li svg {
    width: 20px;
    height: 20px;
    color: var(--c-teal);
    flex: none;
    margin-top: 2px;
}

.panel .btnrow {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--teal);
    color: #093f3b;
    box-shadow: 0 12px 26px -12px rgba(80, 204, 198, .9);
}

.btn-white {
    background: #fff;
    color: var(--teal-ink);
    border-color: transparent;
}

.costcta {
    background: #2c3538;
    color: #fff;
    border-radius: 26px;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    box-shadow: 0 18px 44px -22px rgba(20,70,66,.38);
}

.cost-content{
	max-width: 48ch;
}

.costcta h3 {
    color: #fff;
    font-size: 1.9rem;
}

.f-map-contact {
	padding: var(--space-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}


.cinfo h2 {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
}

.cinfo-list {
    margin-top: 28px;
    display: grid;
    gap: 18px;
}

.cline {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.cline .ci {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--c-charcoal);
    color: #fff;
    display: grid;
    place-items: center;
    flex: none;
}

.cline .ci svg {
    width: 22px;
    height: 22px;
}

.cline .t {
    font-size: 14px;
	font-weight: 600;
    color: var(--c-teal-dark);
}

.cline .b {
    font-weight: 600;
    color: var(--ink);
    font-size: 1.02rem;
}

.fc-map{
	border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e3edec;
    height: 400px;
    background: linear-gradient(0deg, rgba(80, 204, 198, .06), rgba(80, 204, 198, .06)), repeating-linear-gradient(0deg, #eef5f4 0 1px, transparent 1px 46px), repeating-linear-gradient(90deg, #eef5f4 0 1px, transparent 1px 46px), #f6faf9;
    position: relative;
	box-shadow: 0 1px 2px rgba(24,52,50,.06);
}

.fc-map iframe{
	width: 100%;
	height: 100%;
}

.cr-review-section{
	padding: var(--space-2xl) 0;
}

.cr-review-section .title h2{
	color: #fff;
	text-align: center;
	margin-bottom: 50px;
}

.cr-review-wrapper{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	gap: 20px;
}

.cr-r-card{
    background: #3a4548;
    color: var(--c-ink);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, .07);
}

.cr-r-card h3{
	color: #fff;
}

.cr-r-card .r-rating{
	display: flex;
}

.cr-r-card .r-rating svg{
	width: 20px;
	height: 20px;
	fill: var(--c-teal);
}

.cr-r-card span{
	font-size: 11px;
	color: #fff;
	opacity: 0.5;
}

.cr-r-card p{
	margin-top: 15px;
	color: #fff;
	font-size: 14px;
}


.cr-inner-page-section{
	padding: var(--space-2xl) 0;
	position: relative;
}

.cr-inner-wrapper{
	display: grid;
	grid-template-columns: 4fr 2fr;
	grid-template-rows: auto;
	gap: 50px;
}

.cr-i-right-card{
	border-radius: 24px;
    padding: 38px;
    background: var(--mint);
    display: flex;
    flex-direction: column;
	margin-bottom: 40px;
}

.cr-i-right-card p{
	font-size: 16px;
	font-weight: 500;
}

.cr-i-right-card span{
	font-size: 14px;
	font-weight: 600;
	font-variant: var(--c-charcoal);
}

.cr-in-left h3:first-child{
	margin-top: 0;
}

.cr-in-left h3{
	margin-top: 30px;
	font-size: 28px;
	color: var(--c-teal);
}

.cr-in-left p a{
	color: var(--c-teal);
}
.cr-in-left p a:hover{
	text-decoration: underline;
}

.cr-in-left ul{
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.m-dir{
	font-size: 14px;
	font-weight: 600;
	text-decoration: underline;
	color: var(--c-teal-dark);
}


.gform_title{
	display: none !important;
}

.gfield_label{
	display: block !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
    color: var(--c-charcoal) !important;
}

.gfield_required{
	display: none !important;
}

.gform-theme--foundation .gfield select.large::placeholder,
.gform-theme--foundation .gfield textarea.small::placeholder,
.gform-theme--foundation .gfield input.large::placeholder{
	opacity: 0.5 !important;
}


.gform-theme--framework .gfield--input-type-datepicker .ginput_container_date input,
.gform-theme--foundation .ginput_complex input,
.gform-theme--foundation .ginput_complex select,
.gform-theme--foundation .gfield input.large{
	height: 50px !important;
}

/* .gform-theme--foundation .ginput_complex input,
.gform-theme--foundation .ginput_complex select{
	width: 100% !important;
    border: 1px solid var(--c-line) !important;
    border-radius: 8px !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    background: #fff !important;
} */

.gform-theme--foundation .gfield input[type="text"],
.gform-theme--framework .gfield--input-type-datepicker .ginput_container_date input,
.gform-theme--foundation .gfield input[type="number"],
.gform-theme--foundation .gfield textarea.small,
.gform-theme--foundation .gfield input.large{
	width: 100% !important;
    padding: 12px 14px !important;
    border: 1px solid var(--c-line) !important;
    border-radius: 8px !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    background: #fff !important;
}

.gform-theme--foundation .gfield select,
.gform-theme--foundation .gfield select.large{
	width: 100% !important;
    border: 1px solid var(--c-line) !important;
    border-radius: 8px !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
	height: 50px !important;
	padding-top: 5px;
}


.gform-theme--foundation .gfield select:focus,
.gform-theme--foundation .gfield select.large:focus,
.gform-theme--foundation .gfield input[type="text"]:focus,
.gform-theme--framework .gfield--input-type-datepicker .ginput_container_date input:focus,
.gform-theme--foundation .gfield input[type="number"]:focus,
.gform-theme--foundation .gfield select.large:focus,
.gform-theme--foundation .gfield textarea.small:focus,
.gform-theme--foundation .gfield input.large:focus{
	outline: 2px solid var(--c-teal) !important;
    outline-offset: 0px !important;
}

.gform-theme--foundation .gform_fields{
	row-gap: 20px !important;
}

.cr-i-right-form{
	padding: 38px 38px;
	background: var(--c-mist);
	border-radius: var(--radius-lg);
}

.gform_button{
	display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 16px 24px !important;
    border-radius: 999px !important;
    border: 2px solid transparent !important;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease !important;
    white-space: nowrap !important;
	background: #27a298 !important;
}

.gform_button:hover{
	background: #1c6c65 !important;
	transform: translateY(-2px) !important;
}


.pay-form-section{
	padding: var(--space-2xl) 0;
}

.pay-form-wrapper{
	max-width: 1000px;
	margin: 0 auto;
	width: 100%;
	padding: 50px 70px;
	background: var(--mint);
	border-radius: var(--radius-lg);
}

.site-logo-pay{
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pay-title{
	max-width: 58ch;
	margin: 0 auto;
	text-align: center;
}

.pay-title p,
.pay-title h2{
	text-align: center;
}

.pay-form{
	margin-top: 60px;
}

.gfield_radio{
	display: flex !important;
	flex-direction: row !important;
}



.error-404-page {
    padding: 200px 0 100px 0;
    text-align: center;
	background-color: var(--c-charcoal);
}

.error-404-content h1 {
    font-size: 120px;
    line-height: 1;
    margin-bottom: 20px;
	color: var(--c-teal);
}

.error-404-content h2 {
    margin-bottom: 15px;
	color: #fff;
}

.error-404-content p {
    margin-bottom: 30px;
	color: #fff;
}

.cr-free-consult{
	padding: var(--space-2xl) 0;
	position: relative;
}

.cr-free-wrapper{
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	grid-template-rows: auto;
	gap: 50px;
}

.cr-free-left a{
	border: 1px solid var(--c-teal-dark);
	padding: 10px 24px;
	font-size: 16px;
	font-weight: 600;
	color: var(--c-teal-dark);
	border-radius: 999px;
	display: inline-flex;
}

.cr-free-left h2{
	margin-top: 30px;
}

.cr-free-right{
	background-color: var(--mint);
	border-radius: var(--radius-lg);
	padding: 50px 60px;
}

.about-consult{
	padding: var(--space-2xl) 0;
	position: relative;
}

.about-c-wrapper{
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px;
	background-color: var(--c-charcoal);
	border-radius: var(--radius-lg);
}

.about-c-wrapper h2{
	color: #fff;
}
.about-c-wrapper ul li{
	color: #fff;
}

.about-c-wrapper ul li span{
	color: var(--c-teal);
}

.about-c-wrapper ul li{
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
}

.about-c-wrapper ul li p a{
	color: var(--c-teal);
}


.btn-row--center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.btn-row--center .page-numbers {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.btn-row--center .page-numbers:hover {
    background: var(--c-teal);
    border-color: var(--c-teal);
    color: #fff;
}

/* Active page */
.btn-row--center .page-numbers.current {
    background: var(--c-teal);
    border-color: var(--c-teal);
    color: #fff;
}

/* Next button */
.btn-row--center .page-numbers.next {
    width: auto;
    padding: 0 20px;
}

/* Mobile */
@media (max-width: 767px) {
    .btn-row--center {
        gap: 6px;
        margin-top: 30px;
    }

    .btn-row--center .page-numbers {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .btn-row--center .page-numbers.next {
        padding: 0 15px;
    }
}

.post-navigation-section {
    padding: 0 0 50px 0;
}

.post-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.post-navigation__prev,
.post-navigation__next {
    flex: 1;
}

.post-navigation__next {
    text-align: right;
}

.post-navigation__back {
    flex-shrink: 0;
}

.post-navigation a {
    text-decoration: none;
    color: #222;
    display: inline-flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.post-navigation .nav-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #fff;
	background-color: var(--c-teal-dark);
	padding: 10px 24px;
	border-radius: 999px;
	display: flex;
}

.post-thumbnail{
	margin-bottom: 30px;
}

.post-thumbnail img{
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}

.post-navigation .nav-title {
    font-size: 16px;
    font-weight: 600;
}

.post-navigation__back a {
    background: #1e73be;
    color: #fff;
    padding: 12px 22px;
    border-radius: 4px;
}

.post-navigation__back a:hover {
    background: #222;
}

.post-navigation__prev a:hover,
.post-navigation__next a:hover {
    color: var(--c-teal-dark);
}

/* Mobile */
@media (max-width: 767px) {


    .post-navigation__prev,
    .post-navigation__next {
        text-align: center;
    }

    .post-navigation__back {
        order: 2;
    }

    .post-navigation__prev {
        order: 1;
    }

    .post-navigation__next {
        order: 3;
    }
}

@media (max-width: 425px){
	.post-navigation {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

.post-navigation-section .container,
.blog-single .container,
.wysiwyg-section .container{
	max-width: 1100px;
	margin: 0 auto;
}

.blog-single {
	position: relative;
    padding: 155px 0 50px 0;
    color: #fff;
    background: var(--c-charcoal);
    text-align: center;
}

.blog-single h1{
	color: #fff;
}

.cr-r-card .review-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.cr-r-card .review-text.expanded {
    display: block;
}

.cr-r-card .read-more-btn {
    background: none;
    border: 0;
    padding: 0;
    margin-top: 8px;
    color: var(--c-teal);
    cursor: pointer;
    font-weight: 600;
	font-size: 14px;
}


.review-read-more {
background: none;
border: 0;
padding: 0;
cursor: pointer;
font: inherit;
font-size: 14px;
color: var(--c-teal-dark);
}

.review-read-more:focus {
outline: none;
}
