/*
 * Top-Dienstleister brand colors — sampled directly from assets/img/logo.png.
 * This is the ONE place to change the site's color scheme later (both the
 * public site and the admin panel load this file, after all other CSS, so
 * it always wins the cascade). Change the variables below and everything
 * that uses them updates together.
 */
:root {
	--brand-navy: #173369;
	--brand-navy-dark: #0f2350;
	--brand-navy-light: #24448c;
	--brand-gold: #dba83a;
	--brand-gold-dark: #b8872a;
	--brand-gold-light: #f0c565;
}

/* Safety net against horizontal overflow/scroll on small screens — Bootstrap's
   .row uses negative margins to counteract column gutters, which can bleed
   past the viewport edge on narrow screens if anything is even slightly off. */
html, body {
	overflow-x: hidden;
	max-width: 100%;
}

/* ================= Public site (Reveal theme) ================= */
/* The theme's own skin system (assets/css/colors.css, class "red-skin" on
   <body>) and a few hardcoded colors in styles.css use a pink/red/orange
   accent. Re-pointing just the selectors that actually show on our pages
   here, rather than editing the theme's own files, so this stays the
   single source of truth. */

body.red-skin .theme-cl,
body.red-skin a.link,
body.red-skin nav .menu li a.active,
body.red-skin nav .menu li a:hover,
body.red-skin .btn-outline-theme,
body.red-skin .cn-info-icon i {
	color: var(--brand-gold) !important;
}

body.red-skin .btn.btn-theme,
body.red-skin .btn.search-btn,
body.red-skin .theme-bg {
	background-color: var(--brand-gold) !important;
	border-color: var(--brand-gold) !important;
	color: #fff !important;
}

body.red-skin .btn.btn-theme:hover,
body.red-skin .btn.btn-theme:focus,
body.red-skin .btn.search-btn:hover {
	background-color: var(--brand-gold-dark) !important;
	border-color: var(--brand-gold-dark) !important;
}

body.red-skin .btn-outline-theme:hover,
body.red-skin .btn-outline-theme:focus {
	background-color: var(--brand-gold) !important;
	color: #fff !important;
}

body.red-skin .pagination > .active > a,
body.red-skin .pagination > .active > span,
body.red-skin .pagination > li > a:hover {
	background-color: var(--brand-navy) !important;
	border-color: var(--brand-navy) !important;
	color: #fff !important;
}

/* Category badge on the listing detail hero */
.tr-list-detail .cate-gorio a {
	color: var(--brand-navy) !important;
}

/* Category badge on browse-page cards */
a.cat-icon.cl-1 {
	color: var(--brand-navy) !important;
}

/* "Featured" ribbon on listing cards */
.fst,
.fst:before,
.fst:after,
.Reveal-featured-liting-box:after {
	background: var(--brand-gold) !important;
	border-top-color: var(--brand-gold) !important;
}

/* ================= Admin panel (Bootstrap) ================= */
.admin-sidebar {
	background: linear-gradient(180deg, var(--brand-navy-dark), var(--brand-navy)) !important;
}
.admin-sidebar .nav-link.active,
.admin-sidebar .nav-link:hover {
	background: rgba(219, 168, 58, .18) !important;
	color: var(--brand-gold-light) !important;
}
.btn-primary {
	background-color: var(--brand-navy) !important;
	border-color: var(--brand-navy) !important;
}
.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--brand-navy-dark) !important;
	border-color: var(--brand-navy-dark) !important;
}
a {
	color: var(--brand-navy);
}

/* =====================================================================
   Public site design system — everything below is scoped to #main-wrapper
   (the public front-end's root element) so none of it touches the admin
   panel. This is the layer that makes the site feel modern rather than
   fighting the 2021 theme's own CSS selector-by-selector.
   ===================================================================== */

