/*
	THEME NAME: Rehab Guide (2026 Redesign)
	THEME URI: https://www.rehabguide.co.uk/
	VERSION: 3.0
	AUTHOR: Rehab Guide
	AUTHOR URI: https://www.rehabguide.co.uk/
	DESCRIPTION: 2026 visual redesign - modern, inviting, and professional.
*/

/* ======================================================================
 * Rehab Guide - Consolidated Stylesheet
 * Version: 2.0
 * Last Updated: December 2025
 * ====================================================================== */

/* ======================================================================
 * 1. CSS CUSTOM PROPERTIES (:root)
 * ====================================================================== */
:root {
	/* ===== NEW DESIGN SYSTEM (2025 Refresh) ===== */

	/* Primary Brand Colors - Refined Green */
	--color-primary: #6BBF59;
	--color-primary-light: #E8F5E4;
	--color-primary-dark: #4A9C3D;
	--color-primary-rgb: 107, 191, 89;

	/* Warm Accent - Amber/Orange for key CTAs */
	--color-accent: #F5A962;
	--color-accent-dark: #E8923D;
	--color-accent-light: #FDF4EB;

	/* Secondary - Calming Teal-Blue */
	--color-secondary: #3B82A0;
	--color-secondary-dark: #2D6680;
	--color-secondary-light: #E6F2F7;

	/* Text Colors - Better Contrast */
	--color-text: #374151;
	--color-text-secondary: #6B7280;
	--color-text-dark: #1F2937;
	--color-text-light: #9CA3AF;

	/* Background Colors */
	--color-bg: #ffffff;
	--color-bg-warm: #FAFAF8;
	--color-bg-alt: #F0F7ED;
	--color-bg-light: #F9FAFB;

	/* Footer/Dark UI */
	--color-dark: #1F3A3D;
	--color-dark-lighter: #2A4A4E;

	/* Borders */
	--color-border: #E5E7EB;
	--color-border-light: #F3F4F6;

	/* Grey Scale */
	--grey-50: #F9FAFB;
	--grey-100: #F3F4F6;
	--grey-200: #E5E7EB;
	--grey-300: #D1D5DB;
	--grey-400: #9CA3AF;
	--grey-500: #6B7280;
	--grey-600: #4B5563;
	--grey-700: #374151;
	--grey-800: #1F2937;
	--grey-900: #111827;

	/* Legacy aliases (for backward compatibility) */
	--primary-color: #6BBF59;
	--secondary-color: #3B82A0;
	--dark-bg: #1F3A3D;
	--dark-text: #1F2937;
	--body-text: #374151;
	--light-bg: #FAFAF8;
	--white-color: #ffffff;
	--black-color: #000000;
	--border-color: #E5E7EB;
	--blue: #3B82A0;
	--blue-dark: #2D6680;
	--green: #6BBF59;
	--green-dark: #4A9C3D;

	/* ===== TYPOGRAPHY ===== */
	--font-primary: 'Inter', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-size-base: 18px;
	--font-size-sm: 16px;
	--font-size-lg: 20px;
	--font-size-xl: 24px;

	/* Line Heights */
	--leading-tight: 1.25;
	--leading-normal: 1.6;
	--leading-relaxed: 1.75;

	/* ===== SPACING SYSTEM ===== */
	--space-xs: 4px;
	--space-sm: 8px;
	--space-md: 16px;
	--space-lg: 24px;
	--space-xl: 32px;
	--space-2xl: 48px;
	--space-3xl: 64px;
	--space-4xl: 96px;

	/* Section Padding */
	--section-py: 80px;
	--section-py-mobile: 48px;

	/* ===== BORDER RADIUS ===== */
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;
	/* Legacy */
	--radius-s: 6px;
	--radius-m: 12px;
	--radius-pill: 9999px;

	/* ===== SHADOWS ===== */
	--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
	--shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.16);
	--shadow-primary: 0 4px 14px rgba(107, 191, 89, 0.25);
	--shadow-accent: 0 4px 14px rgba(245, 169, 98, 0.25);
	/* Legacy */
	--shadow-s: 0 2px 8px rgba(0, 0, 0, 0.06);
	--shadow-m: 0 4px 20px rgba(0, 0, 0, 0.08);

	/* ===== TRANSITIONS ===== */
	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;
	--transition-slow: 350ms ease;
	/* Legacy */
	--transition: all 0.25s ease;

	/* ===== Z-INDEX SCALE ===== */
	--z-negative: -1;
	--z-base: 1;
	--z-focus: 3;
	--z-carousel-caption: 30;
	--z-header: 90;
	--z-dropdown: 110;
	--z-overlay: 200;
	--z-offcanvas: 210;
	--z-tooltip: 220;
	--z-modal-backdrop: 1000;
	--z-modal: 1010;
	--z-fab: 1100;

	/* ===== BREAKPOINTS ===== */
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
}

/* ======================================================================
 * 2. RESET & BASE STYLES
 * ====================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-family: var(--font-primary);
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	font-weight: 400;
	line-height: var(--leading-normal);
	color: var(--color-text);
	text-align: left;
	background-color: var(--color-bg-warm);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

article, aside, footer, header, main, nav, section {
	display: block;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border-style: none;
}

img:not([loading]) {
	loading: lazy;
}

iframe {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--color-secondary);
	text-decoration: none;
	background-color: transparent;
	transition: color var(--transition-base);
}

a:hover,
a:focus {
	color: var(--color-secondary-dark);
	outline: none;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 2px solid var(--color-secondary);
	outline-offset: 2px;
}

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

button, input, textarea, select {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	outline: none;
}

button {
	cursor: pointer;
	border: none;
	background: transparent;
}

::selection {
	background: #444;
	color: var(--white-color);
	text-shadow: none;
}

/* ======================================================================
 * 3. TYPOGRAPHY
 * ====================================================================== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	color: var(--color-text-dark);
	margin-top: 0;
	margin-bottom: 0.75rem;
	font-family: var(--font-primary);
	font-weight: 700;
	line-height: var(--leading-tight);
	letter-spacing: -0.02em;
}

h1, .h1 { font-size: 56px; }
h2, .h2 { font-size: 40px; }
h3, .h3 { font-size: 28px; }
h4, .h4 { font-size: 22px; }
h5, .h5 { font-size: 18px; }
h6, .h6 { font-size: 16px; }

p {
	font-size: var(--font-size-base);
	font-weight: 400;
	line-height: var(--leading-relaxed);
	margin-top: 0;
	margin-bottom: var(--space-md);
	overflow-wrap: break-word;
	color: var(--color-text);
}

.lead {
	font-size: 1.25rem;
	font-weight: 300;
}

.display-1 { font-size: 6rem; font-weight: 300; line-height: 1.2; }
.display-2 { font-size: 5.5rem; font-weight: 300; line-height: 1.2; }
.display-3 { font-size: 4.5rem; font-weight: 300; line-height: 1.2; }
.display-4 { font-size: 3.5rem; font-weight: 300; line-height: 1.2; }

/* ======================================================================
 * 4. LAYOUT & GRID (Bootstrap essentials)
 * ====================================================================== */
