/* ==========================================================================
   Franchise Template v2 — Mobile-first, Redesign
   ========================================================================== */

:root {
	--fv2-green: #5ec99a;
	--fv2-green-dark: #4dba88;
	--fv2-green-light: #f0faf4;
	--fv2-dark: #373634;
	--fv2-dark-soft: #4a4845;
	--fv2-grey: #f5f5f3;
	--fv2-grey-mid: #dddbd8;
	--fv2-off-white: #fafaf9;
	--fv2-white: #fff;
	--fv2-red: #E40000;
	--fv2-radius: 12px;
	--fv2-radius-sm: 8px;
	--fv2-max: 1100px;
	--fv2-shadow: 0 2px 12px rgba(55,54,52,0.07);
	--fv2-shadow-lg: 0 4px 24px rgba(55,54,52,0.10);
	--fv2-shadow-hover: 0 6px 28px rgba(55,54,52,0.14);
}

/* Prevent horizontal scroll on franchise pages — theme nav & popup overflow outside .fv2 */
html:has(body.single-dfd_dog_walker),
html:has(body.single-dfd_home_boarder) { overflow-x: hidden; }

.fv2 *, .fv2 *::before, .fv2 *::after { box-sizing: border-box; }
.fv2 { color: var(--fv2-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; word-break: break-word; }
.fv2__container { max-width: var(--fv2-max); margin: 0 auto; padding: 0 20px; }

/* Reusable card style */
.fv2__card {
	background: var(--fv2-white);
	border-radius: var(--fv2-radius);
	padding: 1.5rem;
	box-shadow: var(--fv2-shadow);
}

/* Section titles — green accent bar + varied weight */
.fv2__section-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 1.15rem 0;
	color: var(--fv2-dark);
	position: relative;
	padding-left: 0.85rem;
}
.fv2__section-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.15em;
	bottom: 0.15em;
	width: 3px;
	border-radius: 2px;
	background: var(--fv2-green);
}

/* ==========================================================================
   1. HERO
   Three-column layout: mascot | title | franchisee photo
   Mobile: stacked (title + photo, mascot hidden)
   ========================================================================== */
.fv2__hero {
	position: relative;
	overflow: hidden;
	padding: 3.5rem 20px 2rem;
}

.fv2__hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.fv2__hero-bg--mobile { display: none; }

.fv2__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.55) 100%);
}

.fv2__hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
}