#main-wrapper {
	--radius-sm: .5rem;
	--radius: 1rem;
	--radius-lg: 1.5rem;
	--shadow-sm: 0 2px 8px rgba(15, 35, 80, .06);
	--shadow: 0 8px 30px rgba(15, 35, 80, .08);
	--shadow-lg: 0 20px 50px rgba(15, 35, 80, .14);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: #24272e;
}

#main-wrapper h1, #main-wrapper h2, #main-wrapper h3, #main-wrapper h4, #main-wrapper h5, #main-wrapper h6 {
	font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
	font-weight: 700;
	letter-spacing: -.01em;
	color: var(--brand-navy-dark);
}
/* Footer sits on a dark background — headings need to stay light, not navy-on-navy. */
#main-wrapper .dark-footer h4.widget-title {
	color: #fff;
	opacity: .9;
}

#main-wrapper p {
	line-height: 1.7;
}

/* ---------- Site header / nav ---------- */
.site-header {
	background: #fff;
	padding: 0;
	box-shadow: 0 1px 0 rgba(15, 35, 80, .06);
	position: sticky;
	top: 0;
	z-index: 1030;
	transition: box-shadow .25s ease;
}
.site-header.is-scrolled {
	box-shadow: var(--shadow-sm);
}
.site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .85rem 0;
}
.site-nav-brand img {
	height: 42px;
	display: block;
}
.site-nav-menu ul {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-nav-menu > ul > li > a {
	color: #333a45;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	padding: .5rem 0;
	position: relative;
}
.site-nav-menu > ul > li > a:hover,
.site-nav-menu > ul > li.is-open > a {
	color: var(--brand-navy);
}
.site-nav-menu .has-dropdown {
	position: relative;
}
.site-nav-menu .dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: -1rem;
	min-width: 240px;
	background: #fff;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	padding: .5rem;
	margin: .5rem 0 0;
	list-style: none;
	max-height: 340px;
	overflow-y: auto;
	z-index: 20;
}
.site-nav-menu .has-dropdown:hover .dropdown-menu,
.site-nav-menu .has-dropdown.is-open .dropdown-menu {
	display: block;
}
.site-nav-menu .dropdown-menu li a {
	display: block;
	padding: .55rem .75rem;
	border-radius: .4rem;
	color: #333a45;
	text-decoration: none;
	font-size: .9rem;
}
.site-nav-menu .dropdown-menu li a:hover {
	background: #f4f6fb;
	color: var(--brand-navy);
}
.site-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
}
.site-nav-toggle span {
	display: block;
	height: 2px;
	width: 26px;
	background: var(--brand-navy);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.site-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.site-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991.98px) {
	.site-nav-toggle { display: flex; }
	.site-nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		box-shadow: var(--shadow-lg);
		border-top: 1px solid #eef0f4;
	}
	.site-nav-menu.is-open { display: block; }
	.site-nav-menu > ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: .5rem 1.25rem 1rem;
	}
	.site-nav-menu > ul > li > a {
		padding: .8rem 0;
		border-bottom: 1px solid #f2f3f6;
	}
	.site-nav-menu .dropdown-menu {
		position: static;
		display: none;
		box-shadow: none;
		background: #f8f9fb;
		margin: 0 0 .5rem;
	}
	.site-nav-menu .has-dropdown.is-open .dropdown-menu { display: block; }
}

/* ---------- Buttons ---------- */
#main-wrapper .btn {
	border-radius: 50px;
	font-weight: 600;
	padding: .65rem 1.5rem;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
#main-wrapper .btn-primary {
	background: var(--brand-navy);
	border-color: var(--brand-navy);
	color: #fff;
}
#main-wrapper .btn-primary:hover,
#main-wrapper .btn-primary:focus,
#main-wrapper .btn-primary:active {
	background: var(--brand-navy-dark);
	border-color: var(--brand-navy-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}
#main-wrapper .btn-outline-primary {
	color: var(--brand-navy);
	border-color: var(--brand-navy);
	background: transparent;
}
/* The base rule above uses #main-wrapper (an id) so it out-specifies the theme's
   own .btn-outline-primary:hover{color:#fff}; the hover/focus states must set the
   text colour themselves or it stays navy-on-navy (unreadable). */
