/* ==========================================================================
   KSM SelectTheme - Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
	--primary: #1874ba;
	--secondary: #2b385b;
	--accent: #444444;
	--light: #ffffff;
	--dark: #000000;
	--contrast: #219a52;
	--font-family: 'Poppins', sans-serif;
	--container-width: 1400px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	font-size: 16px;
	line-height: 1.7;
	color: var(--accent);
	background-color: var(--light);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

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

h1, h2, h3, h4, h5, h6 {
	line-height: 1.3;
	font-weight: 600;
	color: var(--secondary);
}

ul, ol {
	list-style: none;
}

/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */
.select_container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.select_btn {
	display: inline-block;
	padding: 12px 28px;
	font-family: var(--font-family);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	letter-spacing: 0.5px;
}

.select_btn--primary {
	background-color: var(--primary);
	color: var(--light);
	text-align:center;
}

.select_btn--primary:hover {
	background-color: var(--secondary);
	color: var(--light);
}

.select_btn--light {
	background-color: var(--light);
	color: var(--primary);
	font-weight: 700;
}

.select_btn--light:hover {
	background-color: var(--secondary);
	color: var(--light);
}

.select_btn--contrast {
	background-color: var(--contrast);
	color: var(--light);
	font-weight: 700;
}

.select_btn--contrast:hover {
	background-color: var(--light);
	color: var(--dark);
}

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

/* --------------------------------------------------------------------------
   Row 1: Top Utility Bar
   -------------------------------------------------------------------------- */
.select_header-topbar {
	background-color: var(--light);
	border-bottom: 1px solid #e5e5e5;
	padding: 6px 0;
}

.select_topbar-inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.select_utility-menu {
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.select_utility-menu li {
	margin: 0;
}

.select_utility-menu li a {
	display: inline-block;
	padding: 4px 14px;
	font-size: 13px;
	color: var(--accent);
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-left: 6px;
	transition: background-color 0.2s ease, color 0.2s ease;
	text-decoration: none;
}

.select_utility-menu li a:hover {
	background-color: var(--primary);
	color: var(--light);
	border-color: var(--primary);
}

/* --------------------------------------------------------------------------
   Row 2: Phone Bar
   -------------------------------------------------------------------------- */
.select_header-phone-bar {
	background-color: var(--secondary);
	padding: 6px 0;
}

.select_phone-bar-inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.select_phone-bar-link {
	color: var(--light);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.5px;
	transition: color 0.2s ease;
	margin-right:auto;
	margin-left:auto;
}

.select_phone-bar-link:hover {
	color: var(--contrast);
}

/* --------------------------------------------------------------------------
   Row 3: Main Header (Logo + Nav)
   -------------------------------------------------------------------------- */
.select_header-main {
	background-color: var(--primary);
	padding: 0;
}

.select_header-main-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 70px;
}

.select_logo-wrap {
	flex-shrink: 0;
	background-color: #fff;
  padding: 1rem;
}

.select_logo-wrap a {
	display: inline-block;
}

.select_logo-wrap img,
.select_logo-wrap .custom-logo {
	height: 60px;
	width: auto;
	max-width: none;
}

.select_logo-link {
	color: var(--light);
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
}

/* Primary Navigation */
.select_primary-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.select_nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.select_nav-menu > li {
	position: relative;
}

.select_nav-menu > li > a {
	display: block;
	padding: 22px 18px;
	color: var(--light);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.5px;
	transition: background-color 0.2s ease;
	white-space: nowrap;
}

.select_nav-menu > li > a:hover,
.select_nav-menu > li.current-menu-item > a,
.select_nav-menu > li.current-menu-ancestor > a {
	background-color: rgba(0, 0, 0, 0.15);
	color: var(--light);
}

/* Dropdown indicator */
.select_nav-menu > li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid var(--light);
	margin-left: 6px;
	vertical-align: middle;
}

/* Dropdown menus */
.select_nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background-color: var(--light);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	list-style: none;
	margin: 0;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	z-index: 100;
}