/* Mascot — hidden on mobile, shown on desktop */
.fv2__hero-mascot {
	display: none;
}
.fv2__hero-mascot img {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

/* Title — two lines: service type + location */
.fv2__hero-title {
	color: var(--fv2-white);
	font-weight: 700;
	margin: 0;
	text-shadow: 0 2px 8px rgba(0,0,0,0.4);
	line-height: 1.15;
}
.fv2__hero-title-service {
	display: block;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	opacity: 0.92;
}
.fv2__hero-title-location {
	display: block;
	font-size: 1.9rem;
	margin-top: 0.1em;
	font-weight: 800;
}

/* Franchisee profile (photo + name) */
.fv2__hero-profile {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Photo with scalloped green badge */
.fv2__hero-photo {
	width: 130px;
	height: 130px;
	margin: 0 auto 0.4rem;
	filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.fv2__hero-mount {
	width: 100%;
	height: 100%;
	background-image: url('../img/franchise-mount.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 4px;
}
.fv2__hero-mount img {
	width: 78%;
	height: 78%;
	object-fit: cover;
	display: block;
	border-radius: 50%;
}

.fv2__hero-name {
	color: var(--fv2-white);
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Hide the original happy-holiday mascot from the site header on franchise pages */
body.single-dfd_dog_walker .main-nav__happy-holiday,
body.single-dfd_home_boarder .main-nav__happy-holiday {
	display: none !important;
}

/* ==========================================================================
   2. CTA BAR
   ========================================================================== */
.fv2__cta-bar {
	background: linear-gradient(135deg, var(--fv2-green) 0%, var(--fv2-green-dark) 100%);
	padding: 0.75rem 0;
	box-shadow: 0 2px 8px rgba(94,201,154,0.25);
}
.fv2__cta-bar .fv2__container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.fv2__cta-phone {
	color: var(--fv2-white);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.05rem;
	white-space: nowrap;
	transition: opacity 0.2s;
}
.fv2__cta-phone:hover { opacity: 0.85; }
.fv2__cta-enquire {
	background: var(--fv2-white);
	color: var(--fv2-green-dark);
	font-weight: 700;
	font-size: 0.8rem;
	padding: 0.45rem 1.4rem;
	border-radius: 30px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.fv2__cta-enquire:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

/* ==========================================================================
   3. WHY CHOOSE DIGS FOR DOGS
   Mobile: single-card Swiper carousel with pagination dots
   Desktop: static 3-col grid (no swiping)
   ========================================================================== */
.fv2__why-choose {
	background: var(--fv2-green-light);
	padding: 2rem 0 1.75rem;
	border-bottom: 1px solid rgba(94,201,154,0.12);
}
.fv2__why-choose-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--fv2-dark);
	text-align: center;
	margin: 0 0 1rem 0;
}
.fv2__why-choose-subtitle {
	font-size: 0.85rem;
	color: var(--fv2-dark-soft);
	text-align: center;
	margin: 0 0 1.5rem 0;
}
/* Mobile: horizontal scroll-snap with peek */
.fv2__why-choose-grid {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding: 0 calc(50vw - 42vw) 0.5rem;
}
/* Hide scrollbar but keep scrollable */
.fv2__why-choose-grid::-webkit-scrollbar { display: none; }
.fv2__why-choose-grid { -ms-overflow-style: none; scrollbar-width: none; }

.fv2__why-choose-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	scroll-snap-align: center;
	flex: 0 0 84vw;
	min-width: 0;
}
/* Illustration — floats on the section's green-light background */
.fv2__why-choose-img {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.5rem;
}
.fv2__why-choose-img img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}
/* Text area — white card beneath the illustration */
.fv2__why-choose-text {
	background: var(--fv2-white);
	border-radius: var(--fv2-radius);
	padding: 1.1rem 1.25rem 1.25rem;
	box-shadow: var(--fv2-shadow);
	width: 100%;
	margin-top: 0;
	position: relative;
	z-index: 1;
	min-height: 9.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.fv2__why-choose-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--fv2-dark);
	margin: 0 0 0.3rem 0;
	letter-spacing: 0.01em;
	line-height: 1.3;
}
.fv2__why-choose-card p {
	font-size: 0.88rem;
	color: var(--fv2-dark-soft);
	margin: 0;
	line-height: 1.55;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
/* Banner CTA below the grid */
.fv2__why-choose-banner {
	margin-top: 1.25rem;
	background: var(--fv2-green-light);
	border-radius: var(--fv2-radius);
	padding: 1rem 1.25rem;
	text-align: center;
	box-shadow: var(--fv2-shadow);
}
.fv2__why-choose-banner p {
	color: var(--fv2-dark-soft);
	font-size: 0.92rem;
	font-weight: 600;
	margin: 0 0 0.75rem 0;
	line-height: 1.4;
}
.fv2__why-choose-cta {
	display: inline-block;
	background: linear-gradient(135deg, var(--fv2-green) 0%, var(--fv2-green-dark) 100%);
	color: var(--fv2-white);
	font-weight: 700;
	font-size: 0.78rem;
	padding: 0.5rem 1.5rem;
	border-radius: 30px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 3px 12px rgba(94,201,154,0.3);
}
.fv2__why-choose-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(94,201,154,0.4);
}

/* Swipe indicator — mobile only, used on horizontal-scroll sections */
.fv2__swipe-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	font-size: 0.7rem;
	color: var(--fv2-dark-soft);
	opacity: 0.55;
	margin-top: 0.5rem;
	letter-spacing: 0.02em;
}
/* Hidden by default; JS adds .is-visible */
.fv2__swipe-arrow {
	width: 0;
	height: 16px;
	opacity: 0;
	overflow: hidden;
	transition: opacity 0.25s, width 0.25s;
	pointer-events: none;
}
.fv2__swipe-arrow.is-visible {
	width: 16px;
	opacity: 1;
}
.fv2__swipe-arrow--left {
	animation: fv2-nudge-left 2s ease-in-out infinite;
}
.fv2__swipe-arrow--right {
	animation: fv2-nudge-right 2s ease-in-out infinite;
}
@keyframes fv2-nudge-left {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(-5px); }
}
@keyframes fv2-nudge-right {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(5px); }
}

/* ==========================================================================
   3b. HOW WE WORK
   ========================================================================== */
