
/*
Theme Name: Ranch Creek Recovery
Author: Josh Yager
Author URI: https://thedevq.com/
Description: Custom Theme build by The Dev Q
Version: 1.0.0
*/
@media (min-width: 1600px) {
	.container {
		max-width: 1450px;
	}
}

body {
	background-color: var(--background2);
}

/* Disable AOS animations on mobile */
@media (max-width: 991px) {
	[data-aos] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	
	body[data-aos-duration], body[data-aos-delay], body[data-aos-easing] {
		transition: none !important;
	}
}

a {
	color: var(--secondary);
	text-decoration: none;
}

a:hover {
	color: var(--tertiary);
}

.container-fluid {
	max-width: 2400px;
	margin: auto;
}

body, p, ul, li {
	font-family: var(--font2);
	font-weight: 400;
	color: #333131;
	font-size: 16px;
	line-height: 1.5;
}

html, body {
	position: relative;
}

.maincopy ul li {
	list-style: none;
	position: relative;
	margin-bottom: 15px;
}

h1, h2, h3, h4, h5 {
	font-family: var(--font1);
	/* color: var(--primary); */
	font-weight: 400;
	line-height: 1.2 !important;
}

h1 {
	font-size: 2.7rem;
}

h2 {
	font-size: 2.1rem;
}

