/*--------------------------------------------------------------
# Landing Page Redesign - Match redesign/code.html
# Brand: dark #1F2937, green #10B981, greenHover #059669, lightGray #f3f4f6
--------------------------------------------------------------*/
:root {
	--brand-dark: #1F2937;
	--brand-green: #10B981;
	--brand-green-hover: #059669;
	--brand-light-gray: #f3f4f6;
}

/* Subtle scroll-triggered animations - landing page refinements */
body.landing-page [data-animate] {
	transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.landing-page [data-animate="fade-up"] {
	transform: translateY(24px);
}

body.landing-page [data-animate="fade-up"].animate-in {
	opacity: 1;
	transform: translateY(0);
}

body.landing-page [data-animate="zoom-in"] {
	transform: scale(0.97);
}

body.landing-page [data-animate="zoom-in"].animate-in {
	opacity: 1;
	transform: scale(1);
}

/* Hero entrance - slightly softer */
body.landing-page .hero-content[data-animate] {
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.landing-page .hero-content[data-animate="fade-up"] {
	transform: translateY(20px);
}

body.landing-page {
	font-family: 'Inter', 'Open Sans', sans-serif;
	color: #1f2937;
}

/* Topbar - keep visible on landing */

/* Header - sticky by default, fixed when scrolled, compact 70px height */
body.landing-page #header {
	position: sticky;
	top: 0;
	z-index: 997;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	height: 70px;
}

body.landing-page #header.fixed-top {
	position: fixed;
}

body.landing-page #header .logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: #111;
}

body.landing-page #header .logo img {
	max-height: 36px;
}

body.landing-page .nav-link-customer {
	border-left: 1px solid #d1d5db;
	padding-left: 1.5rem !important;
	margin-left: 0.5rem;
}

body.landing-page .navbar a:hover,
body.landing-page .navbar .active,
body.landing-page .navbar li:hover > a {
	color: var(--brand-green) !important;
}

body.landing-page .navbar > ul > li > a:before {
	background-color: var(--brand-green);
}

/* Mobile nav - brand colors */
body.landing-page .mobile-nav-toggle:hover {
	background: rgba(16, 185, 129, 0.1);
	color: var(--brand-green);
}

body.landing-page .navbar-mobile a:hover,
body.landing-page .navbar-mobile .active,
body.landing-page .navbar-mobile li:hover > a {
	color: var(--brand-green) !important;
	background: rgba(16, 185, 129, 0.08);
}

body.landing-page .navbar-mobile .dropdown ul a:hover,
body.landing-page .navbar-mobile .dropdown ul .active:hover,
body.landing-page .navbar-mobile .dropdown ul li:hover > a {
	color: var(--brand-green) !important;
}

/* Hero - full redesign */
body.landing-page .hero-redesign {
	position: relative;
	height: 600px;
	width: 100%;
	overflow: hidden;
	background: var(--brand-dark);
}

body.landing-page .hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
}

body.landing-page .hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(31,41,55,1) 0%, rgba(31,41,55,0.95) 35%, rgba(31,41,55,0.4) 60%, rgba(31,41,55,0) 100%);
}

body.landing-page .hero-content {
	max-width: 42rem;
}

body.landing-page .hero-title {
	font-size: clamp(2rem, 5vw, 3.75rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff !important;
	margin-bottom: 1rem;
}

body.landing-page .hero-subtitle {
	font-size: 1.125rem;
	color: #d1d5db !important;
	font-weight: 300;
	margin-bottom: 2rem;
}

body.landing-page .btn-hero {
	display: inline-block;
	padding: 0.75rem 2rem;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s;
}

body.landing-page .btn-hero-primary {
	background: var(--brand-green);
	color: #fff;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body.landing-page .btn-hero-primary:hover {
	background: var(--brand-green-hover);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.15);
}

body.landing-page .btn-hero-outline {
	border: 1px solid #fff;
	color: #fff;
	background: transparent;
}

body.landing-page .btn-hero-outline:hover {
	background: #fff;
	color: var(--brand-dark);
	transform: translateY(-2px);
}

/* Section headings - single h2, bold */
body.landing-page .section-heading {
	font-size: 1.875rem;
	font-weight: 700;
	color: #111;
	transition: color 0.3s ease;
}

body.landing-page .section-heading:hover {
	color: var(--brand-green);
}