.select_nav-menu > li:hover > .sub-menu,
.select_nav-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.select_nav-menu .sub-menu li a {
	display: block;
	padding: 10px 18px;
	color: var(--accent);
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.select_nav-menu .sub-menu li a:hover {
	background-color: var(--primary);
	color: var(--light);
}

.select_nav-menu .sub-menu li:last-child a {
	border-bottom: none;
}

/* Nested sub-menus */
.select_nav-menu .sub-menu .sub-menu {
	top: 0;
	left: 100%;
}

/* --------------------------------------------------------------------------
   Row 3: CTA Bar
   -------------------------------------------------------------------------- */
.select_header-cta-bar {
	background-color: rgba(0, 0, 0, 0.7);
	padding: 10px 0;
}

.select_cta-bar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

/* Animated gradient text */
.top-animate-header {
	text-transform: uppercase;
	background-image: linear-gradient(-225deg, rgb(255, 255, 255) 49%, rgb(188, 136, 24) 67%, rgb(255, 255, 255) 100%);
	background-size: 200%;
	color: rgb(255, 255, 255);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textclip 3s linear infinite;
	display: inline-block;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1px;
	text-decoration: none;
}

@keyframes textclip {
	to {
		background-position: 200% center;
	}
}

.select_cta-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--light);
	font-size: 22px;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.2s ease;
}

.select_cta-phone:hover {
	color: var(--contrast);
}

.select_phone-icon {
	flex-shrink: 0;
}

.select_free-quotes-mobile {
	display: none;
}

/* --------------------------------------------------------------------------
   Hamburger (mobile only)
   -------------------------------------------------------------------------- */
.select_hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 10;
}

.select_hamburger-bar {
	display: block;
	width: 28px;
	height: 3px;
	background-color: var(--light);
	border-radius: 2px;
	transition: transform 0.3s ease;
}

/* No-JS fallback */
.select_noscript-checkbox {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.select_noscript-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.select_noscript-dropdown {
	display: none;
}

.select_noscript-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.select_noscript-menu li a {
	display: block;
	padding: 10px 16px;
	color: var(--light);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   Mobile Panel
   -------------------------------------------------------------------------- */
.select_mobile-panel {
	position: fixed;
	top: 0;
	right: -320px;
	width: 300px;
	height: 100vh;
	background-color: var(--secondary);
	z-index: 10000;
	overflow-y: auto;
	transition: right 0.3s ease;
	padding: 60px 0 20px;
}

.select_mobile-panel.is-open {
	right: 0;
}

.select_mobile-panel-close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	color: var(--light);
	font-size: 32px;
	cursor: pointer;
	line-height: 1;
	padding: 4px;
}

.select_mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.select_mobile-menu li a {
	display: block;
	padding: 12px 24px;
	color: var(--light);
	font-size: 15px;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background-color 0.2s ease;
}

.select_mobile-menu li a:hover {
	background-color: rgba(255, 255, 255, 0.05);
}

.select_mobile-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.select_mobile-menu .sub-menu li a {
	padding-left: 44px;
	font-size: 14px;
}

.select_mobile-contact {
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.select_mobile-phone {
	color: var(--light);
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
}

.select_mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* ==========================================================================
   HERO
   ========================================================================== */
.select_hero {
	position: relative;
	min-height: 650px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: var(--secondary);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.select_hero-breadcrumb-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 12px 0;
	z-index: 5;
}

.select_hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	flex: 1;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 80px 0 40px;
	background-color: #00000096;
}

.select_hero-content .select_container {
	width: 100%;
}

.select_hero-title {
	font-size: clamp(48px, 8vw, 120px);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--light);
	line-height: 1.1;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

/* Support for coloured spans in hero title */
.select_hero-title span.text-primary,
.select_hero-title .hero-blue {
	color: var(--primary);
}

.select_hero-subtitle {
	color: var(--light);
	font-size: 18px;
	font-weight: 300;
	max-width: 700px;
	margin: 0 auto 24px;
	line-height: 1.6;
}

.select_hero-subtitle p {
	margin-bottom: 8px;
}

/* Hero subtitle list styling */
.select_hero-subtitle ul {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px 20px;
	text-align: left;
}

.select_hero-subtitle ul li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 400;
	color: var(--light);
	line-height: 1.4;
}