h3 {
	font-size: 1.8rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

@media (max-width:991px) {
	h1 {
		font-size: 2.5rem;
	}
	
	h2 {
		font-size: 2rem;
	}
	
	h3 {
		font-size: 1.75rem;
	}
	
	h4 {
		font-size: 1.5rem;
	}
	
	h5 {
		font-size: 1.25rem;
	}
}

img {
	max-width: 100%;
}

.btn {
	text-decoration: none;
	background: var(--primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 300px;
	font-weight: 600;
	text-align: center;
	transition: all .3s ease-in-out;
}

.btn i {
	margin-right: 8px;
	font-size: 14px;
	/* fontawesome */
	font-family: FontAwesome;
}

.btn.btn-secondary {
	background: var(--secondary);
}

.btn.btn-tertiary {
	background: var(--tertiary);
}

.btn.btn-white {
	background: white;
	color: var(--primary);
}

.btn:hover {
	background: var(--secondary);
	color: white;
}

.btn-white:hover {
	background: var(--primary);
	color: white;
}

.btn.btn-secondary:hover {
	background: var(--primary);
	color: white;
}

.cs-topper {
	font-family: var(--font2);
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 800;
	margin-top: 0;
	color: var(--secondary);
	letter-spacing: 3px;
}

.cs-title {
	font-size: 34px;
	margin: 0;
	line-height: 1;
	font-weight: 800;
	max-width: 530px;
	color: var(--primary);
}

::selection {
	background: var(--tertiary);
	color: white;
}

::-webkit-scrollbar-track {
	background-color: #f5f5f5;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 30%);
}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: var(--tertiary);
}

::-webkit-scrollbar {
	width: 10px;
}

.mobileonly {
	display: none;
}

html {
	scroll-behavior: smooth;
}

/* Basic Html */
body {
	margin: 0px;
}

html, body {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4 {
	margin-bottom: 10px;
}

/* Header Styles & Main Logo */
.mainLogo {
	padding: 0;
	display: block;
	width: 200px;
	height: auto;
	margin: 0;
	position: relative;
}

.menutop ul {
	display: flex;
	list-style: none;
}

/* Base dropdown menu styles */
.dropdown-menu {
	display: none;
	transform-origin: center top 0;
	transition: all .1s ease 0s;
	min-width: 270px;
	left: -10px;
	overflow: visible;
	padding-top: 10px;
}

/* First level dropdown display on hover of main nav item */
.dropdown:hover > .dropdown-menu {
	display: block;
	position: absolute;
	color: white;
	padding-top: 10px;
	z-index: 3;
}

/* Hide all deeper nested dropdowns by default */
.dropdown-menu .dropdown-menu {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	padding-top: 0;
	margin-left: 1px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.dropdown-menu .dropdown-menu li:first-child a {
	border-radius: 8px 8px 0 0;
}

.dropdown-menu .dropdown-menu li:last-child a {
	border-radius: 0 0 8px 8px;
}

/* Only show second level when hovering its direct parent */
.dropdown-menu > li.menu-item-has-children:hover > .dropdown-menu {
	display: block;
}

/* Add arrow for items with children */
.dropdown-menu .menu-item-has-children > a:after {
	content: "";
	font-family: FontAwesome;
	position: absolute;
	right: 10px;
	font-size: 12px;
}

.menu-depth-1 {
	position: relative;
}

/* Menu Tablet */
@media screen and (max-width:1199px) {
	.mobileonly {
		display: inherit;
	}
	
	.mainLogo {
		margin: 0px auto;
		width: 200px;
		height: auto;
	}
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 */
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* forms */
.devqform {
	width: 100%;
	padding-bottom: 40px;
	max-width: 1200px;
	margin: auto;
}

.devqform input, .devqform textarea, .devqform select {
	padding: 10px;
	display: inline-block;
	border-radius: 0;
	font-size: 18px;
	font-family: var(--font1);
	background: #ecebec;
	border: 1px solid #b3b3b3;
	border-radius: 0;
	margin-bottom: 1rem !important;
}

.devqform select {
	text-transform: uppercase;
}

.devqform input::placeholder, .devqform textarea::placeholder, .devqform select::placeholder {
	font-weight: 300;
	color: #a9a9a9;
	font-family: var(--font2);
	font-size: 16px;
}

.devqform .gform_footer {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.devqform .button {
	background: var(--primary);
	color: white;
	margin: 0;
	cursor: pointer;
	transition: all .5s;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	width: 300px;
	max-width: 100%;
	margin-right: 10px;
}

.devqform .button:hover {
	background: var(--tertiary);
	color: initial;
}

.devqform textarea {
	height: 110px !important;
}

.devqform .gform_fields {
	grid-row-gap: 4px !important;
}

.col25 {
	width: 25%;
	padding: 5px 10px !important;
	display: inline-block;
	clear: both;
}

.col33 {
	width: 33.33%;
	padding: 5px 10px !important;
	display: inline-block;
	clear: both;
}

.col50 {
	width: 50%;
	padding: 5px 10px !important;
	display: inline-block;
	clear: both;
}

.col100 {
	width: 100%;
	padding: 5px 10px !important;
	display: inline-block;
	clear: both;
}

.boxFormFlex .gfield_checkbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.boxFormFlex .gchoice {
	width: 33%;
	height: 50px;
	display: flex;
	align-items: center;
}

.boxFormFlex input {
	margin: 0 10px 0 0 !important;
}

.boxFormFlex {
	margin: 30px 0 !important;
}

.devqform h2 {
	margin-bottom: 30px;
}

.devqform .gform_button_select_files {
	padding: 15px;
	font-family: var(--font1);
	font-size: 18px;
	border: 0;
}

@media (max-width:991px) {
	.boxFormFlex .gchoice {
		width: 50%;
	}
	
	.col50, .col25, .col33, .col100 {
		width: 100%;
		padding: 5px 0 !important;
	}
}

.devq-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 25px 0;
}

.menutop ul li a {
	text-decoration: none;
	margin-left: 30px;
	font-weight: 500;
	color: initial;
	font-size: 18px;
	transition: all .1s ease-in-out;
	display: flex;
	align-items: center;
}

.menutop ul li a:hover {
	color: var(--secondary);
}

.footerfluid2 {
	padding: 15px 0;
	background: var(--secondary);
}

.footerfluid2 p {
	color: white;
	margin: 0;
	padding: 10px 0;
	font-size: 16px;
}

.mobileOnly {
	display: none;
}

.flextophead {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

img.mobilelogo {
	width: 230px;
	margin: 0 15px;
}

.mobilemen {
	margin: -10px 10px 0 0;
}

img.mobileLogo {
	padding: 30px;
}

#buttonTop {
	display: inline-block;
	background-color: var(--primary);
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 4px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	transition: background-color .3s, opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	border: 2px solid white;
}

#buttonTop::after {
	content: "";
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
	line-height: 50px;
	color: #fff;
}

#buttonTop:hover {
	cursor: pointer;
	background-color: #333;
}

#buttonTop:active {
	background-color: #555;
}

#buttonTop.show {
	opacity: 1;
	visibility: visible;
}