/* Services - cards with dark icon circles */
body.landing-page .section-services {
	background: #fff;
	padding: 5rem 0;
}

@media (min-width: 1200px) {
	body.landing-page .services-grid .service-col {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

body.landing-page .service-card-redesign {
	background: #fff;
	padding: 1.5rem;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	border: 1px solid #f3f4f6;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.landing-page .service-card-redesign:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

body.landing-page .service-icon-circle {
	width: 64px;
	height: 64px;
	background: var(--brand-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: background 0.3s ease, transform 0.3s ease;
}


body.landing-page .service-icon-circle img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.9;
	transition: transform 0.3s ease;
}

body.landing-page .service-card-redesign:hover .service-icon-circle {
	background: var(--brand-green);
	transform: scale(1.05);
}

body.landing-page .service-card-redesign:hover .service-icon-circle img {
	transform: scale(1.08);
}

body.landing-page .service-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 0.5rem;
}

body.landing-page .service-desc {
	font-size: 0.75rem;
	color: #6b7280;
	margin-bottom: 1rem;
	line-height: 1.5;
	flex-grow: 1;
}

body.landing-page .service-link {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--brand-green);
	text-decoration: underline;
	text-underline-offset: 3px;
	margin-top: auto;
	transition: color 0.25s ease, transform 0.25s ease;
}

body.landing-page .service-link:hover {
	color: var(--brand-green-hover);
	transform: translateX(2px);
}

/* Why Choose Us - stats + icons */
body.landing-page .section-why {
	background: var(--brand-light-gray);
	padding: 5rem 0;
}

body.landing-page .stats-row > div {
	transition: transform 0.3s ease, color 0.3s ease;
}

body.landing-page .stats-row > div:hover {
	transform: scale(1.05);
}

body.landing-page .stats-row > div:hover .stat-number {
	color: var(--brand-green-hover);
}

body.landing-page .stat-number {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

body.landing-page .stat-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #1f2937;
}

body.landing-page .icons-row > div {
	transition: transform 0.3s ease;
}

body.landing-page .icons-row > div:hover {
	transform: translateY(-4px);
}

body.landing-page .icons-row > div:hover .why-icon {
	color: var(--brand-green);
}

body.landing-page .why-icon {
	font-size: 2rem;
	color: #1f2937;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

body.landing-page .why-icon .bi {
	font-size: 2rem;
}

body.landing-page .why-label {
	font-weight: 700;
	color: #111;
	font-size: 0.9rem;
}

/* CTA */
body.landing-page #cta {
	padding: 3rem 0;
}

body.landing-page #cta .cta-content {
	position: relative;
	background: linear-gradient(135deg, #0d5c2e 0%, var(--brand-green) 50%, #1e9e4a 100%) !important;
	border-radius: 12px;
	padding: 2rem;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.landing-page #cta .cta-content:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.25);
}

body.landing-page #cta .cta-content::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 0%,
		transparent 40%,
		rgba(255, 255, 255, 0.12) 50%,
		transparent 60%,
		transparent 100%
	);
	background-size: 200% 100%;
	animation: cta-shimmer 4s ease-in-out infinite;
	pointer-events: none;
	border-radius: 12px;
}

body.landing-page #cta .cta-content .row {
	position: relative;
	z-index: 1;
}

@keyframes cta-shimmer {
	0% { background-position: -100% 0; }
	100% { background-position: 200% 0; }
}

body.landing-page #cta .btn-light {
	font-weight: 600;
	transition: all 0.25s ease;
}

body.landing-page #cta .btn-light:hover {
	background: #fff !important;
	color: var(--brand-dark) !important;
	transform: translateX(4px);
}

/* Portfolio */
body.landing-page .section-portfolio {
	background: #fff;
	padding: 5rem 0;
}

body.landing-page .portfolio-card-redesign {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	min-height: 200px;
}

body.landing-page .portfolio-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.landing-page .portfolio-card-link:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.2);
}

body.landing-page .portfolio-item-large .portfolio-card-redesign {
	min-height: 320px;
}

body.landing-page .portfolio-img-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 200px;
	overflow: hidden;
}

body.landing-page .portfolio-item-large .portfolio-img-wrap {
	min-height: 320px;
}

body.landing-page .portfolio-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

body.landing-page .portfolio-card-redesign:hover .portfolio-img-wrap img {
	transform: scale(1.1);
}