.container,
.container-fluid {
	width: 100%;
	max-width: 1200px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (max-width: 1280px) {
	.container {
		max-width: 95%;
	}
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto,
.col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto,
.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.col { flex-basis: 0; flex-grow: 1; max-width: 100%; }
.col-auto { flex: 0 0 auto; width: auto; max-width: none; }
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 768px) {
	.col-sm { flex-basis: 0; flex-grow: 1; max-width: 100%; }
	.col-sm-auto { flex: 0 0 auto; width: auto; max-width: none; }
	.col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-sm-3 { flex: 0 0 25%; max-width: 25%; }
	.col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-sm-6 { flex: 0 0 50%; max-width: 50%; }
	.col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-sm-9 { flex: 0 0 75%; max-width: 75%; }
	.col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-sm-12 { flex: 0 0 100%; max-width: 100%; }

	.col-md { flex-basis: 0; flex-grow: 1; max-width: 100%; }
	.col-md-auto { flex: 0 0 auto; width: auto; max-width: none; }
	.col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-md-3 { flex: 0 0 25%; max-width: 25%; }
	.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-md-6 { flex: 0 0 50%; max-width: 50%; }
	.col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-md-9 { flex: 0 0 75%; max-width: 75%; }
	.col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
	.col-lg { flex-basis: 0; flex-grow: 1; max-width: 100%; }
	.col-lg-auto { flex: 0 0 auto; width: auto; max-width: none; }
	.col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
	.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
	.col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-lg-9 { flex: 0 0 75%; max-width: 75%; }
	.col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
	.col-xl { flex-basis: 0; flex-grow: 1; max-width: 100%; }
	.col-xl-auto { flex: 0 0 auto; width: auto; max-width: none; }
	.col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-xl-3 { flex: 0 0 25%; max-width: 25%; }
	.col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-xl-6 { flex: 0 0 50%; max-width: 50%; }
	.col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-xl-9 { flex: 0 0 75%; max-width: 75%; }
	.col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* ======================================================================
 * 5. UTILITY CLASSES
 * ====================================================================== */
.f-left { float: left; }
.f-right { float: right; }
.fix { overflow: hidden; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

.float-left { float: left !important; }
.float-right { float: right !important; }

.font-weight-bold { font-weight: 700 !important; }
.font-weight-normal { font-weight: 400 !important; }
.font-weight-light { font-weight: 300 !important; }

.position-static { position: static !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

.list-inline {
	padding-left: 0;
	list-style: none;
}
.list-inline-item {
	display: inline-block;
}
.list-inline-item:not(:last-child) {
	margin-right: .5rem;
}

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

/* Performance optimization classes */
.top-bar,
.main-nav,
.slider-area,
.breadcrumb-area,
footer.element-ll,
aside.widget,
.article-grid,
.accordion-frontpage {
	contain: layout style;
}

.article-card,
.slider-text .btn-primary,
.header-button-mobile,
.header-button-desktop,
.contact-link,
.phone-link {
	will-change: transform;
}

/* ======================================================================
 * 6. HEADER & TOP BAR
 * ====================================================================== */
header {
	width: 100%;
	background: var(--white-color);
	transition: 0.6s;
	z-index: var(--z-header);
}

header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 3px 6px rgba(0,0,0,0.10);
}

.header-top-area {
	padding: 32px 0;
	transition-duration: 0.6s;
}

.header-top-wrapper {
	display: flex;
	align-items: center;
	gap: 74px;
	margin-left: 50px;
}

.header-top-content {
	display: flex;
	align-items: center;
	gap: 14px;
}

.header-info span {
	color: var(--dark-text);
	display: block;
	font-size: 14px;
}

.rehab-logo {
	min-height: 72.56px;
	min-width: 170px;
}

/* Top Bar */
.top-bar {
	background: #fff;
	border-bottom: 1px solid #e5e5e5;
	padding: 18px 0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.top-bar-inner {
	display: flex;
	align-items: center;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.site-logo {
	flex: 0 0 auto;
}

.site-logo img {
	display: block;
	width: auto;
	height: 60px;
}

.site-tagline {
	font-size: 15px;
	font-weight: 600;
	color: var(--color-primary-dark);
	margin-right: auto;
	padding-left: var(--space-md);
}

/* Contact & Phone Links */
.contact-link,
.phone-link {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	text-decoration: none;
	color: var(--color-text);
	font-weight: 500;
	transition: all var(--transition-base);
}

.contact-link:hover,
.phone-link:hover {
	color: var(--color-primary-dark);
	text-decoration: none;
}

.contact-link svg,
.phone-link svg {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	background: var(--color-primary-light);
	padding: var(--space-sm);
	border-radius: var(--radius-full);
	box-sizing: content-box;
	transition: all var(--transition-base);
}

.phone-link {
	font-weight: 600;
	font-size: var(--font-size-base);
	color: var(--color-primary-dark);
}

.phone-link svg {
	width: 26px;
	height: 26px;
	min-width: 26px;
	min-height: 26px;
	stroke: var(--color-primary-dark);
	padding: var(--space-sm);
}

.phone-link:hover {
	color: var(--color-primary);
}

.phone-link:hover svg {
	stroke: var(--color-primary);
	background: var(--color-primary);
	stroke: #fff;
}

.contact-link:hover svg {
	background: var(--color-primary);
	stroke: #fff;
}

.top-search {
	flex-shrink: 0;
}

/* ======================================================================
 * 7. NAVIGATION & MEGA MENU
 * ====================================================================== */
.navigation {
	position: relative;
}

.nav-menu > li {
	display: inline-block;
	position: relative;
}

.nav-menu > li > a {
	display: block;
	padding: 48px 8px;
	font-size: 14px;
	color: var(--dark-bg);
	font-weight: bold;
	text-transform: uppercase;
	transition: color 0.3s;
}

.nav-menu > li:hover > a,
.nav-menu > li.active > a {
	color: var(--primary-color);
}

/* Sub-menu Dropdown */
.nav-dropdown {
	min-width: 220px;
	position: absolute;
	top: 120%;
	left: 0;
	background: var(--white-color);
	border-top: 3px solid var(--primary-color);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-fast);
	z-index: var(--z-dropdown);
}

.nav-menu > li:hover > .nav-dropdown {
	opacity: 1;
	visibility: visible;
	top: 100%;
}

.nav-dropdown > li > a {
	display: block;
	padding: 13px 20px;
	font-size: 14px;
	color: var(--body-text);
	text-transform: capitalize;
	transition: var(--transition-fast);
}

.nav-dropdown > li:hover > a {
	background: var(--primary-color);
	color: var(--white-color);
	padding-left: 30px;
}

/* Mobile Navigation Toggle */
.nav-toggle {
	display: none;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.nav-toggle:before {
	content: "";
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: #70798b;
	border-radius: 10px;
	box-shadow: 0 0.5em 0 0 #70798b, 0 1em 0 0 #70798b;
}

.nav-menus-wrapper {
	transition: left 0.8s ease, right 0.8s ease;
}

/* Main Nav */
.main-nav {
	position: relative;
	top: 0;
	z-index: 90;
	background: #fff;
	border-bottom: 1px solid #e5e5e5;
	box-shadow: 0 2px 8px rgba(0,0,0,.08);
	font-size: 16px;
	font-weight: 600;
}

.nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 2rem;
}

.menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	list-style: none;
	gap: 2.25rem;
	margin: 0;
	padding: 0;
}

.menu > li {
	position: relative;
	padding-right: 0;
}

.menu > li > a {
	display: block;
	padding: 14px 0;
	color: #222;
	text-decoration: none;
	white-space: normal;
	line-height: 1.25;
}

.menu > li:hover > a,
.menu > li > a:focus {
	color: var(--green-dark);
}

/* Dropdown menus */
.menu li ul,
.menu li .sub-menu {
	min-width: 240px;
	padding: 4px 0;
	margin: 0;
	list-style: none;
	position: absolute;
	left: 0;
	top: 100%;
	background: #fff;
	border: 1px solid var(--green-dark);
	border-top: 3px solid var(--green-dark);
	box-shadow: 0 8px 20px rgba(0,0,0,.06);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: all .15s ease;
	z-index: 110;
}

.menu li:hover > ul,
.menu li:focus-within > ul,
.menu li:hover > .sub-menu,
.menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.menu li ul li,
.menu li .sub-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu li ul li a,
.menu li .sub-menu li a {
	display: block;
	padding: 8px 16px;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
	line-height: 1.4;
	min-height: auto;
	height: auto;
}

.menu li ul li a:hover,
.menu li ul li a:focus,
.menu li .sub-menu li a:hover,
.menu li .sub-menu li a:focus {
	background: var(--grey-100);
	color: var(--green-dark);
}

.menu-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
}

.menu-toggle .bar {
	width: 24px;
	height: 2px;
	background: #333;
}

/* Mega Menu Overrides */
li[class*="mega-menu-item"] > a,
.mega-menu-item > a,
.mega-menu-item a.mega-menu-link {
	padding: 6px 14px !important;
	line-height: 1.6 !important;
	min-height: 0 !important;
	height: auto !important;
	margin: 0 !important;
	display: block !important;
}

li[class*="mega-menu-item"],
.mega-menu-item {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.mega-menu-wrap,
.mega-sub-menu,
ul[class*="mega-sub-menu"] {
	padding: 2px 0 !important;
}

li[class*="mega-menu-item"] > a:hover,
.mega-menu-item > a:hover {
	padding: 6px 14px !important;
	background: #f5f5f5 !important;
}

/* Search Box */
.nav-search {
	margin-left: 2.5rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.rehab-search {
	display: flex;
	align-items: center;
}

.rehab-search__input,
.nav-search .search-field {
	width: 220px;
	padding: .5rem .75rem;
	font-size: 1rem;
	border: 2px solid var(--blue);
	border-right: 0;
	border-radius: 4px 0 0 4px;
}

.rehab-search__input:focus,
.nav-search .search-field:focus {
	border-color: #005177;
	box-shadow: 0 0 0 3px rgba(0,115,170,.25);
	outline: 0;
}

.nav-search .search-submit {
	position: static;
	margin: 0;
	padding: 0 14px;
	height: 42px;
	border: 2px solid var(--blue);
	border-left: 0;
	border-radius: 0 4px 4px 0;
	background: var(--blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 0;
}

.nav-search .search-submit::before {
	content: "\f179";
	font-family: "dashicons";
	font-size: 18px;
	line-height: 1;
	color: #fff;
}

.nav-search .search-submit:hover,
.nav-search .search-submit:focus {
	background: var(--blue-dark);
}

.relevanssi-live-search-results {
	width: 360px !important;
	min-width: 260px;
}

/* ======================================================================
 * 8. HERO/SLIDER AREA - 2025 Redesign
 * ====================================================================== */
.slider-area {
	position: relative;
	min-height: 520px;
	margin: 0;
	padding: 0;
}

.slider-area .slick-slide {
	position: relative;
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	background-size: cover;
	background-position: center;
	z-index: var(--z-base);
}

.slider-area .slick-slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(31, 58, 61, 0.75) 0%, rgba(0, 0, 0, 0.4) 100%);
	z-index: var(--z-negative);
}

.slider-wrapper {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	padding: 80px 0;
}

.slider-wrapper.bg-opacity::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(31, 58, 61, 0.7) 0%, rgba(0, 0, 0, 0.35) 100%);
	z-index: 1;
}

.slider-wrapper .container {
	position: relative;
	z-index: 10;
	padding: 0 15px;
}

.slider-text {
	position: relative;
	z-index: 10;
	text-align: left;
	color: #ffffff;
	margin: 0;
	max-width: 680px;
}

.slider-text-h1 {
	font-size: clamp(36px, 5vw, 56px);
	line-height: var(--leading-tight);
	margin-bottom: var(--space-lg);
	color: #ffffff;
	font-weight: 700;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.02em;
}

/* Hero subtitle/tagline */
.slider-text p,
.slider-text .hero-subtitle {
	font-size: var(--font-size-lg);
	line-height: var(--leading-relaxed);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: var(--space-xl);
	max-width: 540px;
}

/* Hero Buttons - 2025 Redesign */
.slider-text .btn-primary {
	padding: 16px 32px;
	font-size: var(--font-size-base);
	font-weight: 600;
	background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
	color: #fff;
	border: 2px solid var(--color-accent);
	border-radius: var(--radius-md);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	margin: 0 var(--space-md) var(--space-md) 0;
	transition: all var(--transition-base);
	box-shadow: var(--shadow-accent);
}

.slider-text .btn-primary:hover {
	background: linear-gradient(135deg, var(--color-accent-dark) 0%, #D67D2A 100%);
	border-color: var(--color-accent-dark);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(245, 169, 98, 0.4);
	color: #fff;
}

.slider-text .btn-primary::before,
.slider-text .btn-primary::after {
	display: none;
}

/* Secondary hero button (phone/contact) */
.header-button-mobile,
.header-button-desktop {
	padding: 14px 28px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: var(--radius-md);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	margin: 0 var(--space-md) var(--space-md) 0;
	transition: all var(--transition-base);
	box-shadow: var(--shadow-md);
	font-weight: 600;
	font-size: var(--font-size-base);
}

.header-button-mobile b,
.header-button-desktop b {
	color: #fff;
	font-size: 1.1em;
}

.header-button-mobile:hover,
.header-button-desktop:hover {
	background: #fff;
	border-color: #fff;
	color: var(--color-primary-dark);
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

.header-button-mobile:hover b,
.header-button-desktop:hover b {
	color: var(--color-primary-dark);
}

.header-button-mobile::before,
.header-button-mobile::after,
.header-button-desktop::before,
.header-button-desktop::after {
	display: none;
}

.slider-text a:nth-of-type(3) {
	display: none;
}

/* Slider Arrows */
.slider-active .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(4px);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-md);
	width: 50px;
	height: 50px;
	font-size: 18px;
	transition: all var(--transition-base);
}

.slider-active .slick-arrow:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.slider-active .slick-prev { left: 20px; }
.slider-active .slick-next { right: 20px; }

/* CTA Buttons spacing */
.slider-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: var(--space-md);
	margin-top: var(--space-xl);
	margin-bottom: 0;
}