.fv2__how-we-work {
	background: var(--fv2-white);
	padding: 1.75rem 0;
}
.fv2__how-we-work-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--fv2-dark);
	text-align: center;
	margin: 0 0 1.25rem 0;
}
.fv2__how-we-work-steps {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.fv2__how-step {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: var(--fv2-green-light);
	border-radius: var(--fv2-radius);
	padding: 1.1rem 1.25rem;
}
.fv2__how-step-header {
	display: contents;
}
.fv2__how-step-num {
	flex-shrink: 0;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	color: var(--fv2-green);
	opacity: 0.5;
	margin-top: 0.1rem;
}
.fv2__how-step-body {
	flex: 1;
}
.fv2__how-step h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--fv2-dark);
	margin: 0 0 0.2rem 0;
	line-height: 1.3;
}
.fv2__how-step p {
	font-size: 0.85rem;
	color: var(--fv2-dark-soft);
	margin: 0;
	line-height: 1.55;
}

/* ==========================================================================
   TWO-COLUMN BODY LAYOUT
   ========================================================================== */
.fv2__body {
	padding: 1.75rem 0 0;
	background: var(--fv2-grey);
}
.fv2__body-grid {
	display: flex;
	flex-direction: column;
}
.fv2__content {
	flex: 1;
	min-width: 0;
}

/* ==========================================================================
   4. INTRO — in a card
   ========================================================================== */
.fv2__intro {
	margin-bottom: 1.75rem;
}
.fv2__intro-text {
	font-size: 0.92rem;
	line-height: 1.75;
	color: var(--fv2-dark-soft);
}
.fv2__intro-text p {
	margin: 0 0 0.6rem 0;
}
.fv2__intro-text p:last-child { margin-bottom: 0; }

/* Read more toggle */
.fv2__readmore-toggle {
	background: none;
	border: none;
	font-family: inherit;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--fv2-green);
	cursor: pointer;
	padding: 0.5rem 0 0;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	transition: color 0.2s;
}
.fv2__readmore-toggle:hover { color: var(--fv2-green-dark); }
.fv2__readmore-arrow {
	font-size: 0.7rem;
	transition: transform 0.3s;
}
.fv2__readmore-toggle.active .fv2__readmore-arrow {
	transform: rotate(180deg);
}
.fv2__readmore-content {
	font-size: 0.88rem;
	line-height: 1.65;
	margin-top: 0.75rem;
	padding-bottom: 0.25rem;
	color: var(--fv2-dark-soft);
}
.fv2__readmore-content p { margin: 0 0 0.6rem 0; }

/* ==========================================================================
   5. GALLERY (moved up)
   ========================================================================== */
.fv2__gallery {
	margin-bottom: 1.75rem;
}
.fv2__gallery-main-wrap {
	position: relative;
	border-radius: var(--fv2-radius);
	overflow: hidden;
	box-shadow: var(--fv2-shadow-lg);
}
.fv2__gallery-main {
	border-radius: var(--fv2-radius);
	overflow: hidden;
}
.fv2__gallery-main .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
}
/* Image counter overlay */
.fv2__gallery-counter {
	position: absolute;
	bottom: 0.75rem;
	right: 0.75rem;
	background: rgba(0,0,0,0.6);
	color: var(--fv2-white);
	font-size: 0.72rem;
	font-weight: 600;
	padding: 0.2rem 0.65rem;
	border-radius: 20px;
	z-index: 2;
	pointer-events: none;
	backdrop-filter: blur(4px);
}
.fv2__gallery-thumbs {
	margin-top: 8px;
}
.fv2__gallery-thumbs .swiper-slide {
	opacity: 0.4;
	cursor: pointer;
	border-radius: 6px;
	overflow: hidden;
	transition: opacity 0.2s, transform 0.2s;
}
.fv2__gallery-thumbs .swiper-slide:hover { opacity: 0.7; }
.fv2__gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	box-shadow: 0 0 0 2px var(--fv2-green);
}
.fv2__gallery-thumbs .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
}

/* ==========================================================================
   6. SERVICES — 2-col grid of white cells
   ========================================================================== */
.fv2__services {
	margin-bottom: 1.75rem;
}

/* Subtitle below section title */
.fv2__services-subtitle {
	font-size: 0.85rem;
	color: var(--fv2-dark-soft);
	margin: -0.75rem 0 1.15rem 0;
	padding-left: 0.85rem;
	font-style: italic;
}

.fv2__services-card {
	background: var(--fv2-white);
	border-radius: var(--fv2-radius);
	padding: 0.5rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--fv2-dark-soft);
	box-shadow: var(--fv2-shadow);
}