body.landing-page .portfolio-overlay-redesign {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
	display: flex;
	align-items: flex-end;
	transition: background 0.3s ease;
}

body.landing-page .portfolio-card-redesign:hover .portfolio-overlay-redesign {
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
}

body.landing-page .portfolio-overlay-content {
	padding: 1.5rem;
	color: #fff;
	width: 100%;
}

body.landing-page .portfolio-overlay-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: 0.25rem;
}

body.landing-page .portfolio-overlay-meta {
	font-size: 0.75rem;
	color: #d1d5db;
}

body.landing-page .portfolio-overlay-actions .btn {
	transition: transform 0.2s ease, background 0.2s ease;
}

body.landing-page .portfolio-card-link:hover .portfolio-overlay-actions .btn {
	transform: scale(1.05);
}

body.landing-page .btn-filter {
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	border: 1px solid var(--brand-green);
	background: transparent;
	color: var(--brand-green);
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.25s ease;
}

body.landing-page .btn-filter.filter-active {
	background: var(--brand-green);
	color: #fff;
	border-color: var(--brand-green);
}

body.landing-page .btn-filter:not(.filter-active):hover {
	background: rgba(16, 185, 129, 0.1);
	transform: scale(1.05);
}

body.landing-page .portfolio-item.filter-hidden {
	display: none !important;
}

/* Footer - dark with map + form */
body.landing-page .footer-redesign {
	background: var(--brand-dark);
	color: #d1d5db;
	padding-top: 4rem;
}

body.landing-page .footer-form-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
}

body.landing-page .footer-contact-form .form-control {
	background: transparent;
	border: 1px solid #4b5563;
	border-radius: 6px;
	color: #fff;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
}

body.landing-page .footer-contact-form .form-control::placeholder {
	color: #6b7280;
}

body.landing-page .footer-contact-form .form-control:focus {
	border-color: var(--brand-green);
	box-shadow: 0 0 0 1px var(--brand-green);
	background: transparent;
	color: #fff;
}

body.landing-page .footer-contact-form .form-label.visually-hidden + .form-control,
body.landing-page .footer-contact-form .form-control {
	margin-bottom: 0;
}

/* reCAPTCHA v3 invisible - collapse row, keep widget in DOM */
body.landing-page .footer-contact-form .captcha-v3-invisible {
	min-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin-bottom: -0.5rem;
}

/* Hide reCAPTCHA badge (legal text shown below form per Google ToS) */
body.landing-page .grecaptcha-badge {
	visibility: hidden !important;
}

body.landing-page .btn-footer-submit {
	background: var(--brand-green);
	color: #fff;
	border: none;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	border-radius: 6px;
	transition: background 0.2s;
}

body.landing-page .btn-footer-submit:hover {
	background: var(--brand-green-hover);
	color: #fff;
}

body.landing-page .footer-redesign .text-gray-400 {
	color: #9ca3af !important;
}

body.landing-page .footer-redesign .text-brand-green {
	color: var(--brand-green) !important;
}

body.landing-page .footer-redesign .border-secondary {
	border-color: #4b5563 !important;
}

body.landing-page .footer-redesign .copyright {
	color: #9ca3af;
	font-size: 0.875rem;
}

body.landing-page .footer-redesign .copyright strong {
	color: #fff;
}

body.landing-page .footer-redesign .row.g-4.border-top > div {
	transition: transform 0.25s ease;
}

body.landing-page .footer-redesign .row.g-4.border-top > div:hover {
	transform: translateX(4px);
}

body.landing-page .footer-redesign .row.g-4.border-top a:hover {
	color: var(--brand-green) !important;
}

/* Back to top */
body.landing-page .back-to-top {
	background: var(--brand-green);
}

body.landing-page .back-to-top:hover {
	background: var(--brand-green-hover);
}

/*--------------------------------------------------------------
# Contact & Location Page - Split layout (contact info + map)
# Full viewport height, no page scroll (desktop)
# Scrollable, stacked layout (mobile)
--------------------------------------------------------------*/
body.landing-page.contact-page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
}

@media (min-width: 992px) {
	body.landing-page.contact-page {
		overflow: hidden;
		height: 100vh;
		height: 100dvh;
	}
}

body.landing-page.contact-page #topbar {
	display: none;
}

body.landing-page.contact-page #header {
	flex-shrink: 0;
}

