/* =================================================
   Get A Quote
   ================================================= */

.get-a-quote {
	--gaq-navy: #0f2c64;
	--gaq-orange: #ff6b31;
	--gaq-phone-color: #ff6b31;
	--gaq-white: #ffffff;
	--gaq-muted: rgba(255, 255, 255, 0.72);
	--gaq-phone-label: #8fa3c4;

	background: var(--gaq-navy);
	color: var(--gaq-white);
	float: left;
	overflow: hidden;
	padding: 88px 0;
	position: relative;
	width: 100%;
}

.get-a-quote--has-top-stripe {
	padding-top: 105px;
}

.get-a-quote--has-bottom-stripe {
	padding-bottom: 105px;
}

.get-a-quote__divider {
	left: 0;
	line-height: 0;
	margin: 0 !important;
	position: absolute;
	right: 0;
	width: 100%;
	z-index: 2;
}

.get-a-quote__divider--top {
	top: 0;
}

.get-a-quote__divider--bottom {
	bottom: 0;
}

.get-a-quote__divider img {
	display: block;
	height: auto;
	width: 100%;
}

.get-a-quote__container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1640px;
	padding: 0 40px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.get-a-quote__grid {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.get-a-quote__header {
	margin: 0 0 28px;
}

.get-a-quote__eyebrow {
	color: var(--gaq-orange);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	margin: 0 0 18px;
	padding: 0;
	text-transform: uppercase;
}

.get-a-quote__title {
	color: var(--gaq-white);
	font-size: 52px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.08;
	margin: 0 0 20px;
	padding: 0;
	text-transform: uppercase;
}

.get-a-quote p.get-a-quote__desc {
	color: var(--gaq-muted);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.55;
	margin: 0;
	padding: 0;
}

.get-a-quote__list {
	list-style: none;
	margin: 0 0 36px;
	padding: 0;
}

.get-a-quote__list-item {
	align-items: flex-start;
	display: flex;
	gap: 12px;
	margin: 0 0 14px;
	padding: 0;
}

.get-a-quote__list-item:last-child {
	margin-bottom: 0;
}

.get-a-quote__list-item:before {
	content: none;
	display: none;
}

.get-a-quote__check {
	align-items: center;
	color: var(--gaq-orange);
	display: inline-flex;
	flex-shrink: 0;
	line-height: 0;
	margin-top: 2px;
}

.get-a-quote__list-text {
	color: var(--gaq-white);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.45;
}

.get-a-quote__phone {
	margin: 0;
}

.get-a-quote p.get-a-quote__phone-label {
	color: var(--gaq-phone-label);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	margin: 0 0 8px;
	padding: 0;
}

.get-a-quote a.get-a-quote__phone-link,
.get-a-quote a.get-a-quote__phone-link[href^="tel:"] {
	align-items: center;
	color: var(--gaq-phone-color);
	display: inline-flex;
	font-size: 28px;
	font-weight: 800;
	gap: 10px;
	line-height: 1.2;
	text-decoration: none;
}

.get-a-quote a.get-a-quote__phone-link:hover,
.get-a-quote a.get-a-quote__phone-link:focus,
.get-a-quote a.get-a-quote__phone-link[href^="tel:"]:hover,
.get-a-quote a.get-a-quote__phone-link[href^="tel:"]:focus {
	color: #ff7f4d;
	text-decoration: none;
}

.get-a-quote__phone-icon {
	align-items: center;
	display: inline-flex;
	line-height: 0;
}

.get-a-quote__form-card {
	background: var(--gaq-white);
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	padding: 32px;
}

.get-a-quote__form {
	min-height: 320px;
	width: 100%;
}

.get-a-quote__form-placeholder {
	background: linear-gradient(180deg, #f7f8fa 0%, #eef1f5 100%);
	border: 2px dashed #d5dbe5;
	border-radius: 12px;
	min-height: 320px;
	width: 100%;
}

.get-a-quote p.get-a-quote__form-footer {
	color: #5f6b7d;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	margin: 16px 0 0;
	padding: 0;
	text-align: center;
}

@media (max-width: 1199px) {
	.get-a-quote__title {
		font-size: 42px;
	}

	.get-a-quote__grid {
		gap: 36px;
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 767px) {
	.get-a-quote {
		padding: 56px 0;
	}

	.get-a-quote--has-top-stripe {
		padding-top: 73px;
	}

	.get-a-quote--has-bottom-stripe {
		padding-bottom: 73px;
	}

	.get-a-quote__container {
		padding: 0 20px;
	}

	.get-a-quote__eyebrow {
		text-align: center;
	}

	.get-a-quote__title {
		font-size: 32px;
		text-align: center;
	}

	.get-a-quote__form-card {
		padding: 20px;
	}

	.get-a-quote a.get-a-quote__phone-link {
		font-size: 24px;
	}
}