/* Table — render as stacked single-column rows */
.fv2__services-card table {
	width: 100%;
	border-collapse: collapse;
	border: none;
}
.fv2__services-card table,
.fv2__services-card tbody,
.fv2__services-card tr,
.fv2__services-card td {
	display: block;
	width: 100%;
}
.fv2__services-card tr {
	display: flex;
	flex-wrap: wrap;
}
.fv2__services-card td {
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--fv2-grey-mid);
	border-radius: 0;
	padding: 0.85rem 1rem;
	vertical-align: top;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
}
.fv2__services-card tr:last-child td:last-child,
.fv2__services-card td:last-child:only-child {
	border-bottom: none;
}
.fv2__services-card td:empty {
	display: none;
	padding: 0;
	border: none;
}
/* Service name — first bold = row label, pushed left */
.fv2__services-card td strong:first-child,
.fv2__services-card td b:first-child {
	flex: 1;
	color: var(--fv2-dark);
	font-size: 0.92rem;
	font-weight: 700;
	margin: 0;
	padding: 0;
}
/* Price — bold green, pushed right */
.fv2__services-card td strong,
.fv2__services-card td b {
	color: var(--fv2-green-dark);
	font-weight: 700;
	font-size: 1rem;
}
/* Description text — full width below name+price */
.fv2__services-card td em {
	display: block;
	width: 100%;
	font-size: 0.8rem;
	color: var(--fv2-dark-soft);
	font-style: normal;
	font-weight: 400;
	margin-top: 0.15rem;
	line-height: 1.4;
}

/* Footnote below the grid */
.fv2__services-footnote {
	font-size: 0.75rem;
	color: var(--fv2-dark-soft);
	text-align: center;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--fv2-grey-mid);
	line-height: 1.5;
}

/* Fallback: flat WYSIWYG (non-table) — simple flowing list */
.fv2__services-card p {
	margin: 0;
	padding: 0.65rem 1rem;
	border-bottom: 1px solid var(--fv2-grey-mid);
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
}
.fv2__services-card p:last-child { border-bottom: none; }
.fv2__services-card p strong:first-child,
.fv2__services-card p b:first-child {
	flex: 1;
	color: var(--fv2-dark);
	font-size: 0.92rem;
	font-weight: 700;
}
.fv2__services-card p strong,
.fv2__services-card p b {
	color: var(--fv2-green-dark);
	font-weight: 700;
	font-size: 1rem;
}
.fv2__services-card p em {
	display: block;
	width: 100%;
	font-size: 0.8rem;
	color: var(--fv2-dark-soft);
	font-style: normal;
	margin-top: 0.15rem;
}
.fv2__services-card u { text-decoration: none; }

/* Repeater service items (alternative mode) */
.fv2__service-item {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 0.7rem 1rem;
	font-size: 0.95rem;
	background: var(--fv2-grey);
	border: none;
	border-radius: var(--fv2-radius-sm);
	border-left: 3px solid var(--fv2-green);
	margin-bottom: 0.5rem;
}
.fv2__service-item:last-child {
	margin-bottom: 0;
}
.fv2__service-name {
	font-weight: 500;
	flex: 1;
	color: var(--fv2-dark-soft);
}
.fv2__service-detail {
	color: var(--fv2-green-dark);
	text-align: right;
	margin-left: 1rem;
	white-space: nowrap;
	font-weight: 700;
}

/* "Get a Quote" CTA below services */
.fv2__services-cta {
	display: block;
	text-align: center;
	background: linear-gradient(135deg, var(--fv2-green) 0%, var(--fv2-green-dark) 100%);
	color: var(--fv2-white);
	font-weight: 700;
	font-size: 0.9rem;
	padding: 0.8rem 2rem;
	border-radius: 30px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-top: 1.25rem;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 3px 12px rgba(94,201,154,0.3);
}
.fv2__services-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(94,201,154,0.4);
}

/* ==========================================================================
   7. REVIEWS
   ========================================================================== */