a.dropdown-toggle i {
	padding-left: 5px;
	font-size: 14px;
}

.menu-item-has-children {
	position: relative;
}

.dropdown-menu a {
	margin: 0 !important;
}

ul.dropdown-menu.menu-even.menu-depth-2 {
	padding-top: 0 !important;
}

.dropdown-menu li a {
	background: var(--primary);
	padding: 10px 15px;
	color: white !important;
	display: block;
	border-bottom: 1px solid white;
	transition: all .1s ease-in-out;
}

.dropdown-menu li:last-child a {
	border-bottom: 0;
}

.dropdown-menu li a:hover {
	background: var(--secondary);
	color: white !important;
}

.mobilemen {
	display: none;
}

@media (max-width:1199px) {
	.desktopOnly {
		display: none;
	}
	
	.mobileOnly {
		display: initial;
	}
	
	.footerfluidcolor {
		padding: 70px 0 40px;
	}
	
	.footerfluid2 p {
		text-align: center;
	}
	
	.mobilemen {
		display: inherit;
	}
	
	.menutop {
		display: none;
	}
}

.lowerul ul:first-child {
	padding: 0;
	list-style: none;
	margin: 0;
	display: flex;
	align-items: center;
	width: 100%;
	/* gap: 30px; */
	justify-content: space-around;
}

.lowerul ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* Show dropdown caret on desktop, hide on mobile */
a.dropdown-toggle i {
	display: inline;
	font-size: 11px;
	margin-left: 4px;
	transition: transform .2s ease;
	vertical-align: middle;
}

.menu-item-has-children:hover > a.dropdown-toggle i {
	transform: rotate(180deg);
}

@media (max-width: 991px) {
	a.dropdown-toggle i {
		display: none;
	}
}

.lowerul ul li a {
	color: white;
	text-decoration: none;
	font-size: 16px;
}

ul.dropdown-menu {
	background: white;
	padding: 0 !important;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
	overflow: visible;
	min-width: 220px;
}

ul.dropdown-menu li:first-child a {
	border-radius: 0;
}

ul.dropdown-menu li:last-child a {
	border-radius: 0 0 8px 8px;
}

ul.dropdown-menu li a {
	background: white;
	color: var(--primary) !important;
	font-weight: 400;
	font-size: 16px;
	padding: 12px 20px;
	transition: all .2s ease;
}

ul.dropdown-menu li:first-child a {
	padding-top: 15px;
}

ul.dropdown-menu li:last-child a {
	padding-bottom: 15px;
}

ul.dropdown-menu li a:hover {
	background: var(--primary);
	color: white !important;
	padding-left: 25px;
}

.callcta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	gap: 20px;
}

.leftcc {
	text-align: center;
}

.leftcc h3, .leftcc p {
	margin: 0;
}

.leftcc h3 {
	font-size: 22px;
}

.leftcc p {
	font-size: 16px;
}

@media (max-width:1199px) {
	.lowermenu, .callcta {
		display: none;
	}
}

.rcrfooter {
	padding: 30px 0;
	background: var(--primary);
}

.rcrleftfoot p, .rcrleftfoot a {
	color: white;
	margin: 5px 0;
}

.flexrcrfooter {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.rcrrightfoot a {
	color: white;
	margin-left: 10px;
}

.rcrrightfoot a:hover {
	color: var(--secondary);
}

.sticky-header-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: linear-gradient(180deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, 0) 100%);
}