.slider-cta-buttons .btn-primary {
	padding: 16px 32px;
	font-size: var(--font-size-base);
	background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
	color: #fff;
	border: 2px solid var(--color-accent);
	border-radius: var(--radius-md);
	font-weight: 600;
	margin: 0;
}

.slider-cta-buttons .btn-primary::before,
.slider-cta-buttons .btn-primary::after {
	display: none;
}

.slider-cta-buttons .btn-primary:hover {
	background: #7ac142;
	border-color: #7ac142;
	transform: translateY(-4px);
	color: #fff;
}

/* Hero background images */
.page-template-home .slider-wrapper {
	background-image: url(/wp-content/uploads/2020/10/home-banner-mobile.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.quote-bg {
	background-image: url(/wp-content/uploads/2020/10/slide1-mobile.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (min-width: 415px) {
	.page-template-home .slider-wrapper {
		background-image: url(/wp-content/uploads/2020/10/home-banner.jpg);
	}

	.quote-bg {
		background-image: url(/wp-content/uploads/2020/10/quote-desktop.jpg);
	}

	.side-bar,
	.mobile-element-ll {
		content-visibility: unset;
	}
}

/* ======================================================================
 * 9. BREADCRUMBS
 * ====================================================================== */
.breadcrumb-area {
	position: relative;
	width: 100%;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0 40px;
	border-bottom: 3px solid var(--primary-color);
	text-align: center;
	color: var(--white-color);
	overflow: hidden;
}

.breadcrumb-bg-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.breadcrumb-picture {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: var(--z-negative);
}

.breadcrumb-picture::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
}

.breadcrumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.breadcrumb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	z-index: 1;
}

.breadcrumb-area .container {
	position: relative;
	z-index: 10;
}

.breadcrumb-text {
	color: #ffffff;
	text-align: center;
	margin-bottom: 15px;
	font-size: 42px;
	font-weight: 600;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
	line-height: 1.3;
	text-transform: uppercase;
}

.breadcrumb-menu {
	margin-bottom: 30px;
}

.breadcrumb-menu-sub {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	background: transparent;
}

.breadcrumb-menu-sub li {
	color: #ffffff;
	font-size: 15px;
	display: flex;
	align-items: center;
}

.breadcrumb-menu-sub li:not(:last-child)::after {
	content: "›";
	margin-left: 10px;
	color: #99E064;
	font-size: 18px;
}

.breadcrumb-menu-sub a {
	color: #99E064;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-menu-sub a:hover {
	color: #7ac142;
	text-decoration: underline;
}

.breadcrumb-area .inquery {
	margin-top: 10px;
	text-align: center;
}

.breadcrumb-area-inquery-h2 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.inquery a,
.inquery .call_us {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	background: #99E064;
	color: #ffffff;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(153, 224, 100, 0.3);
}

.inquery a:hover,
.inquery .call_us:hover {
	background: #7ac142;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(122, 193, 66, 0.4);
}

.inquery .icon-phone {
	font-size: 18px;
}

.breadcrumb-area .call_us {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--green);
}

.breadcrumb-area .icon-phone {
	font-size: 2rem;
	color: var(--green);
}

.breadcrumb-area .shadowed {
	font-size: 1.6rem;
	color: #222;
	font-weight: bold;
	letter-spacing: .03em;
}

/* Breadcrumb generic styles */
.breadcrumb,
.breadcrumbs,
.navxt {
	background: var(--grey-100);
	padding: 10px 0;
	margin-bottom: 25px;
	font-size: .95rem;
	line-height: 1.4;
}

.breadcrumb a,
.breadcrumbs a,
.navxt a {
	color: var(--blue);
}

.breadcrumb a:hover {
	text-decoration: underline;
}

/* ======================================================================
 * 10. HOMEPAGE SECTIONS - 2025 Redesign
 * ====================================================================== */

/* County Selector Bar */
.rg-county-bar {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	padding: var(--space-lg) 0;
	margin: 0;
	box-shadow: var(--shadow-md);
	display: flex;
	justify-content: center;
	align-items: center;
}

.rg-county-bar .container {
	max-width: 100%;
	padding: 0;
}

.rg-county-bar .d-flex {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--space-md);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--space-lg);
	flex-wrap: wrap;
}

.rg-county-label {
	font-size: var(--font-size-lg);
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	margin: 0;
}

.rg-county-select {
	width: auto;
	max-width: 320px;
	min-width: 260px;
	padding: 14px 48px 14px 20px;
	font-size: var(--font-size-base);
	font-weight: 500;
	line-height: 1.3;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-md);
	appearance: none;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg fill='%234A9C3D' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' height='20' width='20'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 20px;
	cursor: pointer;
	transition: all var(--transition-base);
	box-shadow: var(--shadow-sm);
	color: var(--color-text);
	margin: 0;
}