.fv2__reviews {
	background: linear-gradient(135deg, var(--fv2-green) 0%, var(--fv2-green-dark) 100%);
	border-radius: var(--fv2-radius);
	padding: 1.5rem 1.5rem 3rem;
	margin-bottom: 1.75rem;
	position: relative;
	box-shadow: var(--fv2-shadow-lg);
}
.fv2__reviews .fv2__section-title {
	color: var(--fv2-white);
	text-align: center;
	padding-left: 0;
}
.fv2__reviews .fv2__section-title::before {
	display: none;
}
.fv2__reviews-slider .swiper-wrapper {
	align-items: stretch;
}
.fv2__reviews-slider .swiper-slide {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fv2__review {
	text-align: center;
	padding: 0.25rem 0.5rem 1.5rem;
	color: var(--fv2-white);
}
.fv2__review-stars {
	font-size: 1.2rem;
	color: #ffd700;
	letter-spacing: 0.12em;
	margin-bottom: 0.6rem;
}
.fv2__review-photo {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 0.6rem;
	border: 3px solid rgba(255,255,255,0.6);
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.fv2__review-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.fv2__review-quote {
	font-size: 0.9rem;
	font-style: italic;
	line-height: 1.6;
	margin: 0 0 0.6rem 0;
	border: none;
	padding: 0;
	quotes: none;
	color: var(--fv2-white);
}
.fv2__review-author {
	font-size: 0.78rem;
	opacity: 0.85;
	margin: 0;
	color: var(--fv2-white);
}
.fv2__reviews-pagination {
	position: absolute;
	bottom: 0.75rem;
	left: 0;
	right: 0;
}
.fv2__reviews-pagination .swiper-pagination-bullet {
	background: var(--fv2-white);
	opacity: 0.4;
}
.fv2__reviews-pagination .swiper-pagination-bullet-active { opacity: 1; }

/* ==========================================================================
   7b. TRUST FALLBACK (when no testimonials)
   ========================================================================== */
.fv2__trust-block {
	margin-bottom: 1.75rem;
}
.fv2__trust-block .fv2__section-title {
	text-align: center;
}
.fv2__trust-block .fv2__section-title::before {
	left: 50%;
	transform: translateX(-50%);
}
.fv2__trust-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
.fv2__trust-item {
	background: var(--fv2-white);
	border-radius: var(--fv2-radius);
	padding: 1.5rem 1.25rem;
	text-align: center;
	box-shadow: var(--fv2-shadow);
	transition: transform 0.2s, box-shadow 0.2s;
}
.fv2__trust-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--fv2-shadow-hover);
}
.fv2__trust-item-icon {
	font-size: 1.4rem;
	color: var(--fv2-white);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--fv2-green) 0%, var(--fv2-green-dark) 100%);
	margin: 0 auto 0.75rem;
	box-shadow: 0 2px 8px rgba(94,201,154,0.25);
}
.fv2__trust-item h3 {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--fv2-dark);
	margin: 0 0 0.4rem 0;
}
.fv2__trust-item p {
	font-size: 0.82rem;
	color: var(--fv2-dark-soft);
	margin: 0;
	line-height: 1.55;
}

/* ==========================================================================
   8. ENQUIRY FORM
   ========================================================================== */
.fv2__sidebar {
	margin-bottom: 1.75rem;
}
.fv2__form-card {
	background: var(--fv2-white);
	border: 2px solid var(--fv2-green);
	border-radius: var(--fv2-radius);
	padding: 1.5rem;
	box-shadow: var(--fv2-shadow-lg);
}
.fv2__form-heading {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--fv2-dark);
	margin: 0 0 0.25rem 0;
	text-align: center;
}
.fv2__form-subheading {
	font-size: 0.85rem;
	color: var(--fv2-dark-soft);
	margin: 0 0 0.75rem 0;
	text-align: center;
}
.fv2__form-trust {
	text-align: center;
	color: var(--fv2-dark-soft);
	font-size: 0.7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0.75rem 0 0 0;
}