.header-container {
	padding: 20px 0;
}

.devq-header {
	display: flex;
	align-items: center;
	gap: 30px;
}

.logosection {
	flex-shrink: 0;
}

.logosection img.mainLogo {
	max-height: 60px;
	width: auto;
}

.header-border {
	width: 1px;
	height: 50px;
	background: rgba(255, 255, 255, .3);
	flex-shrink: 0;
}

.lowermenu {
	flex: 1;
}

.lowerul {
	display: flex;
	align-items: center;
}

.main-navigation {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
}

.main-navigation li {
	margin: 0;
}

.main-navigation a {
	text-decoration: none;
	color: white;
	font-weight: 500;
	transition: opacity .3s;
	font-size: 15px;
	padding: 10px 5px;
}

.main-navigation a:hover {
	opacity: .8;
}

.header-cta-1 {
	flex-shrink: 0;
}

.header-cta-1 a {
	text-decoration: none;
	color: white;
	font-weight: 600;
	transition: opacity .3s;
	text-decoration: underline;
	font-size: 15px;
}

.header-cta-1 a:hover {
	opacity: .8;
}

.header-cta-2 {
	flex-shrink: 0;
}

.header-cta-2 .btn {
	white-space: nowrap;
}

.mobilemen {
	display: none;
	flex-shrink: 0;
}

@media (max-width: 1350px) {
	.main-navigation {
		gap: 15px;
	}
	
	.devq-header {
		gap: 20px;
	}
	
	.main-navigation a {
		font-size: 14px;
	}
	
	.header-cta-1 a {
		font-size: 14px;
	}
	
	.header-cta-2 .btn {
		font-size: 14px;
		padding: 10px 18px;
	}
}

@media (max-width: 1275px) {
	.lowermenu, .header-cta-1, .header-cta-2, .header-border {
		display: none;
	}
	
	.mobilemen {
		display: block;
		margin-left: auto;
	}
	
	.devq-header {
		gap: 15px;
	}
	
	.sticky-header-wrapper {
		background: #7084ab;
	}
	
	.logosection img.mainLogo {
		max-height: 40px;
	}
}

@media (max-width:991px) {
	.flexrcrfooter {
		flex-direction: column;
	}
	
	.rcrleftfoot p {
		text-align: center;
	}
	
	.rcrrightfoot {
		text-align: center;
	}
}

/* ===========================
   SITE FOOTER
=========================== */
.site-footer {
	background-color: var(--primary, #7084ab);
	color: #fff;
	font-size: .9rem;
}

/* --- Footer Main (brand + columns) --- */
.footer-main {
	padding: 50px 0;
}

.footer-main__inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.footer-logo {
	width: 250px;
	max-width: 100%;
	height: auto;
}

.footer-phone-btn {
	display: block;
	width: 250px;
	max-width: 100%;
	text-align: center;
	background-color: var(--secondary, #c5a467);
	color: #fff;
	padding: 10px 22px;
	border-radius: 4px;
	font-weight: 600;
	font-size: .85rem;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .2s ease;
	box-sizing: border-box;
}

.footer-phone-btn:hover {
	background-color: var(--tertiary, #b0944f);
	color: #fff;
}

/* --- Footer Columns --- */
.footer-columns {
	display: contents;
}

.footer-col h4 {
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 14px;
	color: #fff;
}

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

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

.footer-col a {
	color: rgba(255, 255, 255, .75);
	text-decoration: none;
	font-size: .85rem;
	transition: color .2s ease;
}

.footer-col a:hover {
	color: #fff;
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .2);
	padding: 20px 0;
	font-size: .85rem;
	color: #fff;
}

.footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px 20px;
	text-align: center;
}

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

.footer-legal-links {
	display: flex;
	gap: 14px;
}

.footer-legal-links a {
	color: #fff;
	text-decoration: none;
}

.footer-legal-links a:hover {
	text-decoration: underline;
}

.footer-credit {
	color: #fff;
}

.footer-credit a {
	color: #fff;
	text-decoration: none;
}

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

/* --- Footer Form Section --- */
.footer-form-section {
	background: var(--background2);
	padding: 80px 0;
}

.footer-form__inner {
	display: grid;
	grid-template-columns: 38% 58%;
	gap: 4%;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

/* Left column — info */
.footer-form__info {
	display: flex;
	flex-direction: column;
	padding: 30px 0;
}

.footer-form__logo {
	max-width: 220px;
	height: auto;
	margin-bottom: 32px;
}

.footer-form__rule {
	border: none;
	border-top: 1px solid var(--tertiary);
	opacity: .25;
	margin: 0 0 24px;
	width: 100%;
}

.footer-form__address {
	font-style: normal;
	font-size: 18px;
	line-height: 1.5;
	color: var(--primary);
	margin-bottom: 0;
	font-weight: 600;
	max-width: 240px;
}

.footer-form__address a {
	color: var(--primary);
	text-decoration: none;
}

.footer-form__address a:hover {
	color: var(--secondary);
}

a.footer-form__phone {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	margin-top: 20px;
	margin-bottom: 28px;
}

a.footer-form__phone:hover {
	color: var(--primary);
}

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

.footer-form__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--tertiary);
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	transition: background .25s ease;
}

