* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Space Mono', monospace;
	background: #000;
	color: #fff;
}

.brutalist-border {
	border: 4px solid #000;
	box-shadow: 8px 8px 0 #000;
}

.brutalist-btn {
	background: #0F7A57;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	padding: 1rem 2rem;
	cursor: pointer;
	transition: all 0.1s;
	font-family: 'Space Mono', monospace;
}

.brutalist-btn.brutalist-btn-secondary {
	background: #000;
}

.brutalist-btn.brutalist-btn-minimal {
	background-color: #E2E4E3;
	color: #000;
}

.brutalist-btn:hover {
	transform: translate(4px, 4px);
	box-shadow: none;
}

.hero-video-container {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 80px;
}

@media (orientation: landscape) {
	.hero-video-container {
		min-height: max(100vh, 700px);
	}
}

.hero-video-container video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translateX(-50%) translateY(-50%);
	object-fit: cover;
}

.hero-video-container .hero-background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%; /* Extra height for parallax movement */
	object-fit: cover;
	object-position: center;
	transform: translateY(0) scale(1.1); /* Initial scale to prevent gaps */
	will-change: transform;
}

.hero-video-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 1rem;
}

.modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	overflow-y: auto;
	padding: 1rem;
	box-sizing: border-box;
}

.modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content,
.photo-modal-content {
	transform: translateY(40px);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.active .modal-content.show,
.modal.active .photo-modal-content.show {
	transform: translateY(0);
	opacity: 1;
}

.modal.active .modal-content.closing,
.modal.active .photo-modal-content.closing {
	transform: translateY(40px);
	opacity: 0;
}

.photo-modal-content {
	background: #000;
	border: 6px solid #000;
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	position: relative;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-modal-content {
	width: 95vw;
	height: 90vh;
	max-width: 100vw;
	max-height: 100vh;
}

.photo-modal-image-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.photo-modal-content img {
	max-width: 100%;
	max-height: 90vh;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}

.photo-description {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 80%, transparent 100%);
	color: #fff;
	transform: translateY(0);
	transition: transform 0.4s ease-in-out;
}

.photo-description.hidden {
	transform: translateY(100%);
}

.photo-description h3 {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.photo-description p {
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
	.photo-modal-content {
		max-width: 95vw;
		max-height: 85vh;
	}

	.photo-modal-content img {
		max-height: 85vh;
	}

	.photo-description {
		padding: 1rem;
	}

	.photo-description h3 {
		font-size: 1.25rem;
	}

	.photo-description p {
		font-size: 0.875rem;
	}
}

.modal-content {
	background: #fff;
	border: 6px solid #000;
	max-width: 600px;
	width: 90%;
	position: relative;
	max-height: calc(100vh - 2rem);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-sizing: border-box;
}

.modal-content > .p-8 {
	overflow-y: auto;
	flex: 1;
	min-height: 0;
}

.steps-container {
	position: relative;
	overflow: visible;
}

.steps-container.animating {
	overflow: hidden;
}

.step {
	display: none;
}

.step.active {
	display: block;
}

/* Sliding transitions */
.step.slide-out-left {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	animation: slideOutLeft 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.step.slide-out-right {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	animation: slideOutRight 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.step.slide-in-left {
	display: block;
	animation: slideInLeft 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.step.slide-in-right {
	display: block;
	animation: slideInRight 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideOutLeft {
	from { transform: translateX(0); opacity: 1; }
	to { transform: translateX(-100%); opacity: 0; }
}

@keyframes slideOutRight {
	from { transform: translateX(0); opacity: 1; }
	to { transform: translateX(100%); opacity: 0; }
}

@keyframes slideInLeft {
	from { transform: translateX(-100%); opacity: 0; }
	to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
	from { transform: translateX(100%); opacity: 0; }
	to { transform: translateX(0); opacity: 1; }
}

.step-progress {
	padding: 0.75rem;
	background: #fff;
	border-bottom: 4px solid #000;
	flex-shrink: 0;
}

.step-node {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #000;
	font-weight: 800;
	font-size: 1rem;
	background: #fff;
	color: #000;
	box-shadow: 4px 4px 0 #000;
}

.step-node.active {
    background: #0F7A57;
    color: #fff;
    animation: pulse-bg 1.4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0% {
        background-color: #0F7A57;
    }
    50% {
        background-color: #13956C; /* slightly brighter tone */
    }
    100% {
        background-color: #0F7A57;
    }
}

.step-node.completed {
	background: #0F7A57;
    color: #fff;
}

.step-connector {
	height: 6px;
	flex: 1;
	background: #E2E4E3;
	margin: 0 0.5rem;
	box-shadow: 4px 4px 0 #000;
}

.step-connector.completed {
	background: #0F7A57;
}

input,
select,
textarea {
	border: 3px solid #000 !important;
	font-family: 'Space Mono', monospace;
}

input:focus,
select:focus,
textarea:focus {
	outline: none !important;
	border: 3px solid #000 !important;
	box-shadow: 4px 4px 0 #000 !important;
}

/* Brutalist Radio Buttons */
.brutalist-radio {
	position: relative;
	cursor: pointer;
	user-select: none;
	display: flex;
	align-items: center;
}

.brutalist-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.radio-checkmark {
	position: relative;
	flex-shrink: 0;
	height: 24px;
	width: 24px;
	background-color: #fff;
	border: 3px solid #000;
	margin-right: 15px;
	transition: transform 0.15s ease, box-shadow 0.3s ease;
	box-shadow: inset 0 0 0 0 #000;
}

.brutalist-radio:hover input~.radio-checkmark {
	background-color: #f0f0f0;
	transform: scale(1.05);
}

/* Fill from border inward using box-shadow */
.brutalist-radio input:checked~.radio-checkmark {
	box-shadow: inset 0 0 0 12px #000;
}

/* White center dot */
.radio-checkmark::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	background: #fff;
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
	z-index: 1;
}

.brutalist-radio input:checked~.radio-checkmark::after {
	transform: translate(-50%, -50%) scale(1);
}

.service-card {
	border: 4px solid #fff;
	transition: all 0.2s;
}

.service-card:hover {
	transform: translate(-4px, -4px);
	box-shadow: 8px 8px 0 #fff;
}

.photo-item {
	position: relative;
	overflow: hidden;
	border: 4px solid #fff;
	cursor: pointer;
	transition: all 0.2s;
	aspect-ratio: 1 / 1;
}

.photo-item:hover {
	transform: scale(1.05);
	box-shadow: 8px 8px 0 #fff;
}

.photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

nav {
	background-color: rgba(15, 122, 87, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

nav.nav-solid {
	background-color: rgba(15, 122, 87, 1);
	backdrop-filter: blur(0);
	-webkit-backdrop-filter: blur(0);
}

/* Hamburger Menu Button */
.hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	gap: 6px;
}

.hamburger-line {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center;
}

/* Hamburger to X animation */
.hamburger.is-active .hamburger-line:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.hamburger.is-active .hamburger-line:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Slide Animation */
.mobile-menu {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.35s ease, opacity 0.3s ease;
}

.mobile-menu.is-open {
	max-height: 500px;
	opacity: 1;
}

h1,
h2,
h3 {
	font-family: 'Space Grotesk', sans-serif;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.9rem;
	border: 3px solid #000;
	font-weight: 800;
	font-size: 0.9rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	box-shadow: 4px 4px 0 #000;
}

.status-open {
	background: linear-gradient(90deg, #38C79A 0%, #2EB58C 100%);
	color: #000;
	animation: glowOpen 2.5s ease-in-out infinite;
}

.status-closed {
	background: repeating-linear-gradient(45deg, #ff3b3b 0, #ff3b3b 10px, #ff6b6b 10px, #ff6b6b 20px);
	color: #fff;
	animation: pulseClosed 1.6s ease-in-out infinite;
}

.status-subtext {
	display: block;
	margin-top: 0.5rem;
	font-weight: 700;
	font-size: 0.8rem;
	color: #fff;
}

@keyframes glowOpen {

	0%,
	100% {
		box-shadow: 4px 4px 0 #000, 0 0 0px rgba(20, 241, 149, 0);
	}

	50% {
		box-shadow: 4px 4px 0 #000, 0 0 12px rgba(20, 241, 149, 0.6);
	}
}

@keyframes pulseClosed {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-1px);
	}

	100% {
		transform: translateY(0);
	}
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: bounce 2s infinite;
}

.scroll-indicator-text {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0.5rem;
	background: linear-gradient(to bottom,
			#fff 0%,
			#fff 40%,
			rgba(255, 255, 255, 0.6) 60%,
			rgba(255, 255, 255, 0.3) 80%,
			transparent 100%);
	background-size: 100% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: shimmer 3s ease-in-out infinite;
}

.scroll-indicator i {
	color: #fff;
	font-size: 1.5rem;
	display: block;
	animation: shimmer-icon 3s ease-in-out infinite;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	40% {
		transform: translateX(-50%) translateY(-10px);
	}

	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

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

	50% {
		background-position: 0% 100%;
	}

	100% {
		background-position: 0% 0%;
	}
}

@keyframes shimmer-icon {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}

	100% {
		opacity: 1;
	}
}

.cta-phone-wrapper {
	text-align: center;
	margin: 3rem 0 2rem 0;
	padding: 2rem 1rem;
}

.cta-label {
	font-size: clamp(0.875rem, 2.5vw, 1.5rem);
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	transition: transform 0.15s ease-out;
}

.cta-phone {
	display: inline-block;
	font-size: clamp(1.75rem, 7vw, 6rem);
	font-weight: 700;
	text-decoration: none;
	line-height: 1.1;
	white-space: nowrap;
	color: #0F7A57;
}

@media (max-width: 480px) {
	.cta-phone {
		font-size: clamp(1.5rem, 6.5vw, 2.5rem);
	}
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.scroll-indicator {
		bottom: 1rem;
	}

	.modal {
		padding: 0;
	}

	.modal-content {
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
		border: none;
	}
}

/* Modal Close Button Row */
.modal-close-row {
	display: flex;
	justify-content: flex-end;
	padding: 0.5rem 0.75rem;
	background: #fff;
	border-bottom: 3px solid #000;
	flex-shrink: 0;
}

.modal-close-row button {
	color: #000;
}

/* Toast Notifications */
.toast-container {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 10001;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 400px;
}

.toast {
	background: #000;
	color: #fff;
	padding: 1rem 1.25rem;
	border: 3px solid #fff;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transform: translateX(120%);
	animation: toastSlideIn 0.3s ease forwards;
	box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.3);
}

.toast.toast-out {
	animation: toastSlideOut 0.3s ease forwards;
}

.toast.toast-error {
	background: #ff3b3b;
	border-color: #000;
	box-shadow: 4px 4px 0 #000;
}

.toast.toast-warning {
	background: #f59e0b;
	border-color: #000;
	color: #000;
	box-shadow: 4px 4px 0 #000;
}

.toast i {
	font-size: 1.25rem;
	flex-shrink: 0;
}

@keyframes toastSlideIn {
	from {
		transform: translateX(120%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes toastSlideOut {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(120%);
		opacity: 0;
	}
}

/* Success Popup */
.success-popup {
	display: none;
	position: fixed;
	z-index: 2500;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	align-items: center;
	justify-content: center;
}

.success-popup.active {
	display: flex;
}

.success-popup-content {
	background: #fff;
	border: 6px solid #000;
	padding: 3rem 2rem;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.8);
	opacity: 0;
	animation: successPopIn 0.4s ease forwards;
}

.success-popup.closing .success-popup-content {
	animation: successPopOut 0.3s ease forwards;
}

@keyframes successPopIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes successPopOut {
	from {
		transform: scale(1);
		opacity: 1;
	}
	to {
		transform: scale(0.8);
		opacity: 0;
	}
}

.success-icon {
	width: 80px;
	height: 80px;
	background: #0F7A57;
	border: 4px solid #000;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: #fff;
	box-shadow: 4px 4px 0 #000;
	animation: successIconPop 0.5s ease 0.2s both;
}

@keyframes successIconPop {
	0% {
		transform: scale(0) rotate(-45deg);
	}
	50% {
		transform: scale(1.2) rotate(10deg);
	}
	100% {
		transform: scale(1) rotate(0);
	}
}

.success-popup-content h3 {
	font-size: 1.75rem;
	color: #000;
	margin-bottom: 0.5rem;
}

.success-popup-content p {
	color: #333;
	font-size: 1rem;
}

/* Animated mesh gradient placeholders for posts */
.post-gradient {
	position: relative;
	overflow: hidden;
	background-size: 400% 400%;
	animation: meshMove 12s ease infinite;
}

.post-gradient::before {
	content: '';
	position: absolute;
	inset: 0;
	background: inherit;
	background-size: inherit;
	filter: blur(30px);
	opacity: 0.6;
	animation: meshPulse 8s ease-in-out infinite;
}

.post-gradient i {
	position: relative;
	z-index: 1;
	color: #fff;
}

/* Gradient variations - forest/nature theme */
.post-gradient-1 {
	background: 
		radial-gradient(ellipse at 20% 80%, rgba(15, 122, 87, 0.8) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 20%, rgba(34, 197, 94, 0.6) 0%, transparent 50%),
		radial-gradient(ellipse at 50% 50%, rgba(20, 83, 45, 0.9) 0%, transparent 70%),
		linear-gradient(135deg, #0a2f1f 0%, #14532d 50%, #052e16 100%);
}

.post-gradient-2 {
	background: 
		radial-gradient(ellipse at 70% 70%, rgba(15, 122, 87, 0.7) 0%, transparent 50%),
		radial-gradient(ellipse at 30% 30%, rgba(5, 46, 22, 0.8) 0%, transparent 50%),
		radial-gradient(ellipse at 50% 90%, rgba(34, 197, 94, 0.5) 0%, transparent 60%),
		linear-gradient(180deg, #14532d 0%, #0a2f1f 100%);
	animation-delay: -3s;
}

.post-gradient-3 {
	background: 
		radial-gradient(ellipse at 10% 50%, rgba(34, 197, 94, 0.6) 0%, transparent 50%),
		radial-gradient(ellipse at 90% 60%, rgba(15, 122, 87, 0.7) 0%, transparent 50%),
		radial-gradient(ellipse at 50% 20%, rgba(20, 83, 45, 0.8) 0%, transparent 60%),
		linear-gradient(225deg, #052e16 0%, #14532d 50%, #0a2f1f 100%);
	animation-delay: -6s;
}

.post-gradient-4 {
	background: 
		radial-gradient(ellipse at 80% 80%, rgba(20, 83, 45, 0.8) 0%, transparent 50%),
		radial-gradient(ellipse at 20% 20%, rgba(15, 122, 87, 0.7) 0%, transparent 50%),
		radial-gradient(ellipse at 60% 40%, rgba(34, 197, 94, 0.5) 0%, transparent 60%),
		linear-gradient(315deg, #14532d 0%, #052e16 50%, #0a2f1f 100%);
	animation-delay: -9s;
}

@keyframes meshMove {
	0%, 100% {
		background-position: 0% 50%;
	}
	25% {
		background-position: 100% 25%;
	}
	50% {
		background-position: 100% 75%;
	}
	75% {
		background-position: 0% 100%;
	}
}

@keyframes meshPulse {
	0%, 100% {
		opacity: 0.4;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(1.05);
	}
}

/* ============================================
   Service Modal - Conversion Optimized
   ============================================ */
.service-modal-content {
	max-width: 500px;
	width: 100%;
	overflow: hidden;
	border: none;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 2rem);
}

.service-modal-close {
	flex-shrink: 0;
	background: rgba(0,0,0,0.3);
	color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.25rem;
	transition: all 0.2s;
}

.service-modal-close:hover {
	background: rgba(0,0,0,0.6);
	transform: scale(1.1);
}

.service-modal-body {
	background: #fff;
	color: #1a1a1a;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	flex: 1;
	min-height: 0;
}

/* Hero Section */
.service-modal-hero {
	background: linear-gradient(135deg, #0F7A57 0%, #065f46 50%, #064e3b 100%);
	color: #fff;
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	overflow: hidden;
	flex-shrink: 0;
}

.service-modal-title {
	flex: 1;
	text-align: center;
	font-size: 1.35rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0;
	margin-left: 40px; /* Balance the close button width */
}

.service-modal-subtitle {
	font-size: 0.7rem;
	opacity: 0.9;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Benefits Section */
.service-modal-benefits {
	padding: 1.5rem;
	background: #f9fafb;
	overflow-y: auto;
	flex: 1;
	min-height: 0;
	-webkit-overflow-scrolling: touch;
}

.service-modal-benefits-title {
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #0F7A57;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 0.875rem;
	background: #fff;
	border-radius: 8px;
	margin-bottom: 0.625rem;
	border: 1px solid #e5e7eb;
	transition: all 0.2s;
}

.benefit-item:hover {
	border-color: #0F7A57;
	transform: translateX(4px);
}

.benefit-icon {
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, #0F7A57, #10b981);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
	font-size: 0.75rem;
}

.benefit-text {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #374151;
}

/* Trust Badges */
.service-modal-trust {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	padding: 1rem 1.5rem;
	background: #fff;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
	flex-shrink: 0;
}

.trust-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	text-align: center;
}

.trust-badge i {
	font-size: 1.25rem;
	color: #0F7A57;
}

.trust-badge span {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #6b7280;
}

/* CTA Section */
.service-modal-cta {
	padding: 1.5rem;
	text-align: center;
	background: #fff;
	flex-shrink: 0;
}

.cta-urgency {
	font-size: 0.85rem;
	color: #dc2626;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.cta-urgency i {
	animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.service-modal-btn {
	width: 100%;
	padding: 1.125rem 2rem;
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.cta-reassurance {
	font-size: 0.75rem;
	color: #6b7280;
	margin-top: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
}

.cta-reassurance i {
	color: #10b981;
}

/* Mobile Responsive */
@media (max-width: 640px) {
	.service-modal-content {
		max-width: 100%;
		height: 100%;
		max-height: 100%;
		border-radius: 0;
	}
	
	.service-modal-hero {
		padding: 1rem 1.25rem;
	}
	
	.service-modal-title {
		font-size: 1.2rem;
	}
	
	.service-modal-benefits {
		padding: 1.25rem;
	}
	
	.benefit-item {
		padding: 0.75rem;
	}
	
	.service-modal-trust {
		gap: 1rem;
		padding: 0.875rem 1rem;
	}
	
	.trust-badge i {
		font-size: 1.1rem;
	}
	
	.trust-badge span {
		font-size: 0.6rem;
	}
	
	.service-modal-cta {
		padding: 1.25rem;
	}
	
	.service-modal-btn {
		font-size: 1rem;
		padding: 1rem 1.5rem;
	}
}

/* Gallery - Hidden Photos */
.hidden-photo {
	display: none;
}

.revealing-photo {
	animation: fadeInScale 0.5s ease-in-out forwards;
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Photo Modal Close Button */
.photo-modal-close-btn {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.2s ease;
	font-size: 1.25rem;
}

.photo-modal-close-btn:hover {
	background: rgba(0, 0, 0, 0.6);
	border-color: rgba(255, 255, 255, 0.8);
}

/* Photo Modal Navigation Buttons */
.photo-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 15;
	transition: all 0.2s ease;
	font-size: 1.5rem;
}

.photo-nav-btn:hover {
	background: rgba(0, 0, 0, 0.6);
	border-color: rgba(255, 255, 255, 0.8);
}

.photo-nav-prev {
	left: 20px;
}

.photo-nav-next {
	right: 20px;
}

/* Photo Description Hide Link */
.photo-hide-link {
	display: inline-block;
	margin-top: 0.5rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	text-decoration: underline;
	cursor: pointer;
	transition: color 0.2s ease;
}

.photo-hide-link:hover {
	color: rgba(255, 255, 255, 0.9);
}

/* Hide navigation on small screens to avoid covering photo */
@media (max-width: 640px) {
	.photo-modal-close-btn {
		width: 36px;
		height: 36px;
		font-size: 1.1rem;
		top: 12px;
		right: 12px;
	}
	
	.photo-nav-btn {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
	
	.photo-nav-prev {
		left: 10px;
	}
	
	.photo-nav-next {
		right: 10px;
	}
}

/* Photo Album Modal (iOS Style) */
.photo-album-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	z-index: 9000;
	display: none;
	flex-direction: column;
	opacity: 0;
	transform: translateY(100%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.photo-album-modal.active {
	display: flex;
}

.photo-album-modal.show {
	transform: translateY(0);
	opacity: 1;
}

.photo-album-modal.closing {
	transform: translateY(100%);
	opacity: 0;
}

.photo-album-header {
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 1rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: sticky;
	top: 0;
	z-index: 10;
}

.photo-album-title {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
}

.photo-album-close-btn {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 1.25rem;
}

.photo-album-close-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
}

.photo-album-grid {
	flex: 1;
	overflow-y: auto;
	padding: 0.25rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: calc((100vw - 0.75rem) / 2);
	gap: 0.25rem;
	-webkit-overflow-scrolling: touch;
}

.photo-album-item {
	overflow: hidden;
	cursor: pointer;
	background: #1a1a1a;
}

.photo-album-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo-album-item:hover img {
	transform: scale(1.05);
}

.photo-album-item:active {
	opacity: 0.8;
}

/* Tablet and larger */
@media (min-width: 768px) {
	.photo-album-grid {
		padding: 0.5rem;
		gap: 0.5rem;
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: calc((100vw - 1.5rem) / 3);
	}
	
	.photo-album-header {
		padding: 1.5rem 2rem;
	}
	
	.photo-album-title {
		font-size: 1.75rem;
	}
}

/* Desktop */
@media (min-width: 1024px) {
	.photo-album-grid {
		padding: 1rem;
		gap: 0.75rem;
		grid-template-columns: repeat(4, 1fr);
		grid-auto-rows: calc((100vw - 3.25rem) / 4);
	}
}

/* Large desktop */
@media (min-width: 1440px) {
	.photo-album-grid {
		grid-template-columns: repeat(5, 1fr);
		grid-auto-rows: calc((100vw - 4rem) / 5);
	}
}

/* ============================================
   Bento Grid - Marketable Showcase Section
   ============================================ */

/* Video Comparison Slider */
.video-comparison {
	touch-action: none;
	user-select: none;
}

.video-before,
.video-after {
	will-change: clip-path;
}

.video-after video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slider-handle {
	will-change: left;
}

.slider-line {
	position: relative;
}

.slider-thumb {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.slider-thumb:active {
	transform: scale(1.15);
}

/* Drag hint animation */
.drag-hint {
	animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
	0%, 100% {
		opacity: 1;
		transform: translateX(-50%) scale(1);
	}
	50% {
		opacity: 0.7;
		transform: translateX(-50%) scale(0.98);
	}
}

/* Count up animation for numbers */
[data-count] {
	display: inline-block;
}

/* Shimmer animation for cards */
@keyframes shimmer {
	0% {
		background-position: -250% -250%;
	}
	100% {
		background-position: 250% 250%;
	}
}

.animate-shimmer {
	animation: shimmer 8s linear infinite;
}

/* Bento card hover effects */
.bento-card {
	transform-style: preserve-3d;
	perspective: 1000px;
}

.bento-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	opacity: 0;
	transition: opacity 0.3s ease;
	background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.bento-card:hover::before {
	opacity: 1;
}

/* Google rating stars pulse on hover */
.bento-card:hover .fa-star,
.bento-card:hover .fa-star-half-alt {
	animation: starPulse 0.6s ease-in-out;
}

@keyframes starPulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}

/* Stagger star animation */
.bento-card:hover .fa-star:nth-child(1),
.bento-card:hover .fa-star-half-alt:nth-child(1) { animation-delay: 0s; }
.bento-card:hover .fa-star:nth-child(2),
.bento-card:hover .fa-star-half-alt:nth-child(2) { animation-delay: 0.1s; }
.bento-card:hover .fa-star:nth-child(3),
.bento-card:hover .fa-star-half-alt:nth-child(3) { animation-delay: 0.2s; }
.bento-card:hover .fa-star:nth-child(4),
.bento-card:hover .fa-star-half-alt:nth-child(4) { animation-delay: 0.3s; }
.bento-card:hover .fa-star:nth-child(5),
.bento-card:hover .fa-star-half-alt:nth-child(5) { animation-delay: 0.4s; }

/* Entrance animations for bento cards - drop/fall effect */
.bento-card {
	opacity: 0;
	transform: translateY(-60px) scale(0.95);
	transition: none;
}

.bento-card.animate-drop {
	animation: bentoDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.bento-card:nth-child(1).animate-drop { animation-delay: 0s; }
.bento-card:nth-child(2).animate-drop { animation-delay: 0.08s; }
.bento-card:nth-child(3).animate-drop { animation-delay: 0.16s; }
.bento-card:nth-child(4).animate-drop { animation-delay: 0.24s; }
.bento-card:nth-child(5).animate-drop { animation-delay: 0.32s; }
.bento-card:nth-child(6).animate-drop { animation-delay: 0.4s; }

@keyframes bentoDrop {
	0% {
		opacity: 0;
		transform: translateY(-60px) scale(0.95);
	}
	50% {
		opacity: 1;
	}
	75% {
		transform: translateY(8px) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.site-footer {
	background: #000;
	color: #fff;
	overflow: hidden;
}

/* Footer CTA Banner */
.footer-cta-banner {
	background: linear-gradient(135deg, #0F7A57 0%, #0a5c42 100%);
	padding: 2.5rem 0;
	position: relative;
	overflow: hidden;
}

.footer-cta-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 10px,
		rgba(255,255,255,0.03) 10px,
		rgba(255,255,255,0.03) 20px
	);
	pointer-events: none;
}

.footer-cta-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}

.footer-cta-text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.footer-cta-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0.9;
}

.footer-cta-headline {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.footer-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-phone-btn,
.footer-quote-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	font-family: 'Space Mono', monospace;
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	transition: all 0.15s ease;
	cursor: pointer;
}

.footer-phone-btn {
	background: #fff;
	color: #000;
}

.footer-quote-btn {
	background: #000;
	color: #fff;
}

/* Main Footer */
.footer-main {
	padding: 4rem 0 3rem;
	border-top: 4px solid #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1.5fr;
	gap: 3rem;
}

@media (max-width: 900px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.footer-cta-content {
		flex-direction: column;
		text-align: center;
	}
	.footer-cta-actions {
		width: 100%;
		flex-direction: column;
	}
	.footer-phone-btn,
	.footer-quote-btn {
		width: 100%;
		justify-content: center;
	}
}

/* Footer Brand Section */
.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.footer-logo i {
	font-size: 2rem;
	color: #0F7A57;
}

.footer-logo span {
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.footer-tagline {
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.7;
	margin-bottom: 1.5rem;
	max-width: 400px;
}

.footer-trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.trust-badge-mini {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.75rem;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.trust-badge-mini i {
	color: #0F7A57;
	font-size: 0.8rem;
}

/* Footer Section Headings */
.footer-heading {
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 1.25rem;
	color: #0F7A57;
	position: relative;
	display: inline-block;
}

.footer-heading::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	width: 2rem;
	height: 2px;
	background: #0F7A57;
}

/* Footer Links */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	font-size: 0.85rem;
	transition: all 0.2s ease;
}

.footer-links a i {
	font-size: 0.6rem;
	transition: transform 0.2s ease;
}

.footer-links a:hover {
	color: #fff;
}

.footer-links a:hover i {
	transform: translateX(4px);
	color: #0F7A57;
}

/* Footer Contact List */
.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
}

.footer-contact-list li {
	margin-bottom: 1rem;
}

.footer-contact-list a {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	font-size: 0.85rem;
	line-height: 1.4;
	transition: color 0.2s ease;
}

.footer-contact-list a i {
	color: #0F7A57;
	margin-top: 0.2rem;
	width: 1rem;
	text-align: center;
}

.footer-contact-list a:hover {
	color: #fff;
}

/* Footer Hours */
.footer-hours {
	background: rgba(255,255,255,0.05);
	border-left: 3px solid #0F7A57;
	padding: 0.75rem 1rem;
}

.hours-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0.6;
	margin-bottom: 0.25rem;
}

.hours-label i {
	margin-right: 0.4rem;
}

.hours-text {
	font-size: 0.85rem;
	font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
	background: rgba(255,255,255,0.03);
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 1.5rem 0;
}

.footer-bottom-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

@media (max-width: 600px) {
	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}
}

.footer-copyright {
	font-size: 0.75rem;
	opacity: 0.5;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-separator {
	opacity: 0.3;
}

.footer-blog-link {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.footer-blog-link:hover {
	opacity: 1;
	text-decoration: underline;
}

/* Designer Credit */
.designer-credit a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.1rem;
	text-decoration: none;
	color: inherit;
	opacity: 0.35;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.designer-credit a:hover {
	opacity: 0.8;
	transform: translateY(-2px);
}

.designer-credit .credit-text {
	font-size: 0.55rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(255,255,255,0.5);
}

.designer-credit .credit-name {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #fff;
	text-transform: uppercase;
}

.designer-credit .credit-tagline {
	font-size: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: rgba(255,255,255,0.4);
}