/* GF overrides */
.fv2__form-card .gform_wrapper {
	margin: 0 !important;
	padding: 0 !important;
	max-width: 100% !important;
}
.fv2__form-card .gform_body { padding: 0 !important; }
.fv2__form-card .gform_fields {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 0.5rem !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.fv2__form-card .gfield {
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
}
.fv2__form-card .gfield_label { display: none !important; }
.fv2__form-card .ginput_container input[type="text"],
.fv2__form-card .ginput_container input[type="email"],
.fv2__form-card .ginput_container input[type="tel"],
.fv2__form-card .ginput_container input[type="number"],
.fv2__form-card .ginput_container textarea {
	width: 100% !important;
	padding: 0.65rem 0.85rem !important;
	border: 1.5px solid var(--fv2-grey-mid) !important;
	border-radius: var(--fv2-radius-sm) !important;
	font-family: inherit !important;
	font-size: 0.88rem !important;
	line-height: 1.6 !important;
	background: var(--fv2-white) !important;
	color: var(--fv2-dark) !important;
	outline: none !important;
	box-shadow: var(--fv2-shadow) !important;
	transition: border-color 0.2s, box-shadow 0.2s !important;
}
.fv2__form-card .ginput_container input:focus,
.fv2__form-card .ginput_container textarea:focus {
	border-color: var(--fv2-green) !important;
	box-shadow: 0 2px 12px rgba(55,54,52,0.07), 0 0 0 3px rgba(94,201,154,0.12) !important;
}
.fv2__form-card .ginput_container textarea {
	min-height: 80px !important;
	resize: vertical !important;
}
.fv2__form-card .gform_footer,
.fv2__form-card .gform_page_footer {
	padding: 0.5rem 0 0 !important;
	margin: 0 !important;
}
.fv2__form-card input[type="submit"],
.fv2__form-card .gform_button {
	background: linear-gradient(135deg, var(--fv2-green) 0%, var(--fv2-green-dark) 100%) !important;
	color: var(--fv2-white) !important;
	border: none !important;
	padding: 0.7rem 2rem !important;
	border-radius: 30px !important;
	font-weight: 700 !important;
	font-size: 0.88rem !important;
	cursor: pointer !important;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
	width: 100% !important;
	transition: transform 0.2s, box-shadow 0.2s !important;
	box-shadow: 0 3px 12px rgba(94,201,154,0.3) !important;
}
.fv2__form-card input[type="submit"]:hover,
.fv2__form-card .gform_button:hover {
	transform: translateY(-1px) !important;
	box-shadow: 0 5px 18px rgba(94,201,154,0.4) !important;
}
/* Consent — make the whole <li> a flex row: checkbox | description text */
.fv2__form-card .gfield:has(.ginput_container_consent) {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	gap: 0.5rem !important;
}
.fv2__form-card .ginput_container_consent {
	flex-shrink: 0 !important;
	order: -1 !important;
}
.fv2__form-card .ginput_container_consent input[type="checkbox"] {
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	margin: 2px 0 0 0 !important;
	accent-color: var(--fv2-green) !important;
	cursor: pointer !important;
}
.fv2__form-card .ginput_container_consent .gfield_consent_label {
	display: none !important;
}
.fv2__form-card .ginput_container_consent > .gfield_required {
	display: none !important;
}
.fv2__form-card .gfield_consent_description {
	font-size: 0.72rem !important;
	line-height: 1.4 !important;
	color: var(--fv2-dark-soft) !important;
	margin: 0 !important;
	padding: 0 !important;
	flex: 1 !important;
}
/* Hide the top-level "Consent" label on this field */
.fv2__form-card .gfield:has(.ginput_container_consent) > .gfield_label {
	display: none !important;
}
/* Placeholder styling for when GF placeholders are enabled */
.fv2__form-card .ginput_container input::placeholder,
.fv2__form-card .ginput_container textarea::placeholder {
	color: var(--fv2-grey-mid) !important;
	opacity: 1 !important;
	font-style: italic !important;
}
.fv2__form-card .validation_error {
	font-size: 0.78rem !important;
	padding: 0.5rem !important;
	margin-bottom: 0.5rem !important;
	border-radius: var(--fv2-radius-sm) !important;
}

/* ==========================================================================
   9. AREAS — in a card, pushed down
   ========================================================================== */
.fv2__areas {
	margin-bottom: 1.75rem;
}
.fv2__areas .fv2__section-title .fas {
	color: var(--fv2-green);
	margin-right: 0.3rem;
	font-size: 1rem;
}
.fv2__areas-content {
	font-size: 0.88rem;
	line-height: 1.6;
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem 1.5rem;
}
.fv2__areas-content p {
	margin: 0;
	padding: 0.15rem 0;
	width: calc(50% - 0.75rem);
}

/* ==========================================================================
   HOSTS
   ========================================================================== */
.fv2__hosts {
	margin-bottom: 1.75rem;
}
.fv2__host {
	text-align: center;
	padding: 1.25rem 1rem;
	background: var(--fv2-white);
	border-radius: var(--fv2-radius);
	box-shadow: var(--fv2-shadow);
}
.fv2__host-photo {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 0.5rem;
	border: 3px solid var(--fv2-green);
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.fv2__host-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.fv2__host-name {
	font-size: 0.95rem;
	font-weight: 600;
	margin: 0 0 0.3rem 0;
}
.fv2__host-profile {
	font-size: 0.85rem;
	line-height: 1.55;
}
.fv2__host-profile p {
	margin: 0 0 0.4rem 0;
}
.fv2__host-profile p:last-child {
	margin-bottom: 0;
}
.fv2__hosts-pagination .swiper-pagination-bullet-active {
	background: var(--fv2-green);
}

/* ==========================================================================
   SIDEBAR EXTRAS — phone CTA + trust + gallery peek
   ========================================================================== */
.fv2__sidebar-phone {
	display: none;
}
.fv2__sidebar-trust {
	display: none;
}

/* ==========================================================================
   10. BOTTOM CTA
   ========================================================================== */
.fv2__bottom-cta {
	background: linear-gradient(135deg, var(--fv2-dark) 0%, #2a2927 100%);
	padding: 1.75rem 0;
	text-align: center;
}
.fv2__bottom-cta .fv2__container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}
.fv2__bottom-cta-text {
	color: var(--fv2-white);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
}
.fv2__bottom-cta-phone {
	display: inline-block;
	background: var(--fv2-green);
	color: var(--fv2-white);
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.65rem 1.75rem;
	border-radius: 30px;
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 8px rgba(94,201,154,0.3);
}
.fv2__bottom-cta-phone:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(94,201,154,0.4);
}
.fv2__bottom-cta-enquire {
	display: inline-block;
	background: var(--fv2-green);
	color: var(--fv2-white);
	font-weight: 700;
	font-size: 0.82rem;
	padding: 0.5rem 1.5rem;
	border-radius: 30px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 8px rgba(94,201,154,0.3);
}
.fv2__bottom-cta-enquire:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(94,201,154,0.4);
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */
.fv2__sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	z-index: 999;
	box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.fv2__sticky-call,
.fv2__sticky-enquire {
	flex: 1;
	text-align: center;
	padding: 0.75rem 0;
	font-weight: 700;
	font-size: 0.85rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: opacity 0.2s;
}
.fv2__sticky-call:hover,
.fv2__sticky-enquire:hover { opacity: 0.9; }
.fv2__sticky-call { background: var(--fv2-dark); color: var(--fv2-white); }
.fv2__sticky-enquire { background: var(--fv2-green); color: var(--fv2-white); }

.fv2 { padding-bottom: 50px; }

/* ==========================================================================
   DESKTOP (768px+)
   ========================================================================== */
@media (min-width: 768px) {
	.fv2 { padding-bottom: 0; }
	.fv2__container { padding: 0 2rem; }
	.fv2__sticky-cta { display: none; }

	/* Hero — three-column layout on desktop */
	.fv2__hero { padding: 3rem 2rem; }
	.fv2__hero-inner {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 2.5rem;
		max-width: var(--fv2-max);
		margin: 0 auto;
	}
	.fv2__hero-mascot {
		display: block;
		width: 140px;
		flex-shrink: 0;
	}
	.fv2__hero-center { flex: 1; min-width: 0; }
	.fv2__hero-title-service { font-size: 1.4rem; }
	.fv2__hero-title-location { font-size: 2.3rem; }
	.fv2__hero-profile { flex-shrink: 0; }
	.fv2__hero-photo { width: 160px; height: 160px; }
	.fv2__hero-name { font-size: 1.1rem; }

	.fv2__section-title { font-size: 1.3rem; }

	/* Why Choose — static 3-col grid on desktop */
	.fv2__why-choose { padding: 2.5rem 0 2rem; }
	.fv2__why-choose-title { font-size: 1.4rem; }
	.fv2__why-choose-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
		overflow: visible;
		scroll-snap-type: none;
		padding: 0;
		margin: 0;
	}
	.fv2__why-choose-card {
		flex: unset;
		align-items: stretch;
	}
	.fv2__why-choose-text {
		flex: 1;
		transition: transform 0.2s, box-shadow 0.2s;
	}
	.fv2__swipe-hint { display: none; }
	.fv2__why-choose-card:hover .fv2__why-choose-text {
		transform: translateY(-2px);
		box-shadow: var(--fv2-shadow-hover);
	}
	.fv2__why-choose-card h3 { font-size: 1.05rem; }
	.fv2__why-choose-card p { font-size: 0.85rem; }
	.fv2__why-choose-banner { padding: 1.25rem 2rem; }
	.fv2__why-choose-banner p { font-size: 1rem; }

	/* How We Work — horizontal on desktop */
	.fv2__how-we-work { padding: 2rem 0; }
	.fv2__how-we-work-title { font-size: 1.3rem; }
	.fv2__how-we-work-steps {
		flex-direction: row;
		gap: 2rem;
		padding-left: 0;
	}
	.fv2__how-we-work-steps {
		flex-direction: row;
		gap: 1.25rem;
	}
	.fv2__how-step {
		flex: 1;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.fv2__how-step-num {
		font-size: 2.2rem;
		margin-bottom: 0.25rem;
	}
	.fv2__how-step h3 { font-size: 1.05rem; }

	/* Trust fallback grid — 3 columns */
	.fv2__trust-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Two-column grid */
	.fv2__body { padding: 2.5rem 0 0; }
	.fv2__body-grid {
		flex-direction: row;
		gap: 2.5rem;
		align-items: flex-start;
	}
	.fv2__content {
		flex: 1;
		min-width: 0;
	}
	.fv2__sidebar {
		width: 340px;
		flex-shrink: 0;
		position: sticky;
		top: 1rem;
		max-height: calc(100vh - 2rem);
		overflow-y: auto;
	}

	/* Sidebar extras visible on desktop */
	.fv2__sidebar-phone {
		display: block;
		text-align: center;
		margin-top: 0.75rem;
		padding: 0.75rem;
		background: linear-gradient(135deg, var(--fv2-green) 0%, var(--fv2-green-dark) 100%);
		border-radius: var(--fv2-radius);
		box-shadow: 0 2px 8px rgba(94,201,154,0.2);
		transition: transform 0.2s, box-shadow 0.2s;
	}
	.fv2__sidebar-phone:hover {
		transform: translateY(-1px);
		box-shadow: 0 4px 14px rgba(94,201,154,0.3);
	}
	.fv2__sidebar-phone a {
		color: var(--fv2-white);
		text-decoration: none;
		font-weight: 700;
		font-size: 1.1rem;
		display: block;
	}
	.fv2__sidebar-phone a:hover { text-decoration: underline; }
	.fv2__sidebar-phone small {
		display: block;
		color: var(--fv2-white);
		opacity: 0.8;
		font-size: 0.72rem;
		margin-top: 0.2rem;
		text-transform: uppercase;
		letter-spacing: 0.03em;
	}

	/* Sidebar trust card — compact horizontal layout */
	.fv2__sidebar-trust {
		display: flex;
		align-items: center;
		gap: 0.85rem;
		margin-top: 1rem;
		background: var(--fv2-white);
		border-radius: var(--fv2-radius);
		padding: 0.85rem 1rem;
		box-shadow: var(--fv2-shadow);
	}
	.fv2__sidebar-trust-photo {
		width: 80px;
		height: 80px;
		flex-shrink: 0;
		border-radius: var(--fv2-radius-sm);
		overflow: hidden;
		border: none;
		box-shadow: var(--fv2-shadow);
	}
	.fv2__sidebar-trust-photo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	.fv2__sidebar-trust-info {
		flex: 1;
		min-width: 0;
	}
	.fv2__sidebar-trust h3 {
		font-size: 0.8rem;
		font-weight: 700;
		color: var(--fv2-dark);
		margin: 0 0 0.3rem 0;
	}
	.fv2__sidebar-trust ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.fv2__sidebar-trust li {
		font-size: 0.75rem;
		color: var(--fv2-dark-soft);
		padding: 0.1rem 0;
		display: flex;
		align-items: center;
	}
	.fv2__sidebar-trust li .fas {
		color: var(--fv2-green);
		width: 1.2em;
		text-align: center;
		margin-right: 0.3rem;
		font-size: 0.8rem;
	}

	/* Areas — 3 columns on desktop */
	.fv2__areas-content p {
		width: calc(33.33% - 1rem);
	}

	/* Bottom CTA — inline on desktop */
	.fv2__bottom-cta .fv2__container {
		flex-direction: row;
		justify-content: center;
	}

	/* Cards get more padding on desktop */
	.fv2__card { padding: 1.75rem; }
}

/* Wider desktop */
@media (min-width: 1024px) {
	.fv2__sidebar { width: 380px; }
}

/* ==========================================================================
   LARGER DESKTOP — scale up mascot + photo
   ========================================================================== */
@media (min-width: 1200px) {
	.fv2__hero-mascot { width: 170px; }
	.fv2__hero-photo { width: 180px; height: 180px; }
	.fv2__hero-title-service { font-size: 1.6rem; }
	.fv2__hero-title-location { font-size: 2.6rem; }
}

/* ==========================================================================
   MOBILE BANNER SWAP
   ========================================================================== */
@media (max-width: 600px) {
	.fv2__hero-bg--desktop { display: none; }
	.fv2__hero-bg--mobile { display: block; }
}