#main-wrapper .btn-outline-primary:hover,
#main-wrapper .btn-outline-primary:focus,
#main-wrapper .btn-outline-primary:active {
	background: var(--brand-navy);
	border-color: var(--brand-navy);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}
#main-wrapper .btn-lg {
	padding: .9rem 2rem;
	font-size: 1.05rem;
}

/* ---------- Cards (browse grid, sidebar, contact form, etc.) ---------- */
#main-wrapper .card {
	border: none;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
}
#main-wrapper a.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

/* ---------- Listing card (browse grid, home featured/recent) ---------- */
/* Custom-built rather than reusing the theme's own card classes, which
   depend on an icon font/sprite that doesn't reliably load in production
   and left ragged empty space when sibling cards in a row differ in height. */
.listing-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border-radius: var(--radius);
	border: 1px solid #eef0f4;
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.listing-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}
.listing-card-media {
	position: relative;
	height: 170px;
	background: #fff;
	border-bottom: 1px solid #eef0f4;
	overflow: hidden;
}
/* The generated name tile sits underneath; the logo image (when present)
   layers on top with a white background and is CONTAINED — never cropped or
   overflowing. If the logo fails to load, onerror hides it and the name tile
   shows through. */
.listing-card-media > a { display: block; position: absolute; inset: 0; z-index: 2; }
.listing-card-media > a img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 1.25rem;
	background: #fff;
}

/* Generated logo-fallback (business name + monogram on a name-derived color) */
.logo-fallback {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	padding: 1rem 1.1rem;
	text-align: center;
	color: #fff;
	z-index: 1;
}
.logo-fallback .lf-monogram {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .22);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: .02em;
}
.logo-fallback .lf-name {
	font-weight: 700;
	font-size: .92rem;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.listing-card-badge {
	position: absolute;
	top: .85rem;
	left: .85rem;
	background: var(--brand-gold);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .03em;
	text-transform: uppercase;
	padding: .3rem .7rem;
	border-radius: 50px;
	box-shadow: var(--shadow-sm);
}
.listing-card-body {
	flex: 1 1 auto;
	padding: 1.25rem 1.25rem .5rem;
}
.listing-card-rating {
	color: #f0ad1f;
	font-size: .8rem;
	margin-bottom: .4rem;
}
.listing-card-rating i.is-empty {
	color: #dfe2e8;
}
.listing-card-rating-count {
	color: #9aa1ac;
	margin-left: .25rem;
}
.listing-card-title {
	font-size: 1.05rem;
	margin-bottom: .25rem;
}
.listing-card-title a {
	color: var(--brand-navy-dark);
	text-decoration: none;
}
.listing-card-title a:hover {
	color: var(--brand-navy);
}
.listing-card-city {
	color: #6b7280;
	font-size: .875rem;
	margin-bottom: .75rem;
}
.listing-card-city i {
	color: var(--brand-gold-dark);
	margin-right: .25rem;
}
.listing-card-meta {
	list-style: none;
	margin: 0;
	padding: .75rem 0 0;
	border-top: 1px solid #f2f3f6;
}
.listing-card-meta li {
	color: #565d6b;
	font-size: .85rem;
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	margin-bottom: .4rem;
}
.listing-card-meta li:last-child {
	margin-bottom: 0;
}
.listing-card-meta i {
	color: #9aa1ac;
	margin-top: .2rem;
	width: 14px;
	flex-shrink: 0;
}
.listing-card-footer {
	margin-top: auto;
	padding: 1rem 1.25rem;
	border-top: 1px solid #f2f3f6;
}
.listing-card-category {
	display: inline-block;
	background: #fdf6e8;
	color: var(--brand-gold-dark);
	font-weight: 600;
	font-size: .8rem;
	padding: .3rem .8rem;
	border: 1px solid transparent;
	border-radius: 50px;
	text-decoration: none;
	transition: background-color .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease;
}
#main-wrapper .listing-card-category:hover,
#main-wrapper .listing-card-category:focus {
	background: var(--brand-navy);
	border-color: var(--brand-navy);
	color: #fff;
}