.rg-county-select:hover {
	border-color: #fff;
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.rg-county-select:focus {
	outline: none;
	border-color: #fff;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* Section spacing */
.rg-county-bar + * {
	margin-top: 0;
}

.slider-area + * {
	margin-top: 0;
	padding-top: var(--space-3xl);
}

.welcome.ptb-60 {
	padding-top: var(--space-2xl);
	margin-top: 0;
	padding-bottom: var(--section-py);
}

.section-title.text-center.mb-50,
.welcome .section-title {
	margin-top: 0;
	margin-bottom: var(--space-2xl);
	padding-top: 0;
}

.welcome .container {
	padding-top: 0;
}

/* Section Titles */
.section-title h1 {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 0;
	color: var(--color-text-dark);
}

/* Homepage section spacing */
.page-template-home section,
.page-template-home .content-section {
	padding: var(--section-py) 0;
	margin: 0;
}

.page-template-home section:nth-of-type(even) {
	background: var(--color-bg-warm);
}

.page-template-home section:nth-of-type(odd) {
	background: #fff;
}

/* Green-tinted alternating section */
.page-template-home section:nth-of-type(3n) {
	background: var(--color-bg-alt);
}

.page-template-home .green-section,
.page-template-home [style*="background"] {
	background: inherit;
}

.page-template-home .green-section {
	padding: var(--space-2xl) 0;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

/* Typography improvements for homepage */
.page-template-home h2 {
	font-size: clamp(28px, 4vw, 40px);
	line-height: var(--leading-tight);
	margin-bottom: var(--space-xl);
	color: var(--color-text-dark);
	text-align: center;
	letter-spacing: -0.02em;
}

/* Section title with decorative underline */
.page-template-home h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
	margin: var(--space-md) auto 0;
	border-radius: var(--radius-full);
}

.page-template-home h3 {
	font-size: var(--font-size-xl);
	line-height: var(--leading-tight);
	margin-bottom: var(--space-lg);
	color: var(--color-text-dark);
}

.page-template-home .row {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.page-template-home p,
.page-template-home li {
	font-size: var(--font-size-base);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-md);
	color: var(--color-text);
}

.page-template-home .col-md-6,
.page-template-home .col-lg-6 {
	margin-bottom: var(--space-xl);
}

/* Green boxes - Updated */
.page-template-home .green-box {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	padding: var(--space-xl);
	border-radius: var(--radius-lg);
	margin-bottom: var(--space-lg);
	height: 100%;
	box-shadow: var(--shadow-primary);
}

.page-template-home .green-box h3,
.page-template-home .green-box h2 {
	color: #ffffff;
	margin-bottom: var(--space-md);
}

.page-template-home .green-box h2::after {
	background: rgba(255, 255, 255, 0.5);
	margin: var(--space-md) 0 0;
}

.page-template-home .green-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.page-template-home .green-box li {
	color: #ffffff;
	padding-left: var(--space-xl);
	position: relative;
	margin-bottom: var(--space-sm);
}

.page-template-home .green-box li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #ffffff;
	font-weight: bold;
}

.page-template-home .main-content-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto var(--space-2xl);
}

.page-template-home img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	margin-bottom: var(--space-lg);
	box-shadow: var(--shadow-sm);
}

/* CTA sections */
.page-template-home .cta-section {
	background: #99E064;
	padding: 50px 30px;
	text-align: center;
	border-radius: 12px;
	margin: 40px 0;
}

.page-template-home .cta-section h2,
.page-template-home .cta-section h3 {
	color: #ffffff;
}

.page-template-home .cta-section .btn {
	background: #ffffff;
	color: #99E064;
	border: none;
	padding: 15px 40px;
	font-size: 18px;
	font-weight: 700;
	border-radius: 50px;
	margin-top: 20px;
}

.page-template-home .cta-section .btn:hover {
	background: #f0f0f0;
	transform: translateY(-3px);
}

/* Cards/Boxes */
.page-template-home .card,
.page-template-home .service-box {
	height: 100%;
	padding: 25px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
}

.page-template-home .card:hover,
.page-template-home .service-box:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.page-template-home .image-card {
	text-align: center;
	margin-bottom: 30px;
}

.page-template-home .image-card img {
	margin-bottom: 15px;
}

.page-template-home .image-card h3 {
	font-size: 20px;
	color: #99E064;
}

/* Helpline section */
.page-template-home .helpline-section {
	background: linear-gradient(135deg, #99E064 0%, #7ac142 100%);
	padding: 50px 30px;
	text-align: center;
	color: #ffffff;
	border-radius: 12px;
	margin: 40px 0;
}

.page-template-home .helpline-section h2 {
	color: #ffffff;
	font-size: 32px;
}

.page-template-home .helpline-section h3 {
	color: #ffffff;
	font-size: 26px;
}

/* ======================================================================
 * 11. CONTENT & ARTICLES
 * ====================================================================== */

/* Single Post Hero */
.single-post .slider-area {
	min-height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

.single-post .slider-area::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.55);
	z-index: 1;
}

.single-post .slider-area * {
	position: relative;
	z-index: 2;
}

.single-post .slider-area h1 {
	font-size: clamp(1.8rem,4vw,2.6rem);
	line-height: 1.25;
	margin-bottom: .5rem;
}

.single-post .slider-area .subhead {
	font-size: 1.125rem;
	color: #fff;
	opacity: .9;
}

.single-post .entry-header {
	display: none;
}

.single-post article {
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: .02em;
}

.single-post article h2,
.single-post article h3 {
	margin: 2.2rem 0 1rem;
	line-height: 1.35;
}

/* Blog Meta */
.blog-meta {
	margin: 1rem 0 2rem;
	gap: .75rem;
}

.blog-meta a,
.blog-meta span {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
}

/* Author Box */
.author-box {
	display: flex;
	gap: 1.25rem;
	padding: 1.5rem;
	background: #fafafa;
	border: 1px solid var(--grey-300);
	border-radius: var(--radius-m);
}

.author-box img {
	border-radius: 50%;
}

.author-box h4 {
	margin: .25rem 0 .35rem;
	font-size: 1.1rem;
}

.author-accordion {
	display: none;
}

/* Blog posts */
.blog-posts .post {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e5e5e5;
}

.blog-posts .post:last-child {
	border-bottom: none;
}

.post-thumbnail {
	margin-bottom: 1.5rem;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.post-title {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.post-title a {
	color: inherit;
	text-decoration: none;
}

.post-title a:hover {
	color: #007bff;
}

.post-meta {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 1rem;
}

.post-meta > * {
	margin-right: 1rem;
}

.post-meta i {
	margin-right: 0.25rem;
}

.post-content {
	line-height: 1.8;
}

.post-tags {
	margin-top: 1rem;
	font-size: 0.9rem;
}

.post-tags i {
	margin-right: 0.5rem;
}

/* Blog thumb */
.blog-thumb {
	margin: 0 0 20px;
	aspect-ratio: 16/9;
	background: #f5f5f5;
	overflow: hidden;
}

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

/* ======================================================================
 * 12. SIDEBARS & WIDGETS
 * ====================================================================== */
aside.widget {
	margin-bottom: 2.5rem;
}

.widget-title {
	margin-bottom: 1rem;
	border-bottom: 2px solid var(--green);
	padding-bottom: .4rem;
}

.widget_rpwe_widget ul.rpwe-ul li,
.widget_recent_entries li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	list-style: none;
	margin: 0 0 24px;
}

.widget_rpwe_widget ul.rpwe-ul li img,
.widget_recent_entries li img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: var(--radius-s);
	flex: 0 0 70px;
}

.widget_recent_entries li img {
	width: 60px;
	height: 60px;
	flex: 0 0 60px;
}

.widget_rpwe_widget ul.rpwe-ul li a,
.widget_recent_entries li a {
	line-height: 1.35;
}

.recent-posts.grid li {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-template-rows: auto auto;
	column-gap: 12px;
	margin: 0 0 24px;
	list-style: none;
}

.recent-posts.grid li img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: var(--radius-s);
	grid-row: 1/span 2;
}

.recent-posts.grid li a {
	grid-column: 2;
	grid-row: 1;
	display: block;
	word-break: break-word;
}

.recent-posts.grid li time {
	grid-column: 2;
	grid-row: 2;
	font-size: .9em;
	color: #555;
	margin-top: 2px;
}

.recent-posts.grid li:not(:has(img)) {
	grid-template-columns: 1fr;
}

.recent-posts.sidebar li,
.recent-posts li {
	list-style: none;
	margin: 0 0 28px;
}

.recent-posts.sidebar li > a,
.recent-posts li > a {
	display: block;
	width: 75%;
	text-align: left;
}

.recent-posts.sidebar li > a img,
.recent-posts li > a img {
	width: 100%;
	border-radius: var(--radius-s);
	display: block;
	height: auto;
}

.recent-posts.sidebar li > a span.title,
.recent-posts li > a span.title {
	display: block;
	margin-top: 8px;
	line-height: 1.35;
	word-break: break-word;
}

.recent-posts.sidebar li time,
.recent-posts li time {
	display: block;
	margin-top: 4px;
	font-size: .9em;
	color: #555;
	text-align: left;
}

/* Sidebar Contact Form */
.sidebar-contact .wpcf7 {
	background: #f7f9f7;
	border: 1px solid #e2e7e2;
	border-radius: var(--radius-m);
	padding: 20px 24px;
}

.sidebar-contact .wpcf7 form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sidebar-contact .wpcf7 input[type=text],
.sidebar-contact .wpcf7 input[type=email],
.sidebar-contact .wpcf7 textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #c8cfc8;
	border-radius: var(--radius-s);
	font-size: 14px;
	box-sizing: border-box;
}

.sidebar-contact .wpcf7 textarea {
	min-height: 120px;
	resize: vertical;
}

.sidebar-contact .wpcf7 input[type=submit] {
	padding: 10px 20px;
	font-size: 15px;
	background: var(--blue);
	color: #fff;
	border: 0;
	border-radius: var(--radius-s);
	cursor: pointer;
}