.footer-form__social a:hover {
	background: var(--primary);
}

/* Right column — form card */
.footer-form__form {
	background: #fff;
	border-radius: 8px;
	padding: 36px 40px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
}

.footer-form__header {
	margin-bottom: 20px;
}

.footer-form__header h2 {
	margin: 0 0 6px;
	font-size: 1.75rem;
	color: var(--primary);
	font-weight: 700;
	line-height: 1.2;
}

.footer-form__header p {
	margin: 0;
	color: #888;
	font-size: 14px;
	line-height: 1.5;
}

/* Gravity Forms overrides inside footer form card */
.footer-form__form .gform_wrapper .gform_validation_errors, .footer-form__form .gform_wrapper .gform_required_legend {
	display: none !important;
}

.footer-form__form .gform_wrapper .gform_fields {
	gap: 12px !important;
	row-gap: 12px !important;
}

.footer-form__form .gform_wrapper .gfield {
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	padding-bottom: 0 !important;
	padding-top: 0 !important;
}

.footer-form__form .gform_wrapper input[type="text"], .footer-form__form .gform_wrapper input[type="email"], .footer-form__form .gform_wrapper input[type="tel"], .footer-form__form .gform_wrapper select, .footer-form__form .gform_wrapper textarea {
	border: 1px solid #ddd !important;
	border-radius: 4px !important;
	padding: 12px 14px !important;
	font-size: 14px !important;
	background: #fff !important;
	transition: border-color .2s ease !important;
	height: auto !important;
	line-height: 1.4 !important;
}

.footer-form__form .gform_wrapper input[type="text"]:focus, .footer-form__form .gform_wrapper input[type="email"]:focus, .footer-form__form .gform_wrapper input[type="tel"]:focus, .footer-form__form .gform_wrapper select:focus, .footer-form__form .gform_wrapper textarea:focus {
	border-color: var(--tertiary) !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(112, 132, 171, .1) !important;
}

.footer-form__form .gform_wrapper .gfield_label {
	display: none !important;
}

.footer-form__form .gform_wrapper .gform_footer, .footer-form__form .gform_wrapper .gform_page_footer {
	padding-top: 4px !important;
	margin-top: 4px !important;
}

.footer-form__form .gform_wrapper input[type="submit"] {
	width: 100% !important;
	padding: 13px 32px !important;
	font-size: .85rem !important;
	letter-spacing: .1em !important;
	text-transform: uppercase !important;
	font-weight: 600 !important;
	border-radius: 4px !important;
}

/* Kill extra GF spacing */
.footer-form__form .gform_wrapper .gform_body {
	margin: 0 !important;
	padding: 0 !important;
}