/* ---------- Hero ---------- */
.site-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 12%, rgba(219, 168, 58, .30), transparent 40%),
		radial-gradient(circle at 8% 105%, rgba(36, 68, 140, .55), transparent 45%),
		linear-gradient(135deg, var(--brand-navy-dark), var(--brand-navy) 60%, var(--brand-navy-light));
}
.site-hero .container {
	position: relative;
	z-index: 2;
}
.site-hero h1 {
	color: #fff !important;
	font-size: clamp(1.75rem, 4vw, 2.85rem);
}
.site-hero p {
	color: rgba(255, 255, 255, .82) !important;
}
.site-hero .search-card {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	border: none;
}
.site-hero .search-card .form-control {
	border-radius: 50px;
	padding: .75rem 1.1rem;
	border: 1px solid #e4e7ee;
}
.site-hero .search-card .btn {
	white-space: nowrap;
}

/* ---------- Stats bar ---------- */
.stat-block {
	text-align: center;
	padding: 0 .5rem;
}
.stat-block .stat-number {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	color: var(--brand-navy);
	line-height: 1.1;
	white-space: nowrap;
}
.stat-block .stat-label {
	color: #6b7280;
	font-size: .875rem;
	margin-top: .25rem;
}

/* ---------- Icon circles (how it works / why us) ---------- */
.icon-circle {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.85rem;
	color: #fff;
	box-shadow: var(--shadow);
}

/* ---------- Category tiles ---------- */
.category-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: .5rem;
	padding: 2rem 1rem;
	min-height: 160px;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-sm);
	text-decoration: none;
	border: 1px solid #eef0f4;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.category-tile:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: var(--brand-gold-light);
}
.category-tile .category-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fdf6e8;
	color: var(--brand-gold-dark);
	font-size: 1.35rem;
}
.category-tile .category-name {
	font-weight: 700;
	color: var(--brand-navy-dark);
}
.category-tile .category-count {
	color: #8a90a0;
	font-size: .82rem;
}

/* ---------- Section rhythm ---------- */
.site-section {
	padding: 4.5rem 0;
}
@media (max-width: 767.98px) {
	.site-section { padding: 3rem 0; }
}
.section-heading {
	margin-bottom: 2.5rem;
}
.section-heading p {
	color: #6b7280;
}

/* ---------- Scroll reveal ---------- */
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}
.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* =====================================================================
   Header top-bar + nav CTA
   ===================================================================== */