body.landing-page.contact-page #main.contact-page-main {
	padding: 0;
	display: flex;
	flex-direction: column;
}

@media (min-width: 992px) {
	body.landing-page.contact-page #main.contact-page-main {
		flex: 1;
		min-height: 0;
		overflow: hidden;
	}
}

body.landing-page.contact-page .contact-location-wrapper {
	display: flex;
	flex-direction: column;
}

@media (min-width: 992px) {
	body.landing-page.contact-page .contact-location-wrapper {
		flex: 1;
		min-height: 0;
		height: 100%;
		flex-direction: row;
	}
}

body.landing-page.contact-page .contact-panel {
	width: 100%;
	background: #fff;
	display: flex;
	flex-direction: column;
}

@media (max-width: 991px) {
	body.landing-page.contact-page .contact-panel {
		border-bottom: 1px solid #e5e7eb;
		flex-shrink: 0;
	}
}

@media (min-width: 992px) {
	body.landing-page.contact-page .contact-panel {
		border-right: 1px solid #e5e7eb;
		width: 40%;
		max-width: 520px;
		flex: 0 0 auto;
		min-height: 0;
		overflow-y: auto;
	}
}

@media (min-width: 1200px) {
	body.landing-page.contact-page .contact-panel {
		width: 35%;
	}
}

body.landing-page.contact-page .contact-panel-inner {
	padding: 1.25rem max(1rem, env(safe-area-inset-right)) 1.5rem max(1rem, env(safe-area-inset-left));
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

@media (min-width: 576px) {
	body.landing-page.contact-page .contact-panel-inner {
		padding: 1.5rem 1.25rem 1.75rem;
		gap: 1.75rem;
	}
}

@media (min-width: 992px) {
	body.landing-page.contact-page .contact-panel-inner {
		padding: 4rem 3rem 4rem;
		gap: 2.5rem;
	}
}

body.landing-page.contact-page .contact-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	background: rgba(16, 185, 129, 0.1);
	color: var(--brand-green);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

body.landing-page.contact-page .contact-title {
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	color: #111;
	margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
	body.landing-page.contact-page .contact-title {
		margin-bottom: 1rem;
	}
}

body.landing-page.contact-page .contact-lead {
	font-size: 0.9375rem;
	color: #6b7280;
	line-height: 1.5;
	max-width: 28rem;
}

@media (min-width: 992px) {
	body.landing-page.contact-page .contact-lead {
		font-size: 1.125rem;
		line-height: 1.6;
	}
}

body.landing-page.contact-page .contact-cards {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 992px) {
	body.landing-page.contact-page .contact-cards {
		gap: 1rem;
	}
}

body.landing-page.contact-page .contact-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border-radius: 0.75rem;
	background: var(--brand-light-gray);
	border: 1px solid transparent;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	min-height: 56px;
}

@media (min-width: 992px) {
	body.landing-page.contact-page .contact-card {
		align-items: flex-start;
		gap: 1.25rem;
		padding: 1.5rem;
		border-radius: 1rem;
		min-height: auto;
	}
}

