/* ==========================================================================
   Forest Hill Sections — brand-locked styles (navy + teal)
   Everything scoped under .fhcc so it never touches the rest of the theme.
   ========================================================================== */

.fhcc {
	--fhcc-navy: #002B56;
	--fhcc-teal: #49C3C0;
	--fhcc-teal-soft: #49C3C04F;
	--fhcc-light: #EDEDF5;
	--fhcc-white: #FFFFFF;
	--fhcc-body: #475569;
	--fhcc-muted: #7A7A7A;

	--fhcc-radius: 16px;
	--fhcc-radius-lg: 20px;
	--fhcc-shadow: 0 10px 30px rgba(0, 43, 86, .08);
	--fhcc-shadow-hover: 0 18px 44px rgba(0, 43, 86, .16);
	--fhcc-space: 88px;

	font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
	color: var(--fhcc-body);
	font-size: 18px;
	line-height: 1.65;
	box-sizing: border-box;
}
.fhcc *, .fhcc *::before, .fhcc *::after { box-sizing: border-box; }

/* ---- Section shell ---- */
section.fhcc {
	max-width: 1200px;
	margin: 0 auto;
	padding: var(--fhcc-space) 24px;
}

/* ---- Headings ---- */
.fhcc-h2 {
	font-family: "Roboto Slab", serif;
	color: var(--fhcc-navy);
	font-weight: 600;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.2;
	margin: 0;
}
.fhcc-head { text-align: center; margin-bottom: 48px; }
.fhcc-underline {
	display: block;
	width: 64px; height: 4px;
	margin: 16px auto 0;
	border-radius: 4px;
	background: var(--fhcc-teal);
}
.fhcc-sub {
	max-width: 640px;
	margin: 18px auto 0;
	color: var(--fhcc-muted);
	font-size: 18px;
}
.fhcc-center { text-align: center; margin-top: 40px; }
.fhcc-disclaimer { text-align: center; color: var(--fhcc-muted); font-size: 14px; margin-top: 20px; }