.sidebar-contact .wpcf7 input[type=submit]:hover {
	background: var(--blue-dark);
}

.sidebar-contact .wpcf7 .row {
	margin: 0;
}

.sidebar-contact .wpcf7 .row [class*="col-"] {
	padding: 0;
}

/* ======================================================================
 * 13. FORMS & CONTACT
 * ====================================================================== */
.form-control {
	width: 100%;
	border: 1px solid #ddd;
	height: 50px;
	padding: 0 15px;
	margin-bottom: 25px;
	color: var(--body-text);
	font-size: 14px;
}

textarea.form-control {
	height: 150px;
	padding: 15px;
}

.searchs-form {
	position: relative;
}

.searchs-form input {
	height: 60px;
	padding-right: 110px;
}

.searchs-form button {
	position: absolute;
	top: 0;
	right: 0;
	height: 60px;
	width: 100px;
	background: var(--primary-color);
	color: var(--dark-text);
	font-weight: bold;
}

/* Contact Wrapper */
.contact-wrapper {
	max-width: 900px;
	margin: 50px auto;
	padding: 0;
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	border-radius: 12px;
	overflow: hidden;
}

.contact-header {
	background: linear-gradient(135deg, var(--green) 0%, #00a859 100%);
	padding: 40px 30px;
	text-align: center;
	color: white;
}

.contact-header h2 {
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: white;
}

.contact-subtitle {
	font-size: 18px;
	margin: 0 0 30px 0;
	opacity: 0.95;
}

.contact-options {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	max-width: 700px;
	margin: 0 auto;
}

.contact-option {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(255,255,255,0.15);
	padding: 20px 30px;
	border-radius: 8px;
	backdrop-filter: blur(10px);
	flex: 1;
	min-width: 250px;
}

.contact-option i {
	font-size: 32px;
	color: white;
}

.contact-option div {
	text-align: left;
}

.contact-option strong {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 5px;
	opacity: 0.9;
}

.phone-number {
	color: white;
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
	display: block;
}

.phone-number:hover {
	text-decoration: underline;
	color: white;
}

.contact-option span {
	font-size: 16px;
	opacity: 0.9;
}

.contact-divider {
	font-weight: 700;
	font-size: 16px;
	opacity: 0.8;
	padding: 0 10px;
}

.contact-wrapper h3 {
	margin-top: 0;
	font-size: 1.4rem;
}

.contact-wrapper input[type=text],
.contact-wrapper textarea {
	width: 100%;
	max-width: 460px;
	padding: .6rem .9rem;
	border: 1px solid #ccc;
	border-radius: var(--radius-s);
	margin-bottom: 1rem;
	box-sizing: border-box;
}

.contact-wrapper input[type=submit],
.contact-wrapper button {
	padding: 12px 32px;
	font-size: 16px;
	background: var(--blue);
	color: #fff;
	border: 0;
	border-radius: var(--radius-s);
	cursor: pointer;
}

.contact-wrapper input[type=submit]:hover,
.contact-wrapper button:hover {
	background: var(--blue-dark);
}

.contact-wrapper .row {
	margin: 0;
}

.contact-wrapper .row [class*="col-"] {
	padding: 0;
	width: 100%;
}

.contact-wrapper iframe {
	min-height: 600px;
	display: block;
}

/* Form container */
.iframe-lazy-load {
	background: white;
	min-height: 650px;
	max-width: 640px;
	margin: 0 auto;
	width: 100%;
}

/* Peak Marketing Tools iframes */
.ep-iFrameContainer,
#inline-B0TligKdn5TqakAyi2a1-div {
	max-width: 640px;
	margin: 0 auto;
	width: 100%;
}

.ep-wrapper,
#inline-B0TligKdn5TqakAyi2a1-wrapper {
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
}

iframe[id*="inline-"],
iframe[data-form-id],
#inline-B0TligKdn5TqakAyi2a1 {
	max-width: 640px;
	min-width: 100%;
	width: 100%;
	max-height: 700px;
}

.ep-iFrameContainer iframe {
	width: 100%;
	max-width: 640px;
}

/* Newsletter embed */
.searchs-form.newsletter-embed,
.consulting-company-area .searchs-form {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.searchs-form iframe,
.newsletter-embed iframe {
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
	display: block;
}

.consulting-company-area.element-ll {
	padding: 40px 15px;
	background: #34495e;
}

.consulting-company-area .container {
	max-width: 1200px;
}

.consulting-company-area .row {
	justify-content: center;
}

.consulting-company-area .col-xl-12 {
	max-width: 640px;
	margin: 0 auto;
}

.consulting-company-area .newsletter-embed {
	width: 100%;
	background: transparent;
}

.consulting-company-area .newsletter-embed iframe {
	display: block;
	width: 100%;
	height: 350px;
	min-height: 160px;
	max-height: 390px;
	border: none;
	border-radius: 3px;
}

.ghl-embed iframe {
	max-width: 100%;
	width: 100%;
	border: none;
}

.custom-call-btn span,
.custom-call-btn i {
	color: #000000;
}

/* Floating Search Overlay */
.floating-search-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--blue);
	color: #fff;
	box-shadow: 0 4px 18px rgba(25,118,210,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1010;
	transition: background .2s, box-shadow .2s;
}

.floating-search-btn:hover {
	background: var(--blue-dark);
	box-shadow: 0 8px 30px rgba(25,118,210,.25);
}

.floating-search-btn svg {
	display: block;
}

.search-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1010;
	background: rgba(33,46,32,.92);
	align-items: center;
	justify-content: center;
}

.search-overlay.open {
	display: flex;
	animation: fadeIn .2s;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.search-overlay-content {
	width: 95vw;
	max-width: 420px;
	padding: 48px 30px 36px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 42px rgba(0,0,0,.18);
	text-align: center;
	position: relative;
}

.search-overlay-content h2 {
	font-size: 1.5rem;
	margin-bottom: 1.2rem;
	color: var(--blue);
}

.close-search-overlay {
	position: absolute;
	top: 18px;
	right: 18px;
	background: none;
	border: none;
	font-size: 2rem;
	color: var(--blue-dark);
	cursor: pointer;
	line-height: 1;
}

.search-overlay .search-form {
	display: flex;
	gap: .5rem;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.search-overlay .search-field {
	width: 63%;
	padding: 10px 14px;
	font-size: 1.08rem;
	border: 2px solid var(--blue);
	border-radius: var(--radius-s);
	background: #fff;
	transition: border .2s;
}

.search-overlay .search-field:focus {
	border-color: var(--green-dark);
	outline: none;
}

.search-overlay .search-submit {
	padding: 10px 20px;
	font-size: 1.08rem;
	font-weight: 600;
	border: 0;
	border-radius: var(--radius-s);
	background: var(--green-dark);
	color: #fff;
	cursor: pointer;
	transition: background .2s;
}

.search-overlay .search-submit:hover {
	background: var(--blue);
}

/* ======================================================================
 * 14. FOOTER - 2025 Redesign
 * ====================================================================== */
footer.element-ll {
	background: var(--color-dark);
	color: #ffffff;
	padding: 0;
	position: relative;
}

/* Top accent line */
footer.element-ll::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-secondary) 100%);
}

.footer-top-area {
	padding: var(--space-3xl) 0 var(--space-2xl);
	background: var(--color-dark);
}

.footer-top-area-cl {
	background: transparent;
}

.footer-title,
footer h4.footer-title {
	color: #ffffff;
	font-size: var(--font-size-lg);
	font-weight: 600;
	margin-bottom: var(--space-lg);
	letter-spacing: 0;
	position: relative;
	padding-bottom: var(--space-md);
}

.footer-title::after,
footer h4.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--color-primary);
	border-radius: var(--radius-full);
}

.footer-wrapper {
	margin-bottom: var(--space-xl);
}

.footer-wrapper p,
.footer-wrapper a {
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--font-size-sm);
}

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

.footer-text p,
footer p {
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--font-size-sm);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-md);
}

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

.footer-link li {
	position: relative;
	margin-bottom: var(--space-lg);
	padding-bottom: var(--space-md);
	padding-left: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--font-size-sm);
	line-height: var(--leading-relaxed);
}

.footer-link li:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.footer-link li i {
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-primary);
	font-size: 20px;
}

.footer-link li i.fa-map-marker-alt,
.footer-link i.fas.fa-map-marker-alt {
	display: none;
}

.footer-link li h5 {
	font-size: var(--font-size-base);
	font-weight: 600;
	margin: var(--space-sm) 0;
	color: #fff;
}

.footer-link li p {
	margin: var(--space-xs) 0;
	line-height: var(--leading-normal);
	font-size: var(--font-size-sm);
}

.footer-link li i.fas {
	color: var(--color-primary);
	margin-right: var(--space-sm);
}

.footer-menu li,
footer ul li {
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--font-size-sm);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-md);
	padding-left: 0;
}

.footer-link a,
.footer-menu a,
footer a {
	color: var(--color-primary);
	text-decoration: none;
	transition: all var(--transition-base);
	font-weight: 500;
}