body.landing-page.contact-page .contact-card:hover {
	background: #fff;
	border-color: #e5e7eb;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

body.landing-page.contact-page .contact-card-link:hover .contact-card-value {
	color: var(--brand-green);
}

body.landing-page.contact-page .contact-card-icon {
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
	transition: all 0.3s ease;
}

@media (min-width: 992px) {
	body.landing-page.contact-page .contact-card-icon {
		width: 3rem;
		height: 3rem;
		font-size: 1.25rem;
	}
}

body.landing-page.contact-page .contact-card-icon-phone {
	background: rgba(16, 185, 129, 0.1);
	color: var(--brand-green);
}

body.landing-page.contact-page .contact-card:hover .contact-card-icon-phone {
	background: var(--brand-green);
	color: #fff;
}

body.landing-page.contact-page .contact-card-icon-email {
	background: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
}

body.landing-page.contact-page .contact-card:hover .contact-card-icon-email {
	background: #3b82f6;
	color: #fff;
}

body.landing-page.contact-page .contact-card-icon-location {
	background: rgba(249, 115, 22, 0.1);
	color: #f97316;
}

body.landing-page.contact-page .contact-card:hover .contact-card-icon-location {
	background: #f97316;
	color: #fff;
}

body.landing-page.contact-page .contact-card-content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

body.landing-page.contact-page .contact-card-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

body.landing-page.contact-page .contact-card-value {
	font-size: 1rem;
	font-weight: 700;
	color: #111;
	white-space: pre-line;
	transition: color 0.3s ease;
	word-break: break-word;
}

@media (min-width: 992px) {
	body.landing-page.contact-page .contact-card-value {
		font-size: 1.125rem;
	}
}

body.landing-page.contact-page .contact-card-meta {
	font-size: 0.8125rem;
	color: #6b7280;
}

@media (min-width: 992px) {
	body.landing-page.contact-page .contact-card-meta {
		font-size: 0.875rem;
	}
}

body.landing-page.contact-page .contact-footer {
	margin-top: auto;
	padding-top: 1.25rem;
	border-top: 1px solid #e5e7eb;
}

@media (min-width: 992px) {
	body.landing-page.contact-page .contact-footer {
		padding-top: 2rem;
	}
}

body.landing-page.contact-page .contact-footer-text {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0;
}

body.landing-page.contact-page .contact-footer-link {
	color: var(--brand-green);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.25s ease;
}

body.landing-page.contact-page .contact-footer-link:hover {
	color: var(--brand-green-hover);
}

/* Map panel */
body.landing-page.contact-page .map-panel {
	position: relative;
	background: #e5e7eb;
	min-height: 280px;
	flex-shrink: 0;
}

@media (max-width: 991px) {
	body.landing-page.contact-page .map-panel {
		min-height: min(50vh, 320px);
		order: 2;
	}
}

@media (min-width: 992px) {
	body.landing-page.contact-page .map-panel {
		flex: 1 1 0;
		min-height: 0;
	}
}

body.landing-page.contact-page .map-panel-inner {
	position: absolute;
	inset: 0;
}

body.landing-page.contact-page .btn-map-directions-mobile {
	display: none;
}

@media (max-width: 991px) {
	body.landing-page.contact-page .btn-map-directions-mobile {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		position: absolute;
		bottom: max(1rem, env(safe-area-inset-bottom));
		left: max(1rem, env(safe-area-inset-left));
		right: max(1rem, env(safe-area-inset-right));
		z-index: 20;
		padding: 0.75rem 1.25rem;
		background: var(--brand-green);
		color: #fff;
		font-size: 0.9375rem;
		font-weight: 700;
		border-radius: 0.5rem;
		text-decoration: none;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
		transition: background 0.2s ease, transform 0.1s ease;
	}
	body.landing-page.contact-page .btn-map-directions-mobile:active {
		transform: scale(0.98);
	}
	body.landing-page.contact-page .btn-map-directions-mobile:hover {
		background: var(--brand-green-hover);
		color: #fff;
	}
}

body.landing-page.contact-page .contact-map-iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	filter: grayscale(100%);
}

body.landing-page.contact-page .contact-map-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: #6b7280;
	font-size: 1.5rem;
}

body.landing-page.contact-page .map-pin-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 10;
}

@media (max-width: 991px) {
	body.landing-page.contact-page .map-pin-overlay {
		display: none;
	}
}

body.landing-page.contact-page .map-pin-tooltip {
	position: relative;
	margin-bottom: 1rem;
	padding: 1rem 1.25rem;
	background: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	text-align: center;
	min-width: 200px;
	opacity: 0;
	transform: translateY(0.5rem);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

body.landing-page.contact-page .map-pin-overlay:hover .map-pin-tooltip {
	opacity: 1;
	transform: translateY(0);
}

body.landing-page.contact-page .map-pin-tooltip h3 {
	font-size: 0.875rem;
	font-weight: 700;
	color: #111;
	margin: 0 0 0.25rem 0;
}

body.landing-page.contact-page .map-pin-hours {
	font-size: 0.75rem;
	color: #6b7280;
	margin: 0 0 0.75rem 0;
}

body.landing-page.contact-page .btn-map-directions {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	width: 100%;
	padding: 0.5rem 1rem;
	background: var(--brand-green);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 9999px;
	text-decoration: none;
	transition: background 0.25s ease;
	pointer-events: auto;
}

body.landing-page.contact-page .btn-map-directions:hover {
	background: var(--brand-green-hover);
	color: #fff;
}

body.landing-page.contact-page .map-pin {
	position: relative;
	width: 2.5rem;
	height: 2.5rem;
	background: var(--brand-green);
	border: 4px solid #fff;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1rem;
	transition: transform 0.3s ease;
	pointer-events: auto;
	cursor: pointer;
}

body.landing-page.contact-page .map-pin-overlay:hover .map-pin {
	transform: scale(1.1);
}

/* Quote request page */
body.landing-page .text-brand-green {
	color: var(--brand-green) !important;
}

body.landing-page.quote-page {
	height: 100vh;
	height: 100dvh;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

body.landing-page.quote-page #topbar,
body.landing-page.quote-page #header {
	display: none !important;
}

body.landing-page.quote-page #main.quote-page-main {
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
	padding: 0;
}