/* ---- Buttons ---- */
.fhcc-btn {
	display: inline-block;
	font-weight: 600;
	font-size: 16px;
	padding: 14px 28px;
	border-radius: 999px;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	line-height: 1.2;
}
.fhcc-btn--teal { background: var(--fhcc-teal); color: #fff; }
.fhcc-btn--teal:hover { transform: translateY(-2px); box-shadow: 0 10px 24px var(--fhcc-teal-soft); }
.fhcc-btn--outline { background: transparent; color: var(--fhcc-navy); border-color: var(--fhcc-navy); }
.fhcc-btn--outline:hover { background: var(--fhcc-navy); color: #fff; transform: translateY(-2px); }
.fhcc :where(a, button):focus-visible { outline: 3px solid var(--fhcc-teal); outline-offset: 3px; }

/* ---- Images / placeholders ---- */
.fhcc-img { display: block; width: 100%; height: 100%; object-fit: cover; }
.fhcc-placeholder {
	display: flex; align-items: center; justify-content: center;
	min-height: 180px;
	background: linear-gradient(135deg, var(--fhcc-navy), var(--fhcc-teal));
	color: #fff;
}
.fhcc-placeholder__label { font-size: 13px; opacity: .9; padding: 8px 12px; text-align: center; }

/* ---- Scroll reveal ---- */
.fhcc[data-fhcc-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fhcc[data-fhcc-reveal].is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Counters
   ========================================================================== */
.fhcc-counters {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
	max-width: 1000px; margin: 0 auto; padding: 28px 24px;
}
.fhcc-counter { text-align: center; }
.fhcc-counter__num {
	font-family: "Roboto Slab", serif; font-weight: 600;
	font-size: clamp(34px, 5vw, 52px); color: var(--fhcc-navy);
	display: flex; align-items: baseline; justify-content: center; gap: 6px;
}
.fhcc-counter__star { color: var(--fhcc-teal); font-size: .6em; }
.fhcc-counter__label { color: var(--fhcc-muted); font-size: 15px; margin-top: 4px; }

/* ==========================================================================
   Packages
   ========================================================================== */
.fhcc-pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fhcc-pkg {
	position: relative; background: #fff; border: 1px solid var(--fhcc-light);
	border-radius: var(--fhcc-radius-lg); padding: 36px 26px 30px;
	box-shadow: var(--fhcc-shadow); display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.fhcc-pkg:hover { transform: translateY(-6px); box-shadow: var(--fhcc-shadow-hover); border-color: var(--fhcc-teal); }
.fhcc-pkg.is-popular { transform: scale(1.04); border: 2px solid var(--fhcc-teal); box-shadow: var(--fhcc-shadow-hover); }
.fhcc-pkg.is-popular:hover { transform: scale(1.04) translateY(-6px); }
.fhcc-pkg__ribbon {
	position: absolute; top: 16px; right: -6px;
	background: var(--fhcc-teal); color: #fff; font-size: 12px; font-weight: 600;
	padding: 6px 16px; border-radius: 6px 0 6px 6px; letter-spacing: .04em;
}
.fhcc-pkg__badge {
	width: 44px; height: 44px; border-radius: 12px; display: block; margin-bottom: 18px;
	box-shadow: inset 0 2px 6px rgba(255,255,255,.4);
}
.fhcc-pkg__badge--bronze   { background: linear-gradient(135deg, #b87333, #e0a96d); }
.fhcc-pkg__badge--silver   { background: linear-gradient(135deg, #8a99a8, #d6dde4); }
.fhcc-pkg__badge--gold     { background: linear-gradient(135deg, #caa24a, #f3d98b); }
.fhcc-pkg__badge--platinum { background: linear-gradient(135deg, #4b5d6e, #aeb9c4); }
.fhcc-pkg__name { font-family: "Roboto Slab", serif; color: var(--fhcc-navy); font-size: 24px; margin: 0 0 6px; }
.fhcc-pkg__tagline { color: var(--fhcc-muted); font-size: 15px; margin: 0 0 20px; min-height: 44px; }
.fhcc-pkg__list { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.fhcc-pkg__list li { position: relative; padding: 7px 0 7px 26px; font-size: 15.5px; border-bottom: 1px solid var(--fhcc-light); }
.fhcc-pkg__list li::before {
	content: "✓"; position: absolute; left: 0; top: 7px;
	color: var(--fhcc-teal); font-weight: 700;
}
.fhcc-pkg__cta { text-align: center; }

/* ==========================================================================
   Before / After
   ========================================================================== */
.fhcc-ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.fhcc-ba-card { margin: 0; }
.fhcc-ba-slider {
	position: relative; width: 100%; aspect-ratio: 4 / 3;
	border-radius: var(--fhcc-radius); overflow: hidden;
	box-shadow: var(--fhcc-shadow); user-select: none; touch-action: pan-y;
	background: var(--fhcc-light);
}
.fhcc-ba-after, .fhcc-ba-before { position: absolute; inset: 0; }
.fhcc-ba-after .fhcc-img, .fhcc-ba-before .fhcc-img { width: 100%; height: 100%; }
.fhcc-ba-before { width: 50%; overflow: hidden; border-right: 3px solid #fff; }
.fhcc-ba-before .fhcc-img, .fhcc-ba-before .fhcc-placeholder {
	width: 100vw; max-width: none;
}
.fhcc-ba-tag {
	position: absolute; bottom: 14px; font-size: 12px; font-weight: 600;
	color: #fff; padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.fhcc-ba-tag--before { left: 14px; background: rgba(0,43,86,.7); }
.fhcc-ba-tag--after  { right: 14px; background: rgba(73,195,192,.85); }
.fhcc-ba-handle {
	position: absolute; top: 0; left: 50%; transform: translateX(-50%);
	height: 100%; width: 44px; border: 0; background: transparent; cursor: ew-resize; padding: 0;
}
.fhcc-ba-handle__line { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 3px; height: 100%; background: #fff; }
.fhcc-ba-handle__grip {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--fhcc-navy);
	display: flex; align-items: center; justify-content: center; font-size: 16px;
	box-shadow: 0 4px 14px rgba(0,43,86,.3);
}
.fhcc-ba-caption { text-align: center; margin-top: 14px; font-weight: 600; color: var(--fhcc-navy); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.fhcc-gallery__filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.fhcc-chip {
	border: 1px solid var(--fhcc-light); background: #fff; color: var(--fhcc-navy);
	padding: 9px 20px; border-radius: 999px; font-size: 15px; font-weight: 500; cursor: pointer;
	transition: all .2s ease;
}
.fhcc-chip:hover { border-color: var(--fhcc-teal); }
.fhcc-chip.is-active { background: var(--fhcc-navy); color: #fff; border-color: var(--fhcc-navy); }
.fhcc-gallery__grid { columns: 3; column-gap: 18px; }
.fhcc-gallery__item { break-inside: avoid; margin: 0 0 18px; }
.fhcc-gallery__item.is-hidden { display: none; }
.fhcc-gallery__open {
	position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
	border-radius: var(--fhcc-radius); overflow: hidden; background: var(--fhcc-light);
}
.fhcc-gallery__open .fhcc-img { transition: transform .4s ease; }
.fhcc-gallery__open:hover .fhcc-img { transform: scale(1.06); }
.fhcc-gallery__overlay {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	font-size: 34px; color: #fff; background: var(--fhcc-teal-soft); opacity: 0; transition: opacity .3s ease;
}
.fhcc-gallery__open:hover .fhcc-gallery__overlay { opacity: 1; }

/* Lightbox */
.fhcc-lightbox {
	position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center;
	background: rgba(0,43,86,.92); padding: 32px;
}
.fhcc-lightbox[hidden] { display: none; }
.fhcc-lightbox__img { max-width: 92vw; max-height: 88vh; border-radius: 12px; }
.fhcc-lightbox__close {
	position: absolute; top: 22px; right: 28px; width: 46px; height: 46px; border-radius: 50%;
	border: 0; background: rgba(255,255,255,.15); color: #fff; font-size: 20px; cursor: pointer;
}
.fhcc-lightbox__close:hover { background: var(--fhcc-teal); }

/* ==========================================================================
   Services
   ========================================================================== */
.fhcc-svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fhcc-svc-card {
	position: relative; background: #fff; border: 1px solid var(--fhcc-light);
	border-radius: var(--fhcc-radius); padding: 26px 22px 48px; text-decoration: none;
	box-shadow: var(--fhcc-shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	display: block;
}
.fhcc-svc-card:hover { transform: translateY(-6px); box-shadow: var(--fhcc-shadow-hover); border-color: var(--fhcc-teal); }
.fhcc-svc-card__icon {
	display: block; width: 56px; height: 56px; border-radius: 14px; overflow: hidden;
	margin-bottom: 16px; background: var(--fhcc-teal-soft);
}
.fhcc-svc-card__img.fhcc-placeholder { min-height: 56px; }
.fhcc-svc-card__title { font-family: "Roboto Slab", serif; color: var(--fhcc-navy); font-size: 19px; margin: 0 0 6px; }
.fhcc-svc-card__desc { color: var(--fhcc-muted); font-size: 14.5px; margin: 0; }
.fhcc-svc-card__arrow {
	position: absolute; bottom: 20px; left: 22px; color: var(--fhcc-teal); font-size: 20px;
	transition: transform .25s ease;
}
.fhcc-svc-card:hover .fhcc-svc-card__arrow { transform: translateX(6px); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.fhcc-tst { background: var(--fhcc-light); max-width: none; border-radius: 0; }
.fhcc-tst > * { max-width: 1000px; margin-left: auto; margin-right: auto; }
.fhcc-tst-carousel { position: relative; overflow: hidden; }
.fhcc-tst-track { display: flex; transition: transform .5s ease; }
.fhcc-tst-card {
	flex: 0 0 100%; background: #fff; border-radius: var(--fhcc-radius-lg);
	padding: 40px 44px; box-shadow: var(--fhcc-shadow); text-align: center;
}
.fhcc-tst-quote { font-family: "Roboto Slab", serif; font-size: 64px; line-height: .4; color: var(--fhcc-teal); display: block; }
.fhcc-tst-text { font-size: 19px; color: var(--fhcc-body); margin: 18px 0 22px; }
.fhcc-tst-stars { color: var(--fhcc-teal); font-size: 20px; letter-spacing: 3px; }
.fhcc-tst-name { font-weight: 600; color: var(--fhcc-navy); margin-top: 10px; }
.fhcc-tst-dots { display: flex; gap: 10px; justify-content: center; margin-top: 26px; }
.fhcc-tst-dots button {
	width: 11px; height: 11px; border-radius: 50%; border: 0; background: #c5c8d6; cursor: pointer; padding: 0;
	transition: all .25s ease;
}
.fhcc-tst-dots button.is-active { background: var(--fhcc-teal); width: 28px; border-radius: 6px; }

/* ==========================================================================
   Google Reviews
   ========================================================================== */
.fhcc-greviews__bar {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px;
	background: #fff; border: 1px solid var(--fhcc-light); border-radius: var(--fhcc-radius-lg);
	padding: 26px 32px; box-shadow: var(--fhcc-shadow);
}
.fhcc-greviews__score { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.fhcc-greviews__num { font-family: "Roboto Slab", serif; font-size: 40px; font-weight: 600; color: var(--fhcc-navy); }
.fhcc-greviews__stars { color: #f4b400; font-size: 24px; letter-spacing: 2px; }
.fhcc-greviews__powered { font-size: 15px; color: var(--fhcc-muted); display: flex; align-items: center; }
.fhcc-g { font-weight: 700; font-size: 18px; }
.fhcc-g--b { color: #4285F4; } .fhcc-g--r { color: #EA4335; } .fhcc-g--y { color: #FBBC05; } .fhcc-g--g { color: #34A853; }
.fhcc-greviews__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.fhcc-greviews__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.fhcc-greviews__card { background: #fff; border: 1px solid var(--fhcc-light); border-radius: var(--fhcc-radius); padding: 22px; box-shadow: var(--fhcc-shadow); }
.fhcc-greviews__chead { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.fhcc-greviews__avatar {
	width: 40px; height: 40px; border-radius: 50%; background: var(--fhcc-navy); color: #fff;
	display: flex; align-items: center; justify-content: center; font-weight: 600;
}
.fhcc-greviews__cname { font-weight: 600; color: var(--fhcc-navy); }
.fhcc-greviews__cstars { color: #f4b400; letter-spacing: 2px; margin-bottom: 6px; }
.fhcc-greviews__ctext { font-size: 15px; color: var(--fhcc-body); margin: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.fhcc-faq-list { max-width: 820px; margin: 0 auto; }
.fhcc-faq-item { background: #fff; border: 1px solid var(--fhcc-light); border-radius: var(--fhcc-radius); margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s ease; }
.fhcc-faq-item:hover { box-shadow: var(--fhcc-shadow); }
.fhcc-faq-q {
	width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 20px 24px; font-family: "Roboto Slab", serif; font-size: 17.5px; font-weight: 500; color: var(--fhcc-navy);
}
.fhcc-faq-icon {
	flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--fhcc-teal-soft);
	color: var(--fhcc-teal); font-size: 22px; line-height: 26px; text-align: center; transition: transform .25s ease;
}
.fhcc-faq-item.is-open .fhcc-faq-icon { transform: rotate(45deg); }
.fhcc-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.fhcc-faq-a p { margin: 0; padding: 0 24px 22px; color: var(--fhcc-body); font-size: 16px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.fhcc-pkg-grid { grid-template-columns: repeat(2, 1fr); }
	.fhcc-svc-grid { grid-template-columns: repeat(2, 1fr); }
	.fhcc-gallery__grid { columns: 2; }
	.fhcc-greviews__cards { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
	.fhcc { font-size: 16px; }
	section.fhcc { padding: 52px 18px; }
	.fhcc-counters { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
	.fhcc-ba-grid { grid-template-columns: 1fr; }
	.fhcc-pkg.is-popular { transform: none; }
	.fhcc-pkg.is-popular:hover { transform: translateY(-6px); }
	.fhcc-gallery__grid { columns: 2; column-gap: 12px; }
	.fhcc-tst-card { padding: 30px 22px; }
	.fhcc-greviews__bar { flex-direction: column; align-items: flex-start; }

	/* mobile scroll-snap sliders for card rows */
	.fhcc-pkg-grid, .fhcc-svc-grid {
		grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: 82%;
		overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px;
		padding-bottom: 8px; -webkit-overflow-scrolling: touch;
	}
	.fhcc-pkg, .fhcc-svc-card { scroll-snap-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.fhcc *, .fhcc *::before, .fhcc *::after { transition: none !important; animation: none !important; }
	.fhcc[data-fhcc-reveal] { opacity: 1; transform: none; }
}
