/* ========================================
   Global Design Tokens
======================================== */

:root {
	--heading-color: #212832;
	--text-color: #69707a;
	--accent-color: #2f8f1f;
	--accent-soft: rgba(47,143,31,0.08);
	--accent-soft-strong: rgba(47,143,31,0.12);
	--card-shadow: 0 1rem 3rem rgba(33, 40, 50, 0.12);
	--hover-shadow: 0 10px 25px rgba(0,0,0,0.08);
	--site-container-width: 1140px;
}

/* ========================================
   Shared Layout Width
======================================== */

.home-section > .container,
.service-page > .container {
	
}

/* ========================================
   Header / Hero
======================================== */

.page-header-ui {
	position: relative;
	min-height: 520px;
	padding-top: 12rem;
	padding-bottom: 8rem;
}

.page-header-ui-content {
	position: relative;
	z-index: 2;
	margin-top: 140px;
	margin-bottom: -20px;
}

.page-header-ui .page-header-ui-title {
	font-size: 2.5rem;
	line-height: 1.05;
}

.page-header-video {
	position: relative;
	overflow: hidden;
}

.page-header-video video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

header .overlay {
	position: absolute;
	inset: 0;
	background-color: #000;
	opacity: 0.4;
	z-index: 1;
}

/* ========================================
   Backgrounds
======================================== */

.grid-background {
	background-color: #fff;
	background-image:
		linear-gradient(to right, rgba(0,0,0,0.15) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(0,0,0,0.15) 1px, transparent 1px);
	background-size: 30px 30px;
}

/* ========================================
   Typography System
======================================== */

.page-title,
.service-title {
	color: var(--heading-color);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.05;
	margin-bottom: 1.25rem;
}

.section-title {
	color: var(--heading-color);
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-title::after {
	content: "";
	display: block;
	width: 70px;
	height: 3px;
	margin-top: 0.75rem;
	border-radius: 2px;
	background: var(--accent-color);
}

.section-title-center::after {
	margin-left: auto;
	margin-right: auto;
}

.section-label,
.section-subtitle,
.service-label,
.services-menu-label,
.services-menu-group-title {
	color: var(--accent-color);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.section-label,
.service-label {
	font-size: 0.8rem;
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1rem;
}

.section-subtitle::before,
.section-subtitle::after {
	content: "";
	display: none;
	width: 50px;
	height: 1px;
	background: var(--accent-color);
	vertical-align: middle;
}

.section-subtitle::before {
	margin-right: 12px;
}

.section-subtitle::after {
	margin-left: 12px;
}

/* ========================================
   Content Blocks / Cards
======================================== */

.text-block,
.about-card,
.content-card,
.service-card {
	position: relative;
	z-index: 2;
	background: #fff;
}

.service-card > .row:first-child {
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.text-block,
.about-card {
	border-radius: 12px;
}

.text-block {
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.content-card,
.service-card {
	border-radius: 1.25rem;
	box-shadow: var(--card-shadow);
}

.content-card {
	padding: 3rem;
}

.service-card {
	overflow: visible;
}

.feature-card,
.home-service-card {
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 1rem;
	background: #fff;
	transition: 0.2s ease;
}

.feature-card:hover,
.home-service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--hover-shadow);
}

.home-service-card {
	display: block;
	height: 100%;
	padding: 2rem;
	color: var(--text-color);
	text-align: center;
	text-decoration: none;
}

.home-service-card:hover {
	color: var(--text-color);
	text-decoration: none;
}

.home-service-card h5 {
	color: var(--heading-color);
	font-weight: 700;
}

.home-service-card p {
	margin-bottom: 0;
}

.icon-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 auto;
	border-radius: 50%;
	background: var(--accent-soft-strong);
	flex-shrink: 0;
}

.icon-circle svg {
	stroke: var(--accent-color);
}

.divider {
	width: 30px;
	height: 3px;
	margin: 10px auto 15px;
	border-radius: 2px;
	background: var(--accent-color);
}

.cta-strip {
	background: var(--accent-soft);
}

/* ========================================
   Buttons
======================================== */

.btn-success {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.btn-outline-success {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

/* ========================================
   Services Mega Menu
======================================== */

.services-mega-menu {
	width: 760px;
	max-width: 100%;
	max-height: calc(100vh - 100px);
	border: 0;
	border-radius: 1rem;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1rem 3rem rgba(33, 40, 50, 0.18);
}

.services-mega-menu .row {
	height: 100%;
}

.services-mega-menu .col-lg-5 {
	display: flex;
}

.services-menu-image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
	flex: 1;
	background-size: cover;
	background-position: center;
}

.services-menu-image-content {
	position: absolute;
	inset: auto 1.5rem 1.5rem 1.5rem;
	color: #fff;
}

.services-menu-image-content h5 {
	margin-bottom: 0.35rem;
	color: #fff;
	font-weight: 700;
}

.services-menu-image-content p {
	margin-bottom: 1rem;
	font-size: 0.9rem;
	opacity: 0.9;
}

.services-menu-content {
	padding: 2.5rem 2.75rem;
	overflow-y: auto;
}

.services-menu-label {
	margin-bottom: 1rem;
	font-size: 0.75rem;
}

.services-menu-label a {
	color: var(--accent-color);
	text-decoration: none;
}

.services-menu-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.35rem 0.75rem;
}

.services-menu-list.grouped {
	gap: 1.25rem 1.5rem;
	padding: 1.5rem 1.75rem;
}

.services-menu-group {
	margin-bottom: 1.25rem;
}

.services-menu-group:last-child {
	margin-bottom: 0;
}

.services-menu-group-title {
	margin-bottom: 0.6rem;
	font-size: 0.7rem;
}

.services-menu-link {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.65rem 0.75rem;
	border-radius: 0.65rem;
	color: #363d47;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.4;
	transition: 0.18s ease;
}

.services-menu-group .services-menu-link {
	padding: 0.6rem 0.65rem;
}

.services-menu-link svg {
	width: 17px;
	height: 17px;
	stroke: var(--accent-color);
	flex-shrink: 0;
}

.services-menu-link:hover {
	background: var(--accent-soft);
	color: var(--accent-color);
	text-decoration: none;
	transform: translateX(3px);
}

.services-menu-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0 0.75rem 0.75rem;
	padding: 1rem;
	border-radius: 0.85rem;
	background: var(--accent-soft);
}

.services-menu-footer p {
	margin: 0;
	color: var(--text-color);
	font-size: 0.9rem;
}

.services-menu-footer .btn {
	white-space: nowrap;
}

/* ========================================
   Home Page
======================================== */

.home-section {
	padding: 5rem 0;
}

/* ========================================
   Service Pages
======================================== */

.service-page {
	padding: 5rem 0;
}

.service-page-no-header {
	padding-top: 14rem;
}

.service-hero {
	padding: 3rem 3rem 2.25rem;
}

.service-intro {
	font-size: 1.1rem;
	font-weight: 500;
	color: #2c3e50;
	margin-bottom: 8px;
}

.service-intro-small {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #6c757d; /* soft gray */
	margin-top: 0;
	max-width: 700px;
}

.service-area-note {
	font-size: 0.95rem;
	color: #6c757d;
	border-top: 1px solid #e9ecef;
	padding-top: 12px;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
}

.service-image {
	min-height: 380px;
	background-size: cover;
	background-position: center;
}

.service-section {
	padding: 2.5rem 3rem;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.highlight-section {
	padding: 2rem;
	border-radius: 1rem;
	background: var(--accent-soft);
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.9rem;
	line-height: 1.55;
}

.feature-list svg {
	width: 18px;
	height: 18px;
	margin-top: 0.2rem;
	stroke: var(--accent-color);
	flex-shrink: 0;
}

/* ========================================
   Process Grid
======================================== */

.process-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	row-gap: 1.5rem;
	margin-top: 1.5rem;
	padding: 0 1rem;
}

.process-step {
	display: flex;
	gap: 0.9rem;
	padding: 1rem;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 0.85rem;
	background: #fff;
	transition: 0.2s ease;
}

.process-step:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.process-number {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--accent-soft-strong);
	color: var(--accent-color);
	font-size: 0.9rem;
	font-weight: 700;
	flex-shrink: 0;
}

.process-step h5 {
	margin: 0 0 0.25rem;
	color: var(--heading-color);
	font-size: 1rem;
	font-weight: 700;
}

.process-step p {
	margin: 0;
	color: var(--text-color);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* ========================================
   CTA Box
======================================== */

.cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin: 3rem;
	padding: 2rem;
	border-radius: 1rem;
	background: var(--heading-color);
	color: #fff;
}

.cta-box h2 {
	margin-bottom: 0.35rem;
	color: #fff;
	font-weight: 700;
}

.cta-box p {
	margin-bottom: 0;
	opacity: 0.85;
}

/* ========================================
   Responsive
======================================== */

@media (min-width: 538px) {
	.section-subtitle::before,
	.section-subtitle::after {
		display: inline-block;
	}
}

@media (min-width: 768px) {
	.section-subtitle::before,
	.section-subtitle::after {
		width: 100px;
	}
}

@media (min-width: 992px) {
	.section-subtitle::before,
	.section-subtitle::after {
		width: 200px;
	}
}

@media (max-width: 991.98px) {
	.content-card,
	.service-hero,
	.service-section {
		padding: 2rem;
	}

	.services-mega-menu {
		width: 100%;
	}

	.services-menu-list,
	.services-menu-list.grouped {
		grid-template-columns: 1fr;
	}

	.services-menu-footer,
	.cta-box {
		align-items: flex-start;
		flex-direction: column;
	}

	.service-image {
		min-height: 260px;
	}

	.cta-box {
		margin: 2rem;
	}
}

@media (max-width: 768px) {
	.service-page-no-header {
		padding-top: 16rem;
	}

	.process-grid {
		grid-template-columns: 1fr;
		padding: 0;
	}
}

@media (max-width: 575.98px) {
	.grid-background > .container {
		padding-left: 0 !important;
		padding-right: 0 !important;
		max-width: 100%;
	}

	.grid-background .text-block,
	.grid-background .content-card,
	.grid-background .service-card,
	.grid-background .cta-strip,
	.grid-background .cta-box {
		width: calc(100% - 2rem);
		margin-left: auto;
		margin-right: auto;
		box-sizing: border-box;
	}

	.grid-background .text-block,
	.grid-background .content-card {
		padding: 1.75rem !important;
	}

	.grid-background .row {
		margin-left: 0;
		margin-right: 0;
	}

	.page-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.service-intro {
		font-size: 1rem;
	}
}

@media (max-height: 700px) {
	.services-menu-list {
		gap: 0.25rem 0.5rem;
	}

	.services-menu-link {
		padding: 0.5rem 0.6rem;
		font-size: 0.9rem;
	}

	.services-menu-content {
		padding: 1.5rem;
	}
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.service-list-card img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin: 0 auto 1.25rem;
	display: block;
}

@media (max-width: 991.98px) {
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575.98px) {
	.services-grid {
		grid-template-columns: 1fr;
	}

	.service-list-card img {
		width: 70px;
		height: 70px;
	}
}

/* ========================================
   Gallery / Project Cards
======================================== */

.gallery-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.gallery-filter button {
	padding: 0.65rem 1rem;
	border: 1px solid rgba(47,143,31,0.25);
	border-radius: 999px;
	background: #fff;
	color: var(--accent-color);
	font-weight: 700;
	transition: 0.2s ease;
}

.gallery-filter button:hover,
.gallery-filter button.active {
	background: var(--accent-color);
	color: #fff;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.project-card {
	display: block;
	overflow: hidden;
	border-radius: 1.25rem;
	background: #fff;
	color: var(--text-color);
	text-decoration: none;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	transition: 0.2s ease;
}

.project-card:hover {
	color: var(--text-color);
	text-decoration: none;
	transform: translateY(-5px);
	box-shadow: var(--hover-shadow);
}

.project-card.is-hidden {
	display: none;
}

.project-image {
	position: relative;
	min-height: 240px;
	background-size: cover;
	background-position: center;
}

/* Multiple project badges */
.project-tags {
	position: absolute;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	z-index: 2;
}

.project-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.55rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.92);
	color: var(--accent-color);
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: 0.2s ease;
}

.project-tag:hover,
.project-tag.active {
	background: var(--accent-color);
	color: #fff;
}

.project-content {
	padding: 1.5rem;
}

.project-content h5 {
	margin-bottom: 0.6rem;
	color: var(--heading-color);
	font-weight: 700;
}

.project-content p {
	margin-bottom: 1rem;
	line-height: 1.55;
}

.project-meta {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	color: var(--accent-color);
	font-size: 0.85rem;
	font-weight: 700;
}

/* ========================================
   Before / After Slider
======================================== */

.before-after-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	border-radius: 1.25rem;
	box-shadow: var(--card-shadow);
	aspect-ratio: 16 / 9;
	background: #fff;
}

.before-after-slider img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.after-image-wrapper {
	position: absolute;
	inset: 0;
	width: 50%;
	overflow: hidden;
}

.before-after-range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: ew-resize;
	z-index: 5;
}

.slider-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	background: #fff;
	transform: translateX(-50%);
	z-index: 3;
}

.slider-handle {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #fff;
	color: var(--accent-color);
	font-weight: 700;
	transform: translate(-50%, -50%);
	box-shadow: 0 6px 18px rgba(0,0,0,0.25);
	z-index: 4;
}

.before-label,
.after-label {
	position: absolute;
	bottom: 1rem;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: rgba(0,0,0,0.55);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	z-index: 4;
}

.before-label {
	left: 1rem;
}

.after-label {
	right: 1rem;
}

/* ========================================
   Project Detail Photo Grid
======================================== */

.project-photo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.project-photo {
	display: block;
	overflow: hidden;
	border-radius: 1rem;
}

.project-photo img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
	transition: 0.2s ease;
}

.project-photo:hover img {
	transform: scale(1.04);
}

/* ========================================
   Gallery Responsive
======================================== */

@media (max-width: 991.98px) {
	.project-grid,
	.project-photo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575.98px) {
	.project-grid,
	.project-photo-grid {
		grid-template-columns: 1fr;
	}

	.project-image {
		min-height: 220px;
	}

	.project-photo img {
		height: 220px;
	}

	.project-meta {
		flex-direction: column;
		gap: 0.35rem;
	}

	.before-after-slider {
		aspect-ratio: 4 / 3;
	}
}

.project-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	border-radius: 1.25rem 1.25rem 0 0;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.project-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 1;
}

.project-hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	margin: 0 auto;
	padding: 2rem;
	text-align: center;
}

.project-hero .service-title,
.project-hero .service-label,
.project-hero .service-intro {
	color: #fff;
}

/* ========================================
   Gallery Lightbox Modal
======================================== */

.gallery-lightbox {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background: rgba(0,0,0,0.88);
	z-index: 9999;
}

.gallery-lightbox.is-open {
	display: flex;
}

.lightbox-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: min(1200px, 90vw);
	max-height: 85vh;
	text-align: center;
}

.lightbox-content img {
	display: block;
	max-width: 100%;
	max-height: 80vh;
	border-radius: 1rem;
	box-shadow: 0 1rem 3rem rgba(0,0,0,0.4);
}

.lightbox-caption {
	margin-top: 0.75rem;
	color: #fff;
	font-size: 0.9rem;
	opacity: 0.85;
}

/* Close button */
.lightbox-close {
	position: fixed;
	top: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.95);
	color: var(--heading-color);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	z-index: 10001;
	transition: 0.2s ease;
}

.lightbox-close:hover {
	background: #fff;
	transform: scale(1.05);
}