.site-topbar {
	background: var(--brand-navy-dark);
	color: rgba(255, 255, 255, .8);
	font-size: .82rem;
}
.site-topbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .5rem 0;
	min-height: 38px;
}
.site-topbar-note i {
	color: var(--brand-gold);
	margin-right: .4rem;
}
.site-topbar-links {
	display: flex;
	gap: 1.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-topbar-links a {
	color: rgba(255, 255, 255, .8);
	text-decoration: none;
}
.site-topbar-links a:hover { color: #fff; }
.site-topbar-links i { color: var(--brand-gold); margin-right: .35rem; }
@media (max-width: 767.98px) {
	.site-topbar-links { display: none; }
	.site-topbar .container { justify-content: center; }
}

.site-nav-cta {
	display: inline-flex !important;
	align-items: center;
	gap: .45rem;
	background: var(--brand-gold);
	color: #fff !important;
	padding: .6rem 1.25rem !important;
	border-radius: 50px;
	font-weight: 700 !important;
	box-shadow: 0 6px 16px rgba(219, 168, 58, .35);
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.site-nav-cta:hover {
	background: var(--brand-gold-dark);
	transform: translateY(-2px);
	color: #fff !important;
}
.site-nav-menu > ul > li.nav-cta-item > a::after { display: none; }
@media (max-width: 991.98px) {
	.site-nav-cta { justify-content: center; margin-top: .5rem; }
}

/* =====================================================================
   Breadcrumb
   ===================================================================== */
.detail-breadcrumb {
	background: #f6f8fc;
	border-bottom: 1px solid #eef0f4;
	font-size: .85rem;
}
.detail-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
	list-style: none;
	margin: 0;
	padding: .85rem 0;
}
.detail-breadcrumb a { color: #6b7280; text-decoration: none; }
.detail-breadcrumb a:hover { color: var(--brand-navy); }
.detail-breadcrumb li.sep { color: #c2c8d2; }
.detail-breadcrumb li.current { color: var(--brand-navy-dark); font-weight: 600; }

/* =====================================================================
   Listing detail — hero
   ===================================================================== */
.detail-hero {
	position: relative;
	padding: 3rem 0 5.5rem;
	background:
		radial-gradient(circle at 90% 10%, rgba(219, 168, 58, .22), transparent 42%),
		linear-gradient(135deg, var(--brand-navy-dark), var(--brand-navy) 65%, var(--brand-navy-light));
}
.detail-hero + .detail-hero-overlap { margin-top: -4.5rem; }
.detail-hero-card {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 1.75rem;
	display: flex;
	align-items: center;
	gap: 1.75rem;
	flex-wrap: wrap;
}
.detail-logo {
	position: relative;
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border-radius: var(--radius);
	border: 1px solid #eef0f4;
	background: #fff;
	overflow: hidden;
}
.detail-logo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: .75rem;
	background: #fff;
	z-index: 2;
}
/* Detail hero shows a monogram only (the full name is the H1 beside it). */
.detail-logo .logo-fallback { gap: 0; padding: 0; }
.detail-logo .logo-fallback .lf-monogram {
	width: 100%;
	height: 100%;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font-size: 2.75rem;
}
.detail-hero-info { flex: 1 1 320px; min-width: 0; }
.detail-category {
	display: inline-block;
	background: #fdf6e8;
	color: var(--brand-gold-dark);
	font-weight: 700;
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .03em;
	padding: .3rem .8rem;
	border-radius: 50px;
	text-decoration: none;
	margin-bottom: .6rem;
}
.detail-hero-info h1 {
	font-size: clamp(1.5rem, 3.5vw, 2.1rem);
	margin: 0 0 .6rem;
	line-height: 1.2;
}
.detail-meta-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .5rem 1rem;
	margin-bottom: .6rem;
}
.detail-stars { color: #f0ad1f; font-size: .95rem; letter-spacing: 1px; }
.detail-stars i.is-empty { color: #dfe2e8; }
.detail-rating-value { font-weight: 700; color: var(--brand-navy-dark); }
.detail-rating-count { color: #6b7280; font-size: .875rem; }
.detail-verified {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	background: #e7f6ee;
	color: #1a7a48;
	font-weight: 600;
	font-size: .8rem;
	padding: .3rem .7rem;
	border-radius: 50px;
}
.detail-address {
	color: #565d6b;
	font-size: .95rem;
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: .5rem;
}
.detail-address i { color: var(--brand-gold-dark); margin-top: .2rem; }
.detail-hero-cta {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	flex-shrink: 0;
	width: 220px;
}
.detail-hero-cta .btn { width: 100%; justify-content: center; display: inline-flex; align-items: center; gap: .5rem; }
@media (max-width: 767.98px) {
	.detail-hero { padding-bottom: 4.5rem; }
	.detail-hero-card { padding: 1.25rem; gap: 1.1rem; }
	.detail-logo { width: 84px; height: 84px; }
	.detail-hero-cta { width: 100%; }
}

/* Brand-gold solid button (used for primary contact CTAs) */
#main-wrapper .btn-gold {
	background: var(--brand-gold);
	border: 1px solid var(--brand-gold);
	color: #fff;
}
#main-wrapper .btn-gold:hover {
	background: var(--brand-gold-dark);
	border-color: var(--brand-gold-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

/* =====================================================================
   Trust bar (rating sources)
   ===================================================================== */
.trust-bar { position: relative; z-index: 3; }
.trust-badge {
	display: flex;
	align-items: center;
	gap: .85rem;
	background: #fff;
	border: 1px solid #eef0f4;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 1rem 1.25rem;
	height: 100%;
}
.trust-badge-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
	background: #f4f6fb;
	color: var(--brand-navy);
}
.trust-badge-icon.is-google { background: #eaf1fe; color: #1a73e8; }
.trust-badge-icon.is-star { background: #fdf6e8; color: var(--brand-gold-dark); }
.trust-badge-icon.is-verified { background: #e7f6ee; color: #1a7a48; }
.trust-badge-label { font-size: .78rem; color: #8a90a0; text-transform: uppercase; letter-spacing: .03em; }
.trust-badge-value { font-weight: 700; color: var(--brand-navy-dark); font-size: 1.05rem; line-height: 1.2; }
.trust-badge-value small { font-weight: 500; color: #8a90a0; font-size: .78rem; }

/* =====================================================================
   Content blocks + sticky contact card
   ===================================================================== */
.detail-block {
	background: #fff;
	border: 1px solid #eef0f4;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 1.75rem;
	margin-bottom: 1.5rem;
}
.detail-block-title {
	font-size: 1.15rem;
	margin: 0 0 1.1rem;
	padding-bottom: .85rem;
	border-bottom: 1px solid #f2f3f6;
	display: flex;
	align-items: center;
	gap: .6rem;
}
.detail-block-title i { color: var(--brand-gold-dark); }
.detail-block p { color: #4b5563; margin: 0; }

.detail-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.detail-gallery a { display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 3; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.detail-gallery a:hover img { transform: scale(1.05); }
@media (max-width: 575.98px) { .detail-gallery { grid-template-columns: repeat(2, 1fr); } }

.detail-map { border-radius: var(--radius); overflow: hidden; border: 1px solid #eef0f4; line-height: 0; }
.detail-map iframe { width: 100%; height: 320px; border: 0; display: block; }

.contact-card {
	background: #fff;
	border: 1px solid #eef0f4;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.5rem;
	position: sticky;
	top: 90px;
}
.contact-card-title { font-size: 1.1rem; margin: 0 0 1.1rem; }
.contact-cta { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.contact-cta .btn { width: 100%; justify-content: center; display: inline-flex; align-items: center; gap: .5rem; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: .8rem;
	padding: .8rem 0;
	border-top: 1px solid #f2f3f6;
	font-size: .92rem;
}
.contact-list li:first-child { border-top: none; }
.contact-list-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #f4f6fb;
	color: var(--brand-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: .95rem;
}
.contact-list-label { font-size: .74rem; color: #8a90a0; text-transform: uppercase; letter-spacing: .03em; }
.contact-list-value { color: #24272e; word-break: break-word; }
.contact-list-value a { color: var(--brand-navy); text-decoration: none; font-weight: 600; }
.contact-list-value a:hover { text-decoration: underline; }

/* =====================================================================
   Browse / listings filter panel
   The theme is Bootstrap 4, which has no `.form-select` class, so those
   selects arrive unstyled (native, sized to content). Style form controls
   here and wrap them in a proper sticky filter panel.
   ===================================================================== */
.filter-panel {
	background: #fff;
	border: 1px solid #eef0f4;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 1.5rem;
	position: sticky;
	top: 90px;
}
.filter-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f2f3f6;
}
.filter-panel-head h2 {
	font-size: 1.1rem;
	margin: 0;
	display: flex;
	align-items: center;
	gap: .5rem;
}
.filter-panel-head h2 i { color: var(--brand-gold-dark); }
.filter-reset { font-size: .82rem; color: #8a90a0; text-decoration: none; }
.filter-reset:hover { color: var(--brand-navy); }
.filter-field { margin-bottom: 1.1rem; }
.filter-field > label {
	display: block;
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: #6b7280;
	margin-bottom: .45rem;
}

/* Unified control styling for the public site (works for BS4 form-control and
   the BS5-named form-select the views use). */
#main-wrapper .filter-panel .form-control,
#main-wrapper .filter-panel .form-select {
	width: 100%;
	display: block;
	height: auto;
	padding: .7rem 1rem;
	font-size: .92rem;
	line-height: 1.4;
	color: #24272e;
	background-color: #fff;
	border: 1px solid #e4e7ee;
	border-radius: var(--radius-sm);
	transition: border-color .15s ease, box-shadow .15s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#main-wrapper .filter-panel .form-control:focus,
#main-wrapper .filter-panel .form-select:focus {
	outline: none;
	border-color: var(--brand-navy-light);
	box-shadow: 0 0 0 3px rgba(36, 68, 140, .12);
}
/* Custom dropdown chevron (native arrow removed above) */
#main-wrapper .filter-panel .form-select {
	padding-right: 2.5rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
}
#main-wrapper .filter-panel .btn { width: 100%; margin-top: .25rem; }

/* Active-filter chips above the results grid */
.result-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: .75rem;
	margin-bottom: 1.5rem;
}
.result-toolbar h1 { font-size: 1.35rem; margin: 0; }
.filter-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-chip {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	background: #f4f6fb;
	color: var(--brand-navy-dark);
	font-size: .82rem;
	font-weight: 600;
	padding: .35rem .75rem;
	border-radius: 50px;
	text-decoration: none;
}
.filter-chip i { font-size: .7rem; color: #8a90a0; }
.filter-chip:hover { background: #e7ebf5; }
.filter-chip:hover i { color: var(--brand-navy); }

/* Mobile: filter panel above results, not sticky */
@media (max-width: 991.98px) {
	.filter-panel { position: static; margin-bottom: 1.5rem; }
}

/* =====================================================================
   Footer (richer)
   ===================================================================== */
#main-wrapper .dark-footer {
	background: var(--brand-navy-dark);
	color: rgba(255, 255, 255, .72);
	padding-top: 3.5rem;
}
#main-wrapper .dark-footer .footer-widget p { color: rgba(255, 255, 255, .66); font-size: .92rem; }
#main-wrapper .dark-footer h4.widget-title {
	color: #fff;
	opacity: 1;
	font-size: 1rem;
	margin-bottom: 1.1rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
}
#main-wrapper .dark-footer .footer-menu { list-style: none; padding: 0; margin: 0; }
#main-wrapper .dark-footer .footer-menu li { margin-bottom: .6rem; }
#main-wrapper .dark-footer .footer-menu a {
	color: rgba(255, 255, 255, .68);
	text-decoration: none;
	font-size: .92rem;
	transition: color .15s ease, padding-left .15s ease;
}
#main-wrapper .dark-footer .footer-menu a:hover { color: var(--brand-gold-light); padding-left: 4px; }
.footer-logo-badge {
	display: inline-flex;
	background: #fff;
	border-radius: 12px;
	padding: .6rem .85rem;
	margin-bottom: 1rem;
}
.footer-logo-badge img { height: 34px; display: block; }
.footer-social { list-style: none; display: flex; gap: .6rem; padding: 0; margin: 1.1rem 0 0; }
.footer-social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: rgba(255, 255, 255, .8);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background .15s ease, color .15s ease, transform .15s ease;
}
.footer-social a:hover { background: var(--brand-gold); color: #fff; transform: translateY(-2px); }
#main-wrapper .dark-footer .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	margin-top: 2.5rem;
	padding: 1.25rem 0;
}
#main-wrapper .dark-footer .footer-bottom p { color: rgba(255, 255, 255, .55); font-size: .85rem; }
.footer-contact-line {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	margin-bottom: .7rem;
	font-size: .9rem;
	color: rgba(255, 255, 255, .72);
}
.footer-contact-line i { color: var(--brand-gold); margin-top: .2rem; }