body.landing-page.quote-page .quote-page-section {
	background: var(--brand-light-gray);
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}


body.landing-page.quote-page .quote-page-section > .container {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 0;
}

body.landing-page.quote-page .quote-success-state {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

body.landing-page.quote-page {
	overflow-x: hidden;
}

body.landing-page.quote-page .quote-request-card {
	min-width: 480px;
	max-width: 600px;
	width: 100%;
	max-height: 100%;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid #e5e7eb;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

body.landing-page.quote-page .quote-request-card form {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	overflow: hidden;
}

body.landing-page.quote-page .quote-card-header,
body.landing-page.quote-page .quote-card-footer {
	flex-shrink: 0;
}

body.landing-page.quote-page .quote-card-body {
	flex: 1;
	min-height: 0;
	overflow-x: hidden !important;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: thin;
}

@media (max-width: 575px) {
	body.landing-page.quote-page .quote-request-card {
		min-width: 0;
	}
}

body.landing-page.quote-page .quote-card-body::-webkit-scrollbar {
	width: 6px;
	height: 0;
}

body.landing-page.quote-page .quote-card-body::-webkit-scrollbar-track {
	background: transparent;
}

body.landing-page.quote-page .quote-card-body::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}

body.landing-page.quote-page .quote-card-body::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.3);
}

body.landing-page.quote-page .quote-card-body::-webkit-scrollbar-corner {
	display: none;
}

body.landing-page.quote-page .quote-step.quote-step-animate {
	animation: quote-step-in 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes quote-step-in {
	from {
		opacity: 0;
		transform: translateX(24px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

body.landing-page.quote-page .quote-progress-bar {
	height: 8px;
	background: #f3f4f6;
	border-radius: 9999px;
	overflow: hidden;
}

body.landing-page.quote-page .quote-progress-fill {
	height: 100%;
	background: var(--brand-green);
	border-radius: 9999px;
	transition: width 0.4s ease;
}

body.landing-page.quote-page .quote-service-card {
	transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
	cursor: pointer;
	border: 2px solid #f3f4f6;
}

body.landing-page.quote-page .quote-service-card:hover {
	border-color: rgba(16, 185, 129, 0.3);
	background: #ecfdf5;
}

body.landing-page.quote-page .quote-service-card:has(input:checked) {
	border-color: var(--brand-green);
	background: #ecfdf5;
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

body.landing-page.quote-page .quote-service-icon {
	width: 48px;
	height: 48px;
	background: rgba(16, 185, 129, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease, transform 0.25s ease;
}

body.landing-page.quote-page .quote-service-card:has(input:checked) .quote-service-icon {
	background: var(--brand-green);
}

body.landing-page.quote-page .quote-service-icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	filter: brightness(0) saturate(100%);
	opacity: 0.8;
}

body.landing-page.quote-page .quote-service-card:has(input:checked) .quote-service-icon img {
	filter: brightness(0) invert(1);
	opacity: 1;
}

body.landing-page.quote-page .quote-service-check {
	opacity: 0;
	transition: opacity 0.2s ease;
}

body.landing-page.quote-page .quote-service-card:has(input:checked) .quote-service-check {
	opacity: 1;
}

body.landing-page.quote-page .quote-upload-zone {
	transition: border-color 0.25s ease, background 0.25s ease;
	cursor: pointer;
}

body.landing-page.quote-page .quote-upload-zone:hover {
	border-color: var(--brand-green) !important;
	background: rgba(16, 185, 129, 0.05);
}

body.landing-page.quote-page .quote-upload-zone {
	position: relative;
}

body.landing-page.quote-page .quote-upload-zone .quote-file-input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

body.landing-page.quote-page .quote-upload-content {
	pointer-events: none;
}