/* Arrows */
.lightbox-arrow {
	position: fixed;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.95);
	color: var(--heading-color);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	z-index: 10001;
	transform: translateY(-50%);
	transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-arrow:hover {
	background: #fff;
	color: var(--accent-color);
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

/* ========================================
   Gallery Lightbox Responsive
======================================== */

@media (max-width: 575.98px) {
	.gallery-lightbox {
		padding: 1rem;
	}

	.lightbox-content {
		max-width: 92vw;
	}

	.lightbox-content img {
		max-height: 75vh;
		border-radius: 0.75rem;
	}

	.lightbox-arrow {
		width: 44px;
		height: 44px;
		font-size: 1.5rem;
	}

	.lightbox-prev {
		left: 10px;
	}

	.lightbox-next {
		right: 10px;
	}

	.lightbox-close {
		top: 10px;
		right: 10px;
		width: 44px;
		height: 44px;
		font-size: 1.6rem;
	}

	.lightbox-caption {
		font-size: 0.8rem;
	}
}

.project-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 1rem;
}

/* ========================================
   Fade In Animations
======================================== */

.fade-in {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Slight delay variations */
.fade-in-delay-1 {
	transition-delay: 0.1s;
}

.fade-in-delay-2 {
	transition-delay: 0.2s;
}

.fade-in-delay-3 {
	transition-delay: 0.3s;
}

/* ========================================
   Quote Page
======================================== */

.quote-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.quote-form-full {
	grid-column: 1 / -1;
}

.quote-form .form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--heading-color);
	font-size: 0.95rem;
	font-weight: 700;
}

.quote-form .form-control {
	min-height: 56px;
	border: 1px solid rgba(0,0,0,0.12);
	border-radius: 0.75rem;
	padding: 0.85rem 1rem;
	color: var(--heading-color);
	box-shadow: none;
}

.quote-form .form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.2rem rgba(47,143,31,0.12);
}

.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.contact-info-grid a {
	color: var(--accent-color);
	font-weight: 700;
	text-decoration: none;
}

.contact-info-card {
	padding: 1.5rem;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 1rem;
	background: #fff;
	text-align: center;
	transition: 0.2s ease;
	cursor: pointer;
}

.contact-info-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--hover-shadow);
}

.contact-info-card a {
	color: var(--accent-color);
	font-weight: 700;
	text-decoration: none;
}

.contact-info-card a:hover {
	text-decoration: underline;
}

@media (max-width: 991.98px) {
	.contact-info-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575.98px) {
	.quote-form-grid {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   Success Message
======================================== */

.success-box {
	display: flex;
	align-items: flex-start;
	gap: 1rem;

	padding: 1.5rem;
	margin-bottom: 2rem;

	border-radius: 1rem;
	background: rgba(47,143,31,0.08);
	border: 1px solid rgba(47,143,31,0.2);
}

.success-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 44px;
	height: 44px;
	border-radius: 50%;

	background: var(--accent-color);
	color: #fff;
	flex-shrink: 0;
}

.success-icon svg {
	width: 20px;
	height: 20px;
}

.success-content h3 {
	margin: 0 0 0.25rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--heading-color);
}

.success-content p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--text-color);
}

.form-success .quote-form {
	opacity: 0.6;
	pointer-events: none;
}

.form-control.valid {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.2rem rgba(47,143,31,0.12);
}

.form-control.error {
	border-color: #dc3545;
	box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.12);
}

.form-error {
	color: #dc3545;
	font-size: 0.85rem;
	margin-top: 0.25rem;
}

button.disabled,
button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Error version of success box */
.error-box {
	background: rgba(220,53,69,0.08);
	border: 1px solid rgba(220,53,69,0.2);
}

.error-icon {
	background: #dc3545;
	color: #fff;
}

.contact-dropdown {
    min-width: 460px;
}

.contact-card {
    display: block;
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    height: 100%;
}

/* PRIMARY (Quote) */
.contact-card-primary {
    background: #2e8b2e;
    color: white;
	cursor: pointer;
}

.contact-card-primary:hover {
    background: #256f25;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* SECONDARY (Contact) */
.contact-card-secondary {
    background: #f1f3f5;
	cursor: pointer;
}

.contact-card-secondary:hover {
    background: #f1f3f5;
    transform: translateY(-2px);
}

.contact-card,
.contact-card:hover,
.contact-card:focus {
    text-decoration: none !important;
}

.contact-card-primary * {
    color: white !important;
}

.contact-card-primary .icon-stack {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card-primary .fw-600 {
    font-weight: 700;
	font-size: 1.05rem;
}