.footer-form__form .gform_wrapper form {
	margin: 0 !important;
}

.footer-form__form .gform_wrapper .gfield_description, .footer-form__form .gform_wrapper .gfield_consent_description {
	display: none !important;
}

@media (max-width: 991px) {
	.footer-form__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-form__info {
		align-items: center;
		text-align: center;
		padding: 0;
	}
	
	.footer-form__rule {
		max-width: 260px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.footer-form__social {
		justify-content: center;
	}
	
	.footer-form__form {
		padding: 28px 24px;
	}
}

@media (max-width: 600px) {
	.footer-form-section {
		padding: 50px 0;
	}
	
	.footer-form__form {
		padding: 24px 20px;
	}
	
	.footer-form__header h2 {
		font-size: 1.4rem;
	}
}

/* --- Footer Logos Section --- */
.footer-logos-section {
	padding: 45px 0;
	background: #fff;
	border-top: 1px solid #eee;
}

.footer-logos__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-logos__item img {
	max-height: 80px;
	width: auto;
	object-fit: contain;
}

@media (max-width: 767px) {
	.footer-logos__inner {
		justify-content: center;
		gap: 24px 32px;
	}
	
	.footer-logos__item img {
		max-height: 55px;
	}
}

/* --- Mobile Footer --- */
@media (max-width: 991px) {
	.footer-main__inner {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
	
	.footer-brand {
		align-items: center;
		grid-column: 1/-1;
	}
	
	.footer-columns {
		display: contents;
	}
}

@media (max-width: 600px) {
	.footer-main__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.footer-bottom__inner {
		flex-direction: column;
		text-align: center;
	}
	
	.footer-legal-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}
}

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

/* Hero */
.faq-hero-bg {
	background: linear-gradient(180deg, rgba(16, 23, 92, .46) 0%, rgba(16, 23, 92, .29) 30.77%, rgba(58, 131, 129, .5) 100%), #7084ab;
	padding: 190px 0 50px;
	margin-top: -150px;
	position: relative;
	z-index: 1;
}

.faq-hero h1 {
	color: #fff;
	font-size: 2.6rem;
	font-weight: 700;
	margin: 0;
}

/* Layout */
.faq-archive {
	padding: 60px 0 80px;
	background: #fff;
}

.faq-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 60px;
	align-items: start;
}

/* Sidebar */
.faq-sidebar {
	position: sticky;
	top: 100px;
}

.faq-sidebar__label {
	display: block;
	font-family: var(--font1);
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: #999;
	margin-bottom: 16px;
	padding-left: 16px;
}

.faq-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-sidebar__list li {
	margin: 0;
}

.faq-sidebar__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 500;
	color: #555;
	text-decoration: none;
	border-left: 3px solid transparent;
	border-radius: 0 6px 6px 0;
	transition: all .2s ease;
}

.faq-sidebar__link:hover {
	color: var(--primary);
	background: var(--background2);
}

.faq-sidebar__link.is-active {
	color: var(--primary);
	font-weight: 600;
	border-left-color: var(--tertiary);
	background: var(--background2);
}

.faq-sidebar__count {
	font-size: 12px;
	font-weight: 600;
	color: #aaa;
	background: #f0f0f0;
	padding: 2px 8px;
	border-radius: 10px;
	line-height: 1.4;
}

.faq-sidebar__link.is-active .faq-sidebar__count {
	background: var(--tertiary);
	color: #fff;
}

/* Category sections */
.faq-category {
	margin-bottom: 50px;
	scroll-margin-top: 100px;
}

.faq-category:last-child {
	margin-bottom: 0;
}

.faq-category__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 20px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--background2);
}