.select_hero-subtitle ul li::before {
	content: '';
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 12.5l4 4 8-9' stroke='%231874ba' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: 14px 14px;
	background-position: center;
	background-repeat: no-repeat;
}

@media (max-width: 768px) {
	.select_hero-subtitle ul {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Hero review badge */
.select_hero-reviews {
	margin-top: 20px;
}

.select_hero-review-badge {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	background-color: rgba(0, 0, 0, 0.4);
	padding: 16px 24px;
	border-radius: 6px;
}

.select_hero-review-text {
	color: var(--light);
	font-size: 16px;
	font-weight: 500;
}

.select_hero-stars-img {
	width: 200px;
	height: auto;
}

.select_hero-review-link {
	color: var(--contrast);
	font-size: 14px;
	font-weight: 500;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.select_hero-review-link:hover {
	color: var(--light);
}

/* Hero CTA buttons */
.select_hero-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: nowrap;
}

.select_hero-cta-buttons .select_btn {
	flex: 1 1 0;
	text-align: center;
	font-size: clamp(11px, 2.5vw, 14px);
	padding: 10px 16px;
	white-space: nowrap;
}

/* Hero contact form variant — split layout */
.select_hero--with-form .select_hero-content {
	padding: 40px 0;
	text-align: left;
}

.select_hero-split {
	display: flex;
	align-items: center;
	gap: 40px;
}

.select_hero-split-left {
	flex: 1;
	min-width: 0;
}

.select_hero-split-left .select_hero-subtitle {
	margin: 0;
}

.select_hero-split-right {
	flex: 0 0 420px;
	max-width: 420px;
}

.select_hero-form-wrap {
	background-color: rgba(255, 255, 255, 0.95);
	padding: 30px;
	border-radius: 6px;
}

@media (max-width: 900px) {
	.select_hero-split {
		flex-direction: column;
		text-align: center;
	}

	.select_hero-split-left .select_hero-subtitle {
		margin: 0 auto;
	}

	.select_hero-split-right {
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
	}
}

/* --------------------------------------------------------------------------
   Related Pages Grid
   -------------------------------------------------------------------------- */
.select_related-pages {
	padding: 60px 0;
	background-color: var(--grey-light, #f5f5f5);
}

.select_related-pages-heading {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
	color: var(--secondary);
}

.select_related-pages-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.select_related-page-card {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.select_related-page-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	transform: translateY(-4px);
}

.select_related-page-img {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.select_related-page-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.select_related-page-body {
	padding: 0;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.select_related-page-title {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background-color: var(--primary);
	margin: 0;
	line-height: 1.3;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	transition: background-color 0.2s ease;
}

.select_related-page-card:hover .select_related-page-title {
	background-color: var(--secondary);
}

.select_related-page-chevron {
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.select_related-page-card:hover .select_related-page-chevron {
	transform: translateX(3px);
}

@media (max-width: 1024px) {
	.select_related-pages-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

	.select_related-pages {
		padding: 40px 0;
	}

	.select_related-pages-heading {
		font-size: 26px;
		margin-bottom: 24px;
	}
}

/* --------------------------------------------------------------------------
   Hero Service Buttons
   -------------------------------------------------------------------------- */
.select_hero-buttons {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 0 0 30px;
}

.select_hero-buttons-grid {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.select_hero-button {
	display: inline-flex;
	align-items: center;
	background-color: var(--primary);
	color: var(--light);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 20px;
	padding-right: 80px;
	position: relative;
	transition: background-color 0.2s ease;
	min-width: 200px;
	letter-spacing: 0.5px;
}

.select_hero-button:hover {
	background-color: var(--secondary);
	color: var(--light);
}

.select_hero-button::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 80px;
	height: 100%;
	clip-path: polygon(47% 0px, 100% 0px, 100% 100%, 0% 100%);
	background-image: url('../img/arrow-r-b.svg');
	background-size: 30px 30px;
	background-color: rgb(255, 255, 255);
	background-position: 90% 50%;
	background-repeat: no-repeat;
}

/* ==========================================================================
   CALLOUT BOXES
   ========================================================================== */
.select_callouts-section {
	background-color: var(--light);
	padding: 0;
}

.select_callouts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.select_callout-box {
	background-color: var(--primary);
	color: var(--light);
	padding: 28px 24px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.select_callout-box:last-child {
	border-right: none;
}

.select_callout-title {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--light);
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

.select_callout-desc {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.select_callout-box--link {
	display: block;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.select_callout-box--link:hover {
	background-color: var(--secondary);
}

.select_callout-box--link:hover .select_callout-title,
.select_callout-box--link:hover .select_callout-desc {
	color: var(--light);
}

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */
.select_main {
	padding: 0;
}

.select_page-body {
	padding: 40px 0;
}

.select_page-grid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
}

.select_page-grid--full {
	grid-template-columns: 1fr;
}

/* --------------------------------------------------------------------------
   Content Output
   -------------------------------------------------------------------------- */
.content-output {
	line-height: 1.8;
}

.content-output h1 {
	font-size: 2.2rem;
	margin-bottom: 1rem;
	color: var(--secondary);
}

.content-output h2 {
	font-size: 1.8rem;
	margin-bottom: 0.8rem;
	margin-top: 1.5rem;
	color: var(--secondary);
}

.content-output h3 {
	font-size: 1.5rem;
	margin-bottom: 0.6rem;
	margin-top: 1.2rem;
	color: var(--secondary);
}

.content-output h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	margin-top: 1rem;
	color: var(--secondary);
}

.content-output p {
	margin-bottom: 1rem;
}

.content-output a {
	color: var(--primary);
	border-bottom: 1px solid var(--primary);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.content-output a:hover {
	color: var(--secondary);
	border-bottom-color: var(--secondary);
}

.content-output ul,
.content-output ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.content-output ul {
	list-style: disc;
}

.content-output ol {
	list-style: decimal;
}

.content-output ul li,
.content-output ol li {
	margin-bottom: 0.4rem;
}

.content-output img {
	margin: 1rem 0;
	border-radius: 4px;
}

.content-output .alignleft {
	float: left;
	margin: 0 1.5rem 1rem 0;
}

.content-output .alignright {
	float: right;
	margin: 0 0 1rem 1.5rem;
}

.content-output .aligncenter {
	display: block;
	margin: 1rem auto;
}

.content-output .alignnone {
	display: block;
	margin: 1rem 0;
}

.content-output blockquote {
	border-left: 4px solid var(--primary);
	padding: 1rem 1.5rem;
	margin: 1.5rem 0;
	background-color: #f8f9fa;
	font-style: italic;
}

.content-output table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1rem;
}

.content-output table th,
.content-output table td {
	padding: 10px 14px;
	border: 1px solid #ddd;
	text-align: left;
}

.content-output table th {
	background-color: var(--primary);
	color: var(--light);
	font-weight: 600;
}

.content-output table tr:nth-child(even) {
	background-color: #f8f9fa;
}

/* Gallery support */
.content-output .gallery {
	display: grid;
	gap: 10px;
	margin-bottom: 1.5rem;
}

.content-output .gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.content-output .gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.content-output .gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.content-output .gallery-item {
	margin: 0;
}

.content-output .gallery-item img {
	width: 100%;
	height: auto;
	margin: 0;
}

.content-output .gallery-caption {
	font-size: 13px;
	color: #666;
	text-align: center;
	padding: 4px 0;
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.select_sidebar {
	/* Sidebar styles */
}

.select_sidebar-widget {
	margin-bottom: 28px;
}

.c-h3-sidebar {
	text-transform: uppercase;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--secondary);
	border-bottom: 2px solid var(--secondary);
	margin-bottom: 1rem;
	padding-bottom: 8px;
}

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

.select_sidebar-widget ul li {
	margin-bottom: 0;
}

.select_sidebar-widget ul li a {
	display: block;
	padding: 8px 0;
	color: var(--accent);
	text-decoration: none;
	border-bottom: 1px solid #eee;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.select_sidebar-widget ul li a:hover {
	color: var(--primary);
	padding-left: 6px;
}

/* Sidebar gallery */
.select_sidebar-widget .gallery {
	display: grid;
	gap: 6px;
}

.select_sidebar-widget .gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.select_sidebar-widget .gallery-item {
	margin: 0;
}

.select_sidebar-widget .gallery-item img {
	width: 100%;
	height: auto;
	border-radius: 3px;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.select_breadcrumbs {
	padding: 0;
}

.select_breadcrumbs-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
}

.select_breadcrumb-item {
	display: flex;
	align-items: center;
}

.select_breadcrumb-item a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}

.select_breadcrumb-item a:hover {
	color: var(--light);
}

.select_breadcrumb-sep {
	margin: 0 6px;
	color: rgba(255, 255, 255, 0.5);
}

.select_breadcrumb-current span {
	color: var(--light);
	font-weight: 500;
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.select_reviews-section {
	background-color: #f5f5f5;
	padding: 50px 0;
}

.select_reviews-heading {
	font-size: 2rem;
	text-transform: uppercase;
	color: var(--secondary);
	text-align: center;
	margin-bottom: 30px;
	font-weight: 700;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.select_site-footer {
	background-color: var(--accent);
	color: var(--light);
	padding: 50px 0 0;
}

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

.select_footer-col {
	color: var(--light);
}

/* Footer widget titles */
.h-footer {
	color: var(--light);
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 600;
	border-bottom: 2px solid var(--light);
	padding-bottom: 10px;
	margin-bottom: 16px;
}

.select_footer-widget {
	margin-bottom: 20px;
	color: var(--light);
}

.select_footer-widget p,
.select_footer-widget li {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	line-height: 1.7;
}

.select_footer-widget a {
	color: var(--light);
	text-decoration: none;
	transition: color 0.2s ease;
}

.select_footer-widget a:hover {
	color: var(--contrast);
}

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

.select_footer-widget ul li {
	margin-bottom: 6px;
}

.select_footer-widget ul li a {
	display: block;
	padding: 3px 0;
}

/* Footer menu bar */
.select_footer-menu-wrap {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding: 16px 0;
}

.select_footer-menu {
	display: flex;
	justify-content: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.select_footer-menu li a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.select_footer-menu li a:hover {
	color: var(--light);
}

/* Copyright bar */
.select_footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding: 18px 0;
	text-align: center;
}

.select_footer-bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.select_main h1 {
	margin-bottom: 1rem;
}

/* ==========================================================================
   POSTS (Index / Archive)
   ========================================================================== */
.select_post {
	padding: 2rem 0;
	border-bottom: 1px solid #eee;
}

.select_post h2 {
	margin-bottom: 0.5rem;
}

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

.select_post h2 a:hover {
	color: var(--primary);
}

/* ==========================================================================
   STICKY BAR (right side)
   ========================================================================== */
.select_sticky-bar {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 900;
	display: flex;
	flex-direction: column;
	gap: 2px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.select_sticky-bar.is-visible {
	opacity: 1;
	visibility: visible;
}

.select_sticky-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	text-decoration: none;
	color: var(--light);
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background-color 0.2s ease;
	border:0.4px solid #fff;
}

.select_sticky-item svg {
	margin-bottom: 3px;
}

.select_sticky-item--call {
	background-color: #27ae60;
}

.select_sticky-item--call:hover {
	background-color: #219a52;
	color: var(--light);
}

.select_sticky-item--email {
	background-color: var(--primary);
}

.select_sticky-item--email:hover {
	background-color: #1260a0;
	color: var(--light);
}

.select_sticky-item--quote {
	background-color: var(--secondary);
}

.select_sticky-item--quote:hover {
	background-color: #1e2a45;
	color: var(--light);
}

/* ==========================================================================
   RESPONSIVE - TABLET (1024px)
   ========================================================================== */
@media (max-width: 1024px) {

	.select_nav-menu > li > a {
		padding: 18px 12px;
		font-size: 13px;
	}

	.select_hero {
		min-height: 500px;
	}

	.select_hero-title {
		font-size: clamp(40px, 6vw, 80px);
	}

	.top-animate-header {
		font-size: 22px;
	}

	.select_cta-phone {
		font-size: 18px;
	}

	.select_callouts-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.select_callout-box {
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}

	.select_callout-box:nth-child(2) {
		border-right: none;
	}

	.select_page-grid {
		grid-template-columns: 1fr 280px;
		gap: 30px;
	}

	.select_footer-grid {
		gap: 30px;
	}

	.h-footer {
		font-size: 1.6rem;
	}
}

/* ==========================================================================
   RESPONSIVE - MOBILE (768px)
   ========================================================================== */
@media (max-width: 768px) {

	/* Header adjustments */
	.select_header-topbar {
		display: none;
	}

	.select_primary-nav {
		display: none;
	}

	.select_hamburger {
		display: flex;
	}

	.select_header-main-inner {
		min-height: 60px;
	}
.select_logo-wrap img, .select_logo-wrap .custom-logo {
	height:40px;
}

	/* CTA bar */
	.top-animate-header {
		font-size: 16px;
		text-align:center;
	}

	.select_cta-phone {
		display: none;
	}

	.select_cta-bar-inner {
		justify-content: space-between;
		gap: 10px;
	}

	.select_free-quotes-mobile {
		display: inline-block;
		color: var(--light);
		font-size: 13px;
		font-weight: 700;
		text-transform: uppercase;
		text-decoration: none;
		background-color: var(--primary);
		padding: 6px 14px;
		border-radius: 3px;
		display:none;
	}

	/* Hero */
	.select_hero {
		min-height: 400px;
	}

	.select_hero-content {
		text-align: left;
		padding: 60px 0 20px;
	}

	.select_hero-title {
		font-size: clamp(32px, 10vw, 60px);
	}

	.select_hero-subtitle {
		font-size: 15px;
		margin-left: 0;
	}

	.select_hero-reviews {
		text-align: center;
	}

	.select_hero-cta-buttons {
		justify-content: flex-start;
		max-width: 400px;
	}

	/* Hero buttons */
	.select_hero-buttons-grid {
		flex-direction: column;
		align-items: center;
	}

	.select_hero-button {
		width: 100%;
		max-width: 320px;
		justify-content: center;
		text-align: center;
	}

	/* Callouts */
	.select_callouts-grid {
		grid-template-columns: 1fr;
	}

	.select_callout-box {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		text-align: left;
	}

	.select_callout-box:last-child {
		border-bottom: none;
	}

	/* Content grid */
	.select_page-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.select_page-body {
		padding: 30px 0;
	}

	/* Content output */
	.content-output h1 {
		font-size: 1.8rem;
	}

	.content-output h2 {
		font-size: 1.5rem;
	}

	.content-output h3 {
		font-size: 1.3rem;
	}

	.content-output .alignleft,
	.content-output .alignright {
		float: none;
		margin: 1rem 0;
	}

	.content-output .gallery-columns-3,
	.content-output .gallery-columns-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Sidebar */
	.c-h3-sidebar {
		font-size: 1.5rem;
	}

	/* Footer */
	.select_footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.select_footer-menu {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.h-footer {
		font-size: 1.4rem;
	}

	/* Reviews */
	.select_reviews-heading {
		font-size: 1.5rem;
	}
}

/* ==========================================================================
   RESPONSIVE - SMALL MOBILE (480px)
   ========================================================================== */
@media (max-width: 480px) {

	.select_hero {
		min-height: 320px;
	}

	.select_hero-title {
		font-size: clamp(28px, 12vw, 48px);
	}

	.top-animate-header {
		font-size: 13px;
		margin-left: auto;
    margin-right: auto;
	}

	.select_hero-button {
		font-size: 12px;
		padding: 10px 16px;
		padding-right: 60px;
		min-width: 0;
	}

	.select_hero-button::after {
		width: 60px;
		background-size: 22px 22px;
	}

	.content-output .gallery-columns-2,
	.content-output .gallery-columns-3,
	.content-output .gallery-columns-4 {
		grid-template-columns: 1fr;
	}

	.select_sidebar-widget .gallery-columns-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}