.footer-link a:hover,
.footer-menu a:hover,
footer a:hover {
	color: #9FD87D;
	text-decoration: none;
}

.footer-link i,
.footer-menu i {
	color: var(--color-primary);
	margin-right: var(--space-sm);
	font-size: 14px;
}

/* Social icons */
.footer-top-icon {
	margin-top: var(--space-lg);
	display: flex;
	gap: var(--space-md);
	flex-wrap: wrap;
}

.footer-top-icon a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border-radius: var(--radius-md);
	transition: all var(--transition-base);
	font-size: 18px;
}

.footer-top-icon a:hover {
	background: var(--color-primary);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(107, 191, 89, 0.3);
	text-decoration: none;
}

/* Footer bottom */
.footer2-bottom-area,
.black1-bg {
	background: rgba(0, 0, 0, 0.2);
	padding: var(--space-lg) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright p,
.copyright1 p {
	margin-bottom: 0;
	font-size: var(--font-size-sm);
	color: rgba(255, 255, 255, 0.7);
}

/* ======================================================================
 * 15. COMPONENTS (Accordions, Cards, Buttons)
 * ====================================================================== */

/* Buttons - 2025 Redesign */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	position: relative;
	padding: 14px 28px;
	font-size: var(--font-size-base);
	font-weight: 600;
	line-height: 1.2;
	vertical-align: middle;
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: all var(--transition-base);
	z-index: var(--z-base);
	white-space: nowrap;
	text-align: center;
	text-decoration: none;
	user-select: none;
	border: 2px solid transparent;
	cursor: pointer;
}

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

.btn:active {
	transform: translateY(0);
}

.btn:focus {
	text-decoration: none;
	outline: none;
	box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.3);
}

/* Primary Button - Green */
.btn-primary {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: #fff;
	border-color: var(--color-primary);
	box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--color-primary-dark) 0%, #3D8A30 100%);
	border-color: var(--color-primary-dark);
	box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.35);
	color: #fff;
}

/* Accent Button - Warm Amber (for key CTAs) */
.btn-accent {
	background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
	color: #fff;
	border-color: var(--color-accent);
	box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
	background: linear-gradient(135deg, var(--color-accent-dark) 0%, #D67D2A 100%);
	border-color: var(--color-accent-dark);
	box-shadow: 0 6px 20px rgba(245, 169, 98, 0.35);
	color: #fff;
}

/* Secondary Button - Teal */
.btn-secondary {
	background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
	color: #fff;
	border-color: var(--color-secondary);
	box-shadow: 0 4px 14px rgba(59, 130, 160, 0.25);
}

.btn-secondary:hover {
	background: linear-gradient(135deg, var(--color-secondary-dark) 0%, #1F4F66 100%);
	border-color: var(--color-secondary-dark);
	box-shadow: 0 6px 20px rgba(59, 130, 160, 0.35);
	color: #fff;
}

/* White Button */
.btn-white {
	background-color: #fff;
	color: var(--color-primary-dark);
	border-color: #fff;
	box-shadow: var(--shadow-md);
}

.btn-white:hover {
	background-color: var(--grey-50);
	color: var(--color-primary-dark);
	box-shadow: var(--shadow-lg);
}

/* Outline Buttons */
.btn-outline-primary {
	background: transparent;
	color: var(--color-primary-dark);
	border: 2px solid var(--color-primary);
}

.btn-outline-primary:hover {
	background: var(--color-primary);
	color: #fff;
	box-shadow: var(--shadow-primary);
}

.btn-white-outline {
	border: 2px solid rgba(255, 255, 255, 0.8);
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}

.btn-white-outline:hover {
	background: #fff;
	color: var(--color-primary-dark);
	border-color: #fff;
}

/* Read More Button */
.btn-read-more {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	padding: 10px 20px;
	background: var(--color-secondary);
	color: #fff;
	text-decoration: none;
	border-radius: var(--radius-sm);
	font-weight: 500;
	font-size: var(--font-size-sm);
	transition: all var(--transition-base);
}

.btn-read-more:hover {
	background: var(--color-secondary-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

/* Button Sizes */
.btn-sm {
	padding: 10px 20px;
	font-size: var(--font-size-sm);
}

.btn-lg {
	padding: 18px 36px;
	font-size: var(--font-size-lg);
}

/* Cards - 2025 Redesign */
.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: all var(--transition-base);
	overflow: hidden;
}

.card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
	border-color: var(--color-primary-light);
}

.card-body {
	flex: 1 1 auto;
	padding: var(--space-lg);
}

.card-title {
	margin-bottom: var(--space-md);
	font-size: var(--font-size-lg);
	font-weight: 600;
	color: var(--color-text-dark);
}

.card-header {
	padding: var(--space-md) var(--space-lg);
	margin-bottom: 0;
	background-color: var(--grey-50);
	border-bottom: 1px solid var(--color-border);
}

.card-footer {
	padding: var(--space-md) var(--space-lg);
	background-color: var(--grey-50);
	border-top: 1px solid var(--color-border);
}

.card-date {
	font-size: var(--font-size-sm);
	color: var(--color-text-secondary);
	margin-bottom: var(--space-sm);
}

.card-excerpt {
	flex: 1;
	margin-bottom: var(--space-md);
	font-size: var(--font-size-base);
	line-height: var(--leading-relaxed);
	color: var(--color-text);
}

.card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	font-size: var(--font-size-sm);
	color: var(--color-text-secondary);
	margin-bottom: var(--space-md);
}

.card-meta i {
	margin-right: var(--space-xs);
	color: var(--color-primary);
}

/* Card Hover Effect */
.card-hover-effect {
	position: relative;
	overflow: hidden;
}

.card-hover-effect .card-overlay {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black-color);
	opacity: 0;
	transition: var(--transition-fast);
	transform: scaleX(0);
}

.card-hover-effect:hover .card-overlay {
	opacity: 0.7;
	transform: scaleX(1);
}

.card-hover-effect .card-content {
	position: absolute;
	top: 20%;
	left: 0;
	right: 0;
	text-align: center;
	transform: translateY(-50%);
	opacity: 0;
	transition: var(--transition-fast);
	z-index: var(--z-base);
}

.card-hover-effect:hover .card-content {
	opacity: 1;
	top: 50%;
}

/* Team Area */
.team-text h4, .team-text p {
	color: var(--white-color);
}

.team-icon a {
	color: var(--white-color);
	font-size: 17px;
	margin: 0 8px;
}

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

/* Dropdown */
.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: var(--z-dropdown);
	display: none;
	float: left;
	min-width: 10rem;
	padding: .5rem 0;
	margin: .125rem 0 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: .25rem;
}

.dropdown-menu.show {
	display: block;
}

.dropdown-item {
	display: block;
	width: 100%;
	padding: .25rem 1.5rem;
	clear: both;
	font-weight: 400;
	color: #212529;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}

.dropdown-item:focus, .dropdown-item:hover {
	color: #16181b;
	text-decoration: none;
	background-color: #f8f9fa;
}

/* Carousel */
.carousel {
	position: relative;
}

.carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.carousel-item {
	position: relative;
	display: none;
	align-items: center;
	width: 100%;
	transition: transform .6s ease;
	backface-visibility: hidden;
	perspective: 1000px;
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
	display: block;
}

/* Accordions - 2025 Redesign */
.accordion-frontpage {
	margin-bottom: var(--space-md);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	transition: all var(--transition-base);
}

.accordion-frontpage:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--color-primary-light);
}

.accordion-frontpage .su-spoiler-title {
	background-color: #fff;
	color: var(--color-text-dark);
	font-size: var(--font-size-base);
	font-weight: 600;
	padding: var(--space-lg) var(--space-3xl) var(--space-lg) var(--space-lg);
	cursor: pointer;
	transition: all var(--transition-base);
	position: relative;
	border: none;
	border-left: 4px solid transparent;
	display: block;
	margin: 0;
}

.accordion-frontpage .su-spoiler-title:hover {
	background-color: var(--color-primary-light);
	border-left-color: var(--color-primary);
	color: var(--color-text-dark);
}

.accordion-frontpage.su-spoiler-open .su-spoiler-title {
	background-color: var(--color-primary-light);
	border-left-color: var(--color-primary);
	color: var(--color-text-dark);
}

.accordion-frontpage .su-spoiler-content {
	background: #fff;
	padding: var(--space-lg);
	border-top: 1px solid var(--color-border-light);
	display: block;
	margin: 0;
}

.accordion-frontpage.su-spoiler-closed .su-spoiler-content {
	display: none;
	visibility: hidden;
	height: 0;
	padding: 0;
	border: none;
	overflow: hidden;
}

.accordion-frontpage .su-spoiler-content p {
	font-size: var(--font-size-base);
	line-height: var(--leading-relaxed);
	color: var(--color-text);
	margin-bottom: var(--space-md);
}

.accordion-frontpage .su-spoiler-content p:last-child {
	margin-bottom: 0;
}

.accordion-frontpage .su-spoiler-icon {
	position: absolute;
	right: var(--space-lg);
	top: 50%;
	transform: translateY(-50%);
	font-size: 0;
	font-weight: bold;
	line-height: 1;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary-light);
	border-radius: var(--radius-full);
	transition: all var(--transition-base);
}

.accordion-frontpage.su-spoiler-open .su-spoiler-icon {
	background: var(--color-primary);
	transform: translateY(-50%) rotate(180deg);
}

.accordion-frontpage.su-spoiler-closed .su-spoiler-icon:before {
	content: '+';
	font-family: var(--font-primary);
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	display: block;
	color: var(--color-primary-dark);
}

.accordion-frontpage.su-spoiler-open .su-spoiler-icon:before {
	content: '\2212';
	font-family: var(--font-primary);
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	display: block;
	color: #fff;
}

@supports not (content: '\2212') {
	.accordion-frontpage.su-spoiler-open .su-spoiler-icon:before {
		content: '-';
	}
}

.accordion-frontpage .su-spoiler-content a {
	color: var(--color-primary-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color var(--transition-base);
}

.accordion-frontpage .su-spoiler-content a:hover {
	color: var(--color-primary);
}

.accordion-frontpage .su-spoiler-content ul,
.accordion-frontpage .su-spoiler-content ol {
	margin-left: var(--space-lg);
	margin-bottom: var(--space-md);
}

.accordion-frontpage .su-spoiler-content li {
	margin-bottom: var(--space-sm);
	font-size: var(--font-size-base);
	line-height: var(--leading-relaxed);
	color: var(--color-text);
}

.accordion-frontpage .su-spoiler-content h2,
.accordion-frontpage .su-spoiler-content h3 {
	color: var(--color-secondary);
	margin-bottom: var(--space-md);
	font-weight: 600;
}

.accordion-frontpage .su-spoiler-content h2::after {
	display: none;
}

.accordion-group {
	margin: var(--space-2xl) 0;
}

/* ======================================================================
 * 16. ARCHIVE & AUTHOR PAGES
 * ====================================================================== */

/* Author Hero */
.author-hero {
	padding: 40px 0 20px;
	text-align: center;
}

.author-hero .author-avatar {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 18px;
}

.author-hero .author-title {
	font-size: 1.8rem;
	margin-bottom: 8px;
}

.author-hero .author-bio {
	max-width: 680px;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.6;
}

/* Article Grid */
.article-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 35px;
	margin-bottom: 2rem;
}

.article-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e4e4e4;
	border-radius: var(--radius-m);
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.article-card .thumb {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f0f0f0;
	display: block;
}

.article-card .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.article-card:hover .thumb img {
	transform: scale(1.05);
}

.article-card .card-body {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.article-card .card-title {
	font-size: 1.25rem;
	margin: 0 0 6px;
	line-height: 1.4;
}

.article-card .card-title a {
	color: inherit;
	text-decoration: none;
}

.article-card .card-title a:hover {
	color: #007bff;
}

/* Archive description */
.archive-description,
.category-description {
	max-width: 800px;
	margin: 1.5rem auto 0;
	color: #666;
	font-size: 1.05rem;
}

/* Pagination */
.pagination {
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: .25rem;
}

.page-link {
	position: relative;
	display: block;
	padding: .5rem .75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #007bff;
	background-color: #fff;
	border: 1px solid #dee2e6;
}

.page-link:hover {
	z-index: 2;
	color: #0056b3;
	text-decoration: none;
	background-color: #e9ecef;
	border-color: #dee2e6;
}

.page-item.active .page-link {
	z-index: 1;
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}

.author-pagination,
.archive-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	text-align: center;
	margin: 3rem 0;
	flex-wrap: wrap;
}

.author-pagination .page-numbers,
.archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 45px;
	height: 45px;
	margin: .25rem;
	padding: .5rem 1rem;
	font-size: .9rem;
	font-weight: 500;
	border: 1px solid #ced4da;
	border-radius: var(--radius-s);
	background: #fff;
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
}

.author-pagination .current,
.archive-pagination .current,
.archive-pagination .page-numbers.current {
	background: #333;
	color: #fff;
	border-color: #333;
	cursor: default;
	pointer-events: none;
}

.author-pagination .page-numbers:hover,
.archive-pagination .page-numbers:hover {
	background: #007bff;
	color: #fff;
	border-color: #007bff;
}

.archive-pagination .page-numbers.dots,
.archive-pagination .dots {
	border: none;
	background: transparent;
	pointer-events: none;
}

.archive-pagination .page-numbers.dots:hover {
	background: transparent;
	color: #333;
}

.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
	padding: 0.5rem 1.25rem;
}

.navigation.pagination {
	margin: 2rem 0;
}

.navigation .nav-links {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.navigation .page-numbers {
	padding: 0.5rem 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	color: #333;
}

.navigation .page-numbers.current {
	background: #007bff;
	color: white;
	border-color: #007bff;
}

.navigation .page-numbers:hover:not(.current) {
	background: #f5f5f5;
}

/* No results */
.no-results {
	text-align: center;
	padding: 3rem 1rem;
}

/* City/County Lists */
.cities-cl {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px 20px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 1100px;
}

.cities-cl li {
	margin: 0;
}

.cities-cl li a {
	display: block;
	padding: 10px 15px;
	background: #f8f9fa;
	border: 1px solid #e3e3e3;
	border-radius: 6px;
	text-align: center;
	transition: all 0.2s ease;
	text-decoration: none;
	color: #333;
}

.cities-cl li a:hover {
	background: var(--green);
	color: #fff;
	border-color: var(--green-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(153, 224, 100, 0.25);
}

/* ======================================================================
 * 17. RESPONSIVE BREAKPOINTS
 * ====================================================================== */

/* Large devices (992px and down) */
@media screen and (max-width: 991px) {
	.nav-toggle {
		display: block;
	}

	.navigation {
		height: 48px;
	}

	.nav-menus-wrapper {
		width: 250px;
		height: 100%;
		top: 0;
		left: -400px;
		position: fixed;
		background-color: var(--white-color);
		z-index: var(--z-offcanvas);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.nav-menus-wrapper.nav-menus-wrapper-open {
		left: 0;
	}

	.nav-menu > li {
		width: 100%;
		border-top: solid 1px var(--border-color);
	}

	.nav-menu > li > a {
		padding: 12px 15px 12px 26px;
	}

	.nav-dropdown {
		position: static;
		box-shadow: none;
		border-top: none;
		opacity: 1;
		visibility: visible;
		display: none;
	}

	.nav-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.menu-toggle {
		display: flex;
	}

	.main-nav .menu {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		flex-direction: column;
		gap: 0;
		display: none;
		background: #fff;
		box-shadow: 0 8px 20px rgba(0,0,0,.08);
	}

	.main-nav .menu.open {
		display: block;
	}

	.menu li ul,
	.menu li .sub-menu {
		position: static;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
	}

	.slider-wrapper {
		min-height: 380px;
		padding: 50px 0;
	}

	.slider-text-h1 {
		font-size: 38px;
	}

	.page-template-home section {
		padding: 50px 0;
	}

	.page-template-home h2 {
		font-size: 32px;
	}

	.page-template-home h3 {
		font-size: 22px;
	}

	.footer-top-area {
		padding: 50px 0 30px;
	}

	.footer-title {
		font-size: 18px;
	}

	.top-bar-inner {
		flex-wrap: wrap;
		gap: 20px;
	}

	.site-tagline {
		flex-basis: 100%;
		order: 3;
		margin-right: 0;
		padding-left: 0;
	}

	.top-search {
		order: 4;
	}
}

/* Medium devices (tablets, less than 768px) - 2025 Redesign */
@media screen and (max-width: 767px) {
	:root {
		--section-py: var(--section-py-mobile);
	}

	h1 { font-size: 32px; }
	h2 { font-size: 26px; }
	h3 { font-size: 22px; }
	p, body { font-size: var(--font-size-sm); }

	.header-top-wrapper {
		flex-direction: column;
		gap: var(--space-lg);
		margin-left: 0;
	}

	.breadcrumb-area {
		min-height: 200px;
		padding: var(--space-2xl) 0 var(--space-xl);
	}

	.breadcrumb-text {
		font-size: 26px;
		margin-bottom: var(--space-md);
	}

	.breadcrumb-area-inquery-h2 {
		font-size: var(--font-size-base);
	}

	.breadcrumb-area .call_us,
	.breadcrumb-area .icon-phone,
	.breadcrumb-area .shadowed {
		font-size: 1.1rem;
	}

	.our-services-box {
		width: 100%;
	}

	.quote-form {
		max-width: 100%;
	}

	/* Hero mobile - centered on small screens */
	.slider-wrapper {
		min-height: 400px;
		padding: var(--space-2xl) 0;
	}

	.slider-text {
		text-align: center;
		max-width: 100%;
	}

	.slider-text-h1 {
		font-size: 32px;
		margin-bottom: var(--space-lg);
	}

	.slider-text p,
	.slider-text .hero-subtitle {
		font-size: var(--font-size-base);
		margin-bottom: var(--space-lg);
	}

	.slider-cta-buttons {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.slider-text .btn-primary,
	.header-button-mobile,
	.header-button-desktop {
		width: 100%;
		max-width: 300px;
		margin: 0 0 var(--space-md) 0;
		justify-content: center;
	}

	.nav-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0 10px;
		width: 100%;
	}

	.nav-top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		margin-bottom: 0;
		position: relative;
	}

	.main-nav .mega-menu-toggle {
		margin-left: auto;
		display: flex;
		align-items: center;
		height: 100%;
		position: static;
		background: none;
		border: none;
		box-shadow: none;
		padding: 10px;
	}

	.nav-search {
		width: 100%;
		display: flex;
		justify-content: center;
		margin: 10px 0 12px 0;
		padding: 0;
		order: 2;
	}

	.nav-search form,
	.nav-search .search-form {
		width: 100%;
		max-width: 360px;
		margin: 0 auto;
	}

	.main-nav .menu {
		width: 100%;
	}

	#primary-menu {
		display: none;
	}

	#primary-menu.nav-menus-wrapper-open {
		display: block;
	}

	.top-bar {
		padding: 15px 0;
	}

	.top-bar-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.site-logo img {
		height: 50px;
	}

	.site-tagline {
		font-size: 14px;
	}

	.contact-link,
	.phone-link {
		font-size: 15px;
	}

	.phone-link {
		font-size: 16px;
	}

	.contact-link svg,
	.phone-link svg {
		width: 24px;
		height: 24px;
		min-width: 24px;
		min-height: 24px;
		padding: 6px;
	}

	.phone-link svg {
		width: 26px;
		height: 26px;
		min-width: 26px;
		min-height: 26px;
	}

	.top-search {
		width: 100%;
	}

	.page-template-home section {
		padding: var(--section-py-mobile) 0;
	}

	.page-template-home h2 {
		font-size: 26px;
	}

	.page-template-home h2::after {
		width: 50px;
		height: 3px;
	}

	.page-template-home h3 {
		font-size: 20px;
	}

	.page-template-home .green-box {
		margin-bottom: var(--space-lg);
		padding: var(--space-lg);
	}

	.page-template-home .col-md-6,
	.page-template-home .col-lg-6 {
		margin-bottom: var(--space-lg);
	}

	/* Accordion mobile */
	.accordion-frontpage .su-spoiler-title {
		padding: var(--space-md) var(--space-2xl) var(--space-md) var(--space-md);
		font-size: var(--font-size-sm);
	}

	.accordion-frontpage .su-spoiler-content {
		padding: var(--space-md);
	}

	.accordion-frontpage .su-spoiler-icon {
		right: var(--space-md);
		width: 24px;
		height: 24px;
	}

	/* Footer mobile */
	.footer-top-area {
		padding: var(--space-2xl) 0 var(--space-lg);
	}

	.footer-wrapper {
		text-align: center;
		margin-bottom: var(--space-xl);
	}

	.footer-title::after,
	footer h4.footer-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-top-icon {
		justify-content: center;
	}

	.footer-title {
		font-size: var(--font-size-base);
	}

	.footer-text p,
	.footer-link li {
		font-size: 14px;
	}

	.article-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.rg-county-bar .d-flex {
		flex-direction: column;
		gap: 0.75rem;
	}

	.rg-county-select {
		width: 100%;
		max-width: 100%;
	}

	.accordion-frontpage .su-spoiler-title {
		font-size: 16px;
		padding: 15px 45px 15px 15px;
	}

	.accordion-frontpage .su-spoiler-content {
		padding: 20px 15px;
	}

	.accordion-frontpage .su-spoiler-content p,
	.accordion-frontpage .su-spoiler-content li {
		font-size: 15px;
	}

	.accordion-frontpage .su-spoiler-icon {
		right: 15px;
	}

	.accordion-frontpage.su-spoiler-closed .su-spoiler-icon:before,
	.accordion-frontpage.su-spoiler-open .su-spoiler-icon:before {
		font-size: 22px;
	}

	.contact-header h2 {
		font-size: 28px;
	}

	.contact-subtitle {
		font-size: 16px;
	}

	.contact-options {
		flex-direction: column;
		gap: 15px;
	}

	.contact-option {
		width: 100%;
		min-width: auto;
	}

	.contact-divider {
		transform: rotate(90deg);
	}

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

	.contact-wrapper {
		margin: 30px 15px;
		max-width: 100%;
		padding: 20px 15px;
	}

	.ep-iFrameContainer,
	.ep-wrapper,
	iframe[id*="inline-"] {
		max-width: 100%;
		width: 100%;
	}

	.cities-cl {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 10px;
	}

	.cities-cl li a {
		padding: 8px 12px;
		font-size: 0.9rem;
	}

	.widget_rpwe_widget ul.rpwe-ul li,
	.widget_recent_entries li {
		flex-direction: row;
	}

	.recent-posts.grid li {
		grid-template-columns: 60px 1fr;
		column-gap: 10px;
	}

	.recent-posts.grid li img {
		width: 60px;
		height: 60px;
	}

	.contact-wrapper iframe {
		min-height: 500px;
	}

	.single-post article {
		font-size: 17px;
	}

	.author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.author-box img {
		margin-bottom: .5rem;
	}

	.search-overlay-content {
		padding: 28px 7vw 18px;
	}

	.search-overlay .search-form {
		flex-direction: column;
		gap: .75rem;
	}

	.search-overlay .search-field,
	.search-overlay .search-submit {
		width: 100%;
	}
}

/* Small devices (phones, less than 576px) */
@media screen and (max-width: 575px) {
	.slider-text-h1 {
		font-size: 28px;
		line-height: 1.2;
	}

	.slider-area .slick-slide {
		height: 320px;
	}

	.btn {
		padding: 14px 25px;
		font-size: 18px;
	}

	.display-desktop {
		display: none;
	}

	.display-mobile {
		display: block;
	}

	.slider-wrapper {
		min-height: 340px;
		padding: 35px 0;
	}

	.slider-cta-buttons .btn-primary {
		padding: 15px 40px;
		font-size: 17px;
	}

	.breadcrumb-area {
		min-height: 200px;
		padding: 35px 0 25px;
	}

	.breadcrumb-text {
		font-size: 26px;
	}

	.inquery a,
	.inquery .call_us {
		padding: 12px 24px;
		font-size: 15px;
	}

	.page-template-home section {
		padding: 30px 0;
	}

	.page-template-home h2 {
		font-size: 24px;
	}

	.page-template-home p,
	.page-template-home li {
		font-size: 15px;
	}

	.footer-top-area {
		padding: 35px 0 20px;
	}

	.footer-title {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.footer-text p,
	.footer-link li {
		font-size: 14px;
	}

	.footer-top-icon a {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}

	.accordion-frontpage .su-spoiler-title {
		font-size: 15px;
		padding: 14px 40px 14px 12px;
	}

	.accordion-frontpage .su-spoiler-content {
		padding: 18px 12px;
	}

	.accordion-frontpage .su-spoiler-content p,
	.accordion-frontpage .su-spoiler-content li {
		font-size: 14px;
	}

	.accordion-frontpage.su-spoiler-closed .su-spoiler-icon:before,
	.accordion-frontpage.su-spoiler-open .su-spoiler-icon:before {
		font-size: 20px;
	}

	.archive-pagination {
		gap: 5px;
	}

	.archive-pagination .page-numbers {
		min-width: 38px;
		height: 38px;
		padding: 0.4rem 0.75rem;
		font-size: 0.9rem;
	}

	.cities-cl {
		grid-template-columns: 1fr 1fr;
	}

	.contact-wrapper {
		padding: 1.5rem;
	}

	.rg-county-label {
		font-size: 1.1rem;
	}

	.rg-county-select {
		font-size: 1rem;
		padding: 10px 40px 10px 15px;
	}
}

/* Extra small devices (less than 480px) */
@media (max-width: 480px) {
	.widget_rpwe_widget ul.rpwe-ul li,
	.widget_recent_entries li {
		flex-direction: row;
	}

	.recent-posts.grid li {
		grid-template-columns: 60px 1fr;
		column-gap: 10px;
	}

	.recent-posts.grid li img {
		width: 60px;
		height: 60px;
	}

	.rg-county-label {
		font-size: 1.1rem;
	}

	.rg-county-select {
		font-size: 1rem;
		padding: 10px 40px 10px 15px;
	}
}

/* ======================================================================
 * 18. PRINT STYLES
 * ====================================================================== */
@media print {
	*,
	*::after,
	*::before {
		text-shadow: none !important;
		box-shadow: none !important;
	}

	a:not(.btn) {
		text-decoration: underline;
	}

	img {
		page-break-inside: avoid;
	}

	p, h2, h3 {
		orphans: 3;
		widows: 3;
	}

	h2, h3 {
		page-break-after: avoid;
	}

	body {
		min-width: 992px !important;
	}

	.container {
		min-width: 992px !important;
	}

	.main-nav,
	.top-bar,
	.slider-area,
	.breadcrumb-area,
	footer,
	.sidebar {
		display: none;
	}
}