/* FAQ items — accordion */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-item {
	border-bottom: 1px solid #eee;
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 4px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	list-style: none;
	transition: color .2s ease;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__question::marker {
	display: none;
	content: "";
}

.faq-item__question:hover {
	color: var(--primary);
}

.faq-item__icon {
	flex-shrink: 0;
	color: var(--tertiary);
	transition: transform .3s ease;
}

.faq-item[open] .faq-item__icon {
	transform: rotate(180deg);
}

.faq-item[open] .faq-item__question {
	color: var(--primary);
}

.faq-item__answer {
	padding: 0 4px 24px;
	font-size: 15px;
	line-height: 1.7;
	color: #555;
}

.faq-item__answer p {
	margin: 0 0 12px;
}

.faq-item__answer p:last-child {
	margin-bottom: 0;
}

.faq-item__answer a {
	color: var(--secondary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.faq-item__answer ul, .faq-item__answer ol {
	padding-left: 20px;
	margin: 8px 0;
}

/* Mobile */
@media (max-width: 991px) {
	.faq-hero-bg {
		padding: 60px 0 40px;
		margin-top: 0;
	}
	
	.faq-hero h1 {
		font-size: 2rem;
	}
	
	.faq-layout {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.faq-sidebar {
		position: relative;
		top: 0;
		border-bottom: 1px solid #eee;
		padding-bottom: 24px;
		margin-bottom: 40px;
	}
	
	.faq-sidebar__list {
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
	}
	
	.faq-sidebar__link {
		border-left: none;
		border-radius: 20px;
		padding: 6px 14px;
		font-size: 14px;
		background: #f5f5f5;
	}
	
	.faq-sidebar__link.is-active {
		border-left: none;
		background: var(--tertiary);
		color: #fff;
	}
	
	.faq-sidebar__link.is-active .faq-sidebar__count {
		background: rgba(255, 255, 255, .25);
		color: #fff;
	}
	
	.faq-sidebar__label {
		padding-left: 0;
		margin-bottom: 12px;
	}
}

@media (max-width: 600px) {
	.faq-archive {
		padding: 40px 0 60px;
	}
	
	.faq-item__question {
		font-size: 15px;
		padding: 16px 0;
	}
	
	.faq-category__title {
		font-size: 1.3rem;
	}
}

/* ===========================
   GRAVITY FORMS MULTISTEP STYLING
=========================== */

/* Progress bar / step indicator */
.gform_wrapper .gf_progressbar_wrapper {
	margin-bottom: 30px;
}

.gform_wrapper .gf_progressbar {
	background: #e9ecef;
	border-radius: 20px;
	height: 10px;
	overflow: hidden;
}

.gform_wrapper .gf_progressbar_percentage {
	background: #7084ab;
	height: 100%;
	border-radius: 20px;
	transition: width .4s ease;
	text-align: center;
	font-size: 0;
	line-height: 10px;
}

.gform_wrapper .gf_progressbar_title {
	font-weight: 600;
	font-size: .9rem;
	color: #333;
	margin-bottom: 8px;
}

/* Step numbers indicator */
.gform_wrapper .gf_page_steps {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.gform_wrapper .gf_step {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: .85rem;
	color: #999;
	font-weight: 500;
}

.gform_wrapper .gf_step_active {
	color: #7084ab;
	font-weight: 700;
}

.gform_wrapper .gf_step_completed {
	color: #5c6f99;
}

.gform_wrapper .gf_step_number {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #e9ecef;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .8rem;
	font-weight: 700;
}

.gform_wrapper .gf_step_active .gf_step_number {
	background: #7084ab;
	color: #fff;
}

.gform_wrapper .gf_step_completed .gf_step_number {
	background: #5c6f99;
	color: #fff;
}

/* Page footer (next/prev buttons) */
.gform_wrapper .gform_page_footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #e9ecef;
}

.gform_wrapper .gform_page_footer .button, .gform_wrapper .gform_next_button, .gform_wrapper .gform_previous_button, .gform_wrapper input[type="submit"] {
	background-color: var(--tertiary) !important;
	color: #fff !important;
	border: none !important;
	padding: 12px 32px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color .2s ease;
	font-family: var(--font2);
}

.gform_wrapper .gform_next_button:hover, .gform_wrapper input[type="submit"]:hover {
	background-color: var(--secondary) !important;
}

.gform_wrapper .gform_previous_button {
	background-color: transparent;
	color: #7084ab;
	border: 2px solid #7084ab;
}

.gform_wrapper .gform_previous_button:hover {
	background-color: #7084ab;
	color: #fff;
}

/* Form field styling */
.gform_wrapper.gravity-theme input[type="text"], .gform_wrapper.gravity-theme input[type="email"], .gform_wrapper.gravity-theme input[type="tel"], .gform_wrapper.gravity-theme input[type="number"], .gform_wrapper.gravity-theme input[type="url"], .gform_wrapper.gravity-theme textarea, .gform_wrapper.gravity-theme select {
	border: 1px solid #d0d5dd;
	border-radius: 4px;
	padding: 10px 14px;
	font-size: 1rem;
	width: 100%;
	font-family: var(--font2);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.gform_wrapper.gravity-theme input:focus, .gform_wrapper.gravity-theme textarea:focus, .gform_wrapper.gravity-theme select:focus {
	outline: none;
	border-color: #7084ab;
	box-shadow: 0 0 0 3px rgba(112, 132, 171, .2);
}

/* Radio/checkbox styling for multistep */
.gform_wrapper .gchoice {
	margin-bottom: 8px;
}

.gform_wrapper .gfield_radio label, .gform_wrapper .gfield_checkbox label {
	font-weight: 400;
	cursor: pointer;
}

/* Section breaks within steps */
.gform_wrapper .gsection {
	border-bottom: 2px solid #7084ab;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.gform_wrapper .gsection_title {
	font-family: var(--font1);
	font-weight: 700;
	color: var(--primary);
	font-size: 1.3rem;
}

/* Confirmation message */
.gform_wrapper .gform_confirmation_message {
	background: #d4edda;
	color: #155724;
	padding: 20px;
	border-radius: 4px;
	text-align: center;
	font-weight: 500;
}

/* Validation errors */
.gform_wrapper .gfield_error input, .gform_wrapper .gfield_error textarea, .gform_wrapper .gfield_error select {
	border-color: #dc3545;
}

.gform_wrapper .validation_message {
	color: #dc3545;
	font-size: .85rem;
	margin-top: 4px;
}

/* ===========================
   CONTACT PAGE FULLWIDTH MAP
=========================== */
.contact-map-fullwidth {
	width: 100%;
	margin-top: 0;
	line-height: 0;
}

.contact-map-fullwidth iframe {
	display: block;
	width: 100%;
	height: 450px;
	border: 0;
}

/* ===========================
   RIGHT SIDEBAR
=========================== */
.sidebar-right .widget {
	margin-bottom: 30px;
}

.sidebar-right .widget-title {
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: 15px;
	color: var(--primary);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--secondary);
}

.sidebar-reviews {
	margin-bottom: 30px;
}

.categoryblogbox {
	margin-bottom: 30px;
}

.categoryblogbox .listcat ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.categoryblogbox .listcat ul li {
	margin-bottom: 8px;
}

.categoryblogbox .listcat ul li a {
	text-decoration: none;
	color: #333;
	transition: color .2s;
}

.categoryblogbox .listcat ul li a:hover {
	color: var(--primary);
}

/* ===========================
   STICKY MOBILE PHONE CTA
=========================== */
.sticky-phone-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background-color: #c6ae76;
	color: #fff;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 20px 25px;
	font-size: 1.1rem;
	font-weight: 600;
	font-family: var(--font2);
	transition: background-color .2s ease;
}

.sticky-phone-cta:hover {
	background-color: #5c6f99;
	color: #fff;
}

.sticky-phone-cta i {
	font-size: 1rem;
}

@media (max-width: 991px) {
	.sticky-phone-cta {
		display: flex;
	}
	
	.site-footer {
		padding-bottom: 52px;
	}
}
