/**
 * MG Elementor Addons - Custom Widgets Styles
 *
 * @package MG_Elementor_Addons
 * @since 1.0.0
 */

/* Hero Widget */
.lb-hero-container {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 500px;
	width: 100%;
}

.lb-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.lb-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	width: 100%;
	max-width: 1200px;
	padding: 40px 20px;
}

.lb-hero-heading {
	margin: 0 0 20px 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #FFFFFF;
}

.lb-hero-subheading {
	margin: 0 0 30px 0;
	font-size: 20px;
	line-height: 1.5;
	color: #FFFFFF;
}

.lb-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-top: 30px;
}

.lb-hero-button {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.lb-hero-primary-button {
	background-color: #FF6B35;
	color: #FFFFFF;
	font-size: 18px;
}

.lb-hero-primary-button:hover {
	background-color: #E55A2B;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lb-hero-secondary-button {
	background-color: transparent;
	color: #FFFFFF;
	border-color: #FFFFFF;
	font-size: 16px;
}

.lb-hero-secondary-button:hover {
	background-color: #FFFFFF;
	color: #1F2937;
}

@media (max-width: 767px) {
	.lb-hero-heading {
		font-size: 32px;
	}

	.lb-hero-subheading {
		font-size: 16px;
	}

	.lb-hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.lb-hero-button {
		width: 100%;
		text-align: center;
	}
}

/* Key Service Icons Widget */
.lb-service-icons {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 100%;
}

.lb-service-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lb-service-icon-item a {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.lb-service-icon-item a:hover {
	transform: translateY(-5px);
	opacity: 0.8;
}

.lb-service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.lb-service-icon i,
.lb-service-icon svg {
	display: block;
}

.lb-service-icon img {
	display: block;
	object-fit: contain;
}

.lb-service-label {
	margin-top: 10px;
	font-weight: 500;
	line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
	.lb-service-icons {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.lb-service-icons {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* Main Features List Widget */
.lb-features-container {
	width: 100%;
}

.lb-features-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 60px;
}

.lb-features-content {
	width: 50%;
	flex: 1;
	min-width: 300px;
}

.lb-features-heading {
	margin: 0 0 20px 0;
	font-weight: 700;
	line-height: 1.2;
}

.lb-features-subheading {
	margin: 0 0 20px 0;
	font-weight: 600;
	line-height: 1.3;
}

.lb-features-separator {
	width: 50px;
	height: 2px;
	margin: 0 0 20px 0;
	background-color: #FFFFFF;
}

.lb-features-description {
	margin: 0 0 30px 0;
	line-height: 1.6;
}

.lb-features-description p {
	margin: 0 0 1em 0;
}

.lb-features-description p:last-child {
	margin-bottom: 0;
}

.lb-features-button {
	display: inline-block;
	padding: 12px 24px;
	border: 1px solid #FFFFFF;
	background-color: transparent;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.lb-features-button:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.lb-features-list-wrapper {
	flex: 1;
	min-width: 300px;
}

.lb-features-list {
	display: grid;
	gap: 15px;
}

.lb-features-list.lb-features-columns-1 {
	grid-template-columns: 1fr;
}

.lb-features-list.lb-features-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.lb-features-list.lb-features-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.lb-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.lb-feature-checkmark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border-radius: 50%;
	background-color: #E4002B;
	color: #FFFFFF;
	flex-shrink: 0;
}

.lb-feature-checkmark svg {
	width: 12px;
	height: 10px;
	display: block;
}

.lb-feature-text {
	flex: 1;
	line-height: 1.5;
	margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.lb-features-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.lb-features-content {
		width: 100%;
	}

	.lb-features-list-wrapper {
		width: 100%;
	}

	.lb-features-list.lb-features-columns-2,
	.lb-features-list.lb-features-columns-3 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.lb-features-wrapper {
		gap: 30px;
	}

	.lb-features-list {
		gap: 12px;
	}
}

/* Why Choose Us Widget */
.lb-why-choose-container {
	width: 100%;
}

.lb-why-choose-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 60px;
}

.lb-why-choose-heading {
	width: 40%;
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
}

.lb-why-choose-heading-line1 {
	margin: 0;
	font-weight: 700;
	line-height: 1.2;
}

.lb-why-choose-heading-line2 {
	margin: 10px 0 0 0;
	font-weight: 700;
	line-height: 1.2;
}

.lb-why-choose-benefits-box {
	flex: 1;
	min-width: 300px;
	background-color: #E4002B;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lb-benefit-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.lb-benefit-item:last-child {
	margin-bottom: 0;
}

.lb-benefit-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #FFFFFF;
}

.lb-benefit-icon i {
	display: block;
}

.lb-benefit-icon img {
	display: block;
	width: 24px;
	height: auto;
}

.lb-benefit-icon svg {
	display: block;
	width: 24px;
	height: auto;
}

.lb-benefit-text {
	flex: 1;
	color: #FFFFFF;
	font-weight: 500;
	line-height: 1.5;
	margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.lb-why-choose-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.lb-why-choose-heading {
		width: 100%;
	}

	.lb-why-choose-benefits-box {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.lb-why-choose-wrapper {
		gap: 30px;
	}

	.lb-why-choose-benefits-box {
		padding: 30px 20px;
	}

	.lb-benefit-item {
		margin-bottom: 15px;
	}
}

/* Contact Us Widget */
.lb-contact-container {
	width: 100%;
}

.lb-contact-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 60px;
}

.lb-contact-image-wrapper {
	width: 50%;
	flex: 1;
	min-width: 300px;
}

.lb-contact-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.lb-contact-form-wrapper {
	flex: 1;
	min-width: 300px;
	background-color: #FFFFFF;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lb-contact-form-title {
	margin: 0 0 20px 0;
	font-weight: 700;
	line-height: 1.2;
	color: #1F2937;
}

.lb-contact-form-intro {
	margin: 0 0 15px 0;
	color: #4B5563;
	line-height: 1.6;
}

.lb-contact-required-note {
	margin: 0 0 25px 0;
	font-size: 0.875rem;
	color: #6B7280;
	font-style: italic;
}

.lb-contact-form {
	width: 100%;
}

.lb-contact-field-group {
	margin-bottom: 20px;
}

.lb-contact-field-group-inline {
	display: flex;
	gap: 15px;
}

.lb-contact-field {
	display: flex;
	flex-direction: column;
}

.lb-contact-field-half {
	flex: 1;
}

.lb-contact-field-label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	color: #1F2937;
	font-size: 0.875rem;
}

.lb-contact-required {
	color: #EF4444;
}

.lb-contact-field-input,
.lb-contact-field-textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid #D1D5DB;
	background-color: transparent;
	color: #1F2937;
	font-size: 1rem;
	padding: 10px 0;
	transition: border-color 0.3s ease;
	outline: none;
}

.lb-contact-field-input:focus,
.lb-contact-field-textarea:focus {
	border-bottom-color: #3B82F6;
}

.lb-contact-field-textarea {
	resize: vertical;
	min-height: 100px;
	font-family: inherit;
}

.lb-contact-field-input::placeholder,
.lb-contact-field-textarea::placeholder {
	color: #9CA3AF;
}

.lb-contact-submit-button {
	display: inline-block;
	padding: 14px 32px;
	background-color: #3B82F6;
	color: #FFFFFF;
	border: none;
	border-radius: 4px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.875rem;
}

.lb-contact-submit-button:hover {
	background-color: #2563EB;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.lb-contact-submit-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.lb-contact-form-message {
	margin-top: 20px;
	padding: 12px 16px;
	border-radius: 4px;
	font-size: 0.875rem;
}

.lb-contact-form-message.lb-success {
	background-color: #D1FAE5;
	color: #065F46;
	border: 1px solid #10B981;
}

.lb-contact-form-message.lb-error {
	background-color: #FEE2E2;
	color: #991B1B;
	border: 1px solid #EF4444;
}

/* Responsive */
@media (max-width: 1024px) {
	.lb-contact-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.lb-contact-image-wrapper {
		width: 100%;
	}

	.lb-contact-form-wrapper {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.lb-contact-wrapper {
		gap: 30px;
	}

	.lb-contact-form-wrapper {
		padding: 30px 20px;
	}

	.lb-contact-field-group-inline {
		flex-direction: column;
		gap: 0;
	}

	.lb-contact-field-half {
		width: 100%;
	}
}

/* Reviews + Badges Widget */
.lb-reviews-badges-container {
	width: 100%;
}

/* Reviews Section */
.lb-reviews-section {
	background-color: #E4002B;
	padding: 60px 40px;
	position: relative;
	overflow: hidden;
}

.lb-reviews-title {
	margin: 0 0 40px 0;
	text-align: center;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.2;
}

.lb-reviews-carousel {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.lb-reviews-track {
	display: flex;
	transition: transform 0.5s ease;
	overflow: hidden;
}

.lb-review-card {
	background-color: #FFFFFF;
	padding: 24px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	flex: 0 0 calc(25% - 15px);
	margin-right: 20px;
	position: relative;
	min-width: 0;
}

.lb-review-source {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 24px;
	height: 24px;
}

.lb-review-source svg {
	width: 100%;
	height: 100%;
	display: block;
}

.lb-review-header {
	margin-bottom: 12px;
}

.lb-reviewer-name {
	font-weight: 600;
	color: #1F2937;
	font-size: 0.875rem;
	margin-bottom: 4px;
}

.lb-review-date {
	font-size: 0.75rem;
	color: #6B7280;
}

.lb-review-stars {
	margin-bottom: 12px;
	display: flex;
	gap: 2px;
}

.lb-star {
	font-size: 1rem;
	line-height: 1;
}

.lb-star-filled {
	color: #FBBF24;
}

.lb-star-empty {
	color: #D1D5DB;
}

.lb-review-text {
	color: #4B5563;
	line-height: 1.6;
	font-size: 0.875rem;
	margin-bottom: 12px;
}

.lb-review-read-more {
	color: #6B7280;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s ease;
}

.lb-review-read-more:hover {
	color: #1F2937;
	text-decoration: underline;
}

.lb-carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	color: #1F2937;
}

.lb-carousel-nav:hover {
	background-color: #FFFFFF;
	transform: translateY(-50%) scale(1.1);
}

.lb-carousel-nav:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.lb-carousel-prev {
	left: -20px;
}

.lb-carousel-next {
	right: -20px;
}

.lb-carousel-nav svg {
	width: 20px;
	height: 20px;
}

/* Badges Section */
.lb-badges-section {
	background-color: #FFFFFF;
	padding: 60px 40px;
}

.lb-badges-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.lb-badge-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.lb-badge-item:hover {
	transform: translateY(-5px);
	opacity: 0.9;
}

.lb-badge-item img {
	max-width: 150px;
	height: auto;
	display: block;
	object-fit: contain;
}

.lb-badge-item a {
	display: block;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
	.lb-review-card {
		flex: 0 0 calc(50% - 10px);
	}

	.lb-reviews-section {
		padding: 50px 30px;
	}

	.lb-badges-section {
		padding: 50px 30px;
	}

	.lb-badges-list {
		gap: 30px;
	}
}

@media (max-width: 767px) {
	.lb-reviews-section {
		padding: 40px 20px;
	}

	.lb-reviews-title {
		font-size: 1.5rem;
		margin-bottom: 30px;
	}

	.lb-review-card {
		flex: 0 0 100%;
		margin-right: 0;
	}

	.lb-carousel-prev {
		left: 10px;
	}

	.lb-carousel-next {
		right: 10px;
	}

	.lb-badges-section {
		padding: 40px 20px;
	}

	.lb-badges-list {
		flex-direction: column;
		gap: 30px;
	}

	.lb-badge-item img {
		max-width: 120px;
	}
}

/* Title Area Widget */
.lb-title-area-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1F2937;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 200px;
	width: 100%;
}

.lb-title-area-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(31, 41, 55, 0.7);
	z-index: 1;
}

.lb-title-area-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.lb-title-area-title {
	margin: 0;
	color: #FFFFFF;
	font-weight: 700;
	line-height: 1.2;
	font-size: 2.5rem;
}

.lb-title-area-subheading {
	margin: 0;
	color: #9CA3AF;
	font-weight: 400;
	line-height: 1.5;
	font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 1024px) {
	.lb-title-area-title {
		font-size: 2rem;
	}

	.lb-title-area-subheading {
		font-size: 1rem;
	}
}

@media (max-width: 767px) {
	.lb-title-area-title {
		font-size: 1.75rem;
	}

	.lb-title-area-subheading {
		font-size: 0.875rem;
	}
}

/* Sidebar Specials CTA Widget */
.lb-sidebar-specials-cta-container {
	background-color: #FFFFFF;
	border-radius: 8px;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
	padding: 30px 25px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.lb-sidebar-specials-cta-icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 15px;
}

.lb-sidebar-specials-cta-icon i,
.lb-sidebar-specials-cta-icon svg {
	display: block;
	color: #007bff;
	font-size: 48px;
}

.lb-sidebar-specials-cta-icon img {
	display: block;
	max-width: 100%;
	height: auto;
}

.lb-sidebar-specials-cta-heading {
	margin: 0 0 10px 0;
	color: #1F2937;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.3;
	white-space: pre-line;
}

.lb-sidebar-specials-cta-subtitle {
	margin: 0 0 20px 0;
	color: #6B7280;
	font-weight: 400;
	font-size: 0.95rem;
	line-height: 1.5;
}

.lb-sidebar-specials-cta-button {
	display: inline-block;
	background-color: #DC3545;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 12px 24px;
	border-radius: 4px;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
	cursor: pointer;
	border: none;
	width: 100%;
	text-align: center;
}

.lb-sidebar-specials-cta-button:hover {
	background-color: #C82333;
	color: #FFFFFF;
	transform: translateY(-2px);
	text-decoration: none;
}

.lb-sidebar-specials-cta-button:active {
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 767px) {
	.lb-sidebar-specials-cta-container {
		padding: 25px 20px;
	}

	.lb-sidebar-specials-cta-heading {
		font-size: 1.25rem;
	}

	.lb-sidebar-specials-cta-subtitle {
		font-size: 0.875rem;
	}

	.lb-sidebar-specials-cta-button {
		font-size: 0.8rem;
		padding: 10px 20px;
	}
}

/* Sidebar Recent Posts Widget */
.lb-sidebar-recent-posts-container {
	background-color: #F3F4F6;
	border-radius: 8px;
	padding: 25px 20px;
	width: 100%;
}

.lb-sidebar-recent-posts-title {
	margin: 0 0 20px 0;
	color: #31708f;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.3;
}

.lb-sidebar-recent-posts-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.lb-sidebar-recent-posts-item {
	margin-bottom: 20px;
}

.lb-sidebar-recent-posts-item:last-child {
	margin-bottom: 0;
}

.lb-sidebar-recent-posts-item-title {
	margin: 0 0 8px 0;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.4;
}

.lb-sidebar-recent-posts-item-title a {
	color: #1F2937;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

.lb-sidebar-recent-posts-item-title a:hover {
	color: #31708f;
	text-decoration: none;
}

.lb-sidebar-recent-posts-item-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	font-size: 0.875rem;
}

.lb-sidebar-recent-posts-item-date {
	color: #6B7280;
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	line-height: 1.5;
}

.lb-sidebar-recent-posts-item-date i {
	color: #6B7280;
	font-size: 14px;
	margin-right: 6px;
}

.lb-sidebar-recent-posts-item-read-more {
	color: #31708f;
	text-decoration: none;
	font-size: 0.875rem;
	display: inline-flex;
	align-items: center;
	transition: color 0.3s ease;
}

.lb-sidebar-recent-posts-item-read-more:hover {
	color: #245a73;
	text-decoration: none;
}

.lb-sidebar-recent-posts-item-read-more i {
	color: #31708f;
	font-size: 14px;
	margin-left: 4px;
	transition: transform 0.3s ease, color 0.3s ease;
}

.lb-sidebar-recent-posts-item-read-more:hover i {
	color: #245a73;
	transform: translateX(3px);
}

/* Responsive */
@media (max-width: 767px) {
	.lb-sidebar-recent-posts-container {
		padding: 20px 15px;
	}

	.lb-sidebar-recent-posts-title {
		font-size: 1.125rem;
		margin-bottom: 15px;
	}

	.lb-sidebar-recent-posts-item {
		margin-bottom: 15px;
	}

	.lb-sidebar-recent-posts-item-title {
		font-size: 0.95rem;
	}

	.lb-sidebar-recent-posts-item-meta {
		font-size: 0.8rem;
		gap: 12px;
	}
}

/* Bottom Contact Widget */
.lb-bottom-contact-container {
	background-color: #1E3A5F;
	width: 100%;
	padding: 60px 40px;
}

.lb-bottom-contact-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

/* Why Choose Us Column */
.lb-bottom-contact-why-column {
	color: #FFFFFF;
}

.lb-bottom-contact-why-heading {
	margin: 0 0 25px 0;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.3;
}

.lb-bottom-contact-benefits {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.lb-bottom-contact-benefit-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.lb-bottom-contact-benefit-item:last-child {
	margin-bottom: 0;
}

.lb-bottom-contact-benefit-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 12px;
	color: #FFFFFF;
}

.lb-bottom-contact-benefit-icon i {
	font-size: 20px;
	color: #FFFFFF;
}

.lb-bottom-contact-benefit-icon svg {
	width: 20px;
	height: 20px;
	fill: #FFFFFF;
}

.lb-bottom-contact-benefit-icon img {
	width: 20px;
	height: auto;
}

.lb-bottom-contact-benefit-text {
	color: #FFFFFF;
	font-size: 1rem;
	line-height: 1.5;
	flex: 1;
}

/* Contact Form Column */
.lb-bottom-contact-form-column {
	width: 100%;
}

.lb-bottom-contact-form-container {
	background-color: #FFFFFF;
	border-radius: 8px;
	padding: 35px 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lb-bottom-contact-form-title {
	margin: 0 0 12px 0;
	color: #1F2937;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 1.3;
}

.lb-bottom-contact-form-intro {
	margin: 0 0 8px 0;
	color: #1F2937;
	font-size: 0.95rem;
	line-height: 1.6;
}

.lb-bottom-contact-form-note {
	margin: 0 0 20px 0;
	color: #6B7280;
	font-size: 0.875rem;
	line-height: 1.5;
}

.lb-bottom-contact-form {
	width: 100%;
}

.lb-bottom-contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 20px;
}

.lb-bottom-contact-form-field {
	margin-bottom: 20px;
}

.lb-bottom-contact-form-field:last-of-type {
	margin-bottom: 0;
}

.lb-bottom-contact-form-field label {
	display: block;
	margin-bottom: 6px;
	color: #1F2937;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.5;
}

.lb-bottom-contact-form-field input[type="text"],
.lb-bottom-contact-form-field input[type="email"],
.lb-bottom-contact-form-field input[type="tel"],
.lb-bottom-contact-form-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #D1D5DB;
	border-radius: 4px;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #1F2937;
	background-color: #FFFFFF;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	font-family: inherit;
}

.lb-bottom-contact-form-field input[type="text"]:focus,
.lb-bottom-contact-form-field input[type="email"]:focus,
.lb-bottom-contact-form-field input[type="tel"]:focus,
.lb-bottom-contact-form-field textarea:focus {
	outline: none;
	border-color: #3B82F6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lb-bottom-contact-form-field textarea {
	resize: vertical;
	min-height: 100px;
}

.lb-bottom-contact-form-submit {
	width: 100%;
	background-color: #60A5FA;
	color: #FFFFFF;
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
	margin-top: 20px;
}

.lb-bottom-contact-form-submit:hover {
	background-color: #3B82F6;
	color: #FFFFFF;
	transform: translateY(-1px);
}

.lb-bottom-contact-form-submit:active {
	transform: translateY(0);
}

.lb-bottom-contact-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.lb-bottom-contact-form-message {
	margin-top: 15px;
	padding: 12px;
	border-radius: 4px;
	font-size: 0.875rem;
	line-height: 1.5;
	display: none;
}

.lb-bottom-contact-form-message.lb-success {
	background-color: #D1FAE5;
	color: #065F46;
	border: 1px solid #6EE7B7;
	display: block;
}

.lb-bottom-contact-form-message.lb-error {
	background-color: #FEE2E2;
	color: #991B1B;
	border: 1px solid #FCA5A5;
	display: block;
}

/* Responsive */
@media (max-width: 1024px) {
	.lb-bottom-contact-inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.lb-bottom-contact-container {
		padding: 50px 30px;
	}
}

@media (max-width: 767px) {
	.lb-bottom-contact-container {
		padding: 40px 20px;
	}

	.lb-bottom-contact-why-heading {
		font-size: 1.75rem;
		margin-bottom: 20px;
	}

	.lb-bottom-contact-benefit-text {
		font-size: 0.95rem;
	}

	.lb-bottom-contact-form-container {
		padding: 25px 20px;
	}

	.lb-bottom-contact-form-title {
		font-size: 1.5rem;
	}

	.lb-bottom-contact-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.lb-bottom-contact-form-field {
		margin-bottom: 15px;
	}
}

/* Title Area - Post Variation Widget */
.lb-title-area-post-container {
	background-color: #000000;
	width: 100%;
	min-height: 400px;
	padding: 60px 40px;
	display: flex;
	align-items: center;
}

.lb-title-area-post-inner {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	gap: 0;
}

.lb-title-area-post-text-column {
	width: 66.666%;
	display: flex;
	align-items: center;
	padding-right: 40px;
}

.lb-title-area-post-text-column-right {
	padding-right: 0;
	padding-left: 40px;
}

.lb-title-area-post-text {
	width: 100%;
}

.lb-title-area-post-title {
	margin: 0;
	color: #FFFFFF;
	font-weight: 500;
	line-height: 1.3;
	font-size: 2.25rem;
	white-space: pre-line;
}

.lb-title-area-post-image-column {
	width: 33.333%;
	height: 100%;
	display: flex;
	align-items: stretch;
}

.lb-title-area-post-image-column-left {
	order: -1;
}

.lb-title-area-post-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lb-title-area-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Responsive */
@media (max-width: 1024px) {
	.lb-title-area-post-container {
		padding: 50px 30px;
		min-height: 350px;
	}

	.lb-title-area-post-text-column {
		width: 60%;
		padding-right: 30px;
	}

	.lb-title-area-post-text-column-right {
		padding-right: 0;
		padding-left: 30px;
	}

	.lb-title-area-post-image-column {
		width: 40%;
	}

	.lb-title-area-post-title {
		font-size: 1.875rem;
	}
}

@media (max-width: 767px) {
	.lb-title-area-post-container {
		padding: 40px 20px;
		min-height: auto;
	}

	.lb-title-area-post-inner {
		flex-direction: column;
		gap: 30px;
	}

	.lb-title-area-post-text-column {
		width: 100%;
		padding-right: 0;
		padding-left: 0;
		order: 2;
	}

	.lb-title-area-post-text-column-right {
		padding-right: 0;
		padding-left: 0;
	}

	.lb-title-area-post-image-column {
		width: 100%;
		order: 1;
		height: 300px;
	}

	.lb-title-area-post-image-column-left {
		order: 1;
	}

	.lb-title-area-post-title {
		font-size: 1.5rem;
	}
}

/* Sidebar Service Menu Widget */
.lb-sidebar-service-menu-container {
	background-color: #FFFFFF;
	border: 1px solid #DC3545;
	border-radius: 4px;
	padding: 20px 15px;
	width: 100%;
}

.lb-sidebar-service-menu-title {
	margin: 0 0 15px 0;
	color: #1F2937;
	font-weight: 500;
	font-size: 0.95rem;
	line-height: 1.4;
}

.lb-sidebar-service-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.lb-sidebar-service-menu-item {
	margin: 0;
	padding: 0;
	position: relative;
}

.lb-sidebar-service-menu-item:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #E5E7EB;
}

.lb-sidebar-service-menu-item a {
	display: block;
	color: #1F2937;
	text-decoration: none;
	padding: 10px 12px;
	font-size: 0.95rem;
	line-height: 1.5;
	transition: color 0.3s ease, background-color 0.3s ease;
	border-radius: 2px;
}

.lb-sidebar-service-menu-item a:hover {
	color: #DC3545;
	text-decoration: none;
}

.lb-sidebar-service-menu-item.lb-active a {
	background-color: #DC3545;
	color: #FFFFFF;
	font-weight: 500;
}

.lb-sidebar-service-menu-item.lb-active a:hover {
	color: #FFFFFF;
	background-color: #C82333;
}

/* Responsive */
@media (max-width: 767px) {
	.lb-sidebar-service-menu-container {
		padding: 15px 12px;
	}

	.lb-sidebar-service-menu-title {
		font-size: 0.875rem;
		margin-bottom: 12px;
	}

	.lb-sidebar-service-menu-item a {
		font-size: 0.875rem;
		padding: 8px 10px;
	}
}

/* CTA Banner Widget */
.lb-cta-banner-container {
	background-color: #1E3A5F;
	width: 100%;
	padding: 20px 30px;
}

.lb-cta-banner-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
	gap: 30px;
}

.lb-cta-banner-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.lb-cta-banner-heading {
	margin: 0 0 5px 0;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 1.2;
}

.lb-cta-banner-subheading {
	margin: 0;
	color: #FFFFFF;
	font-weight: 400;
	font-size: 0.95rem;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lb-cta-banner-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #DC3545;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	padding: 12px 20px;
	border-radius: 4px;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.lb-cta-banner-button:hover {
	background-color: #C82333;
	color: #FFFFFF;
	text-decoration: none;
	transform: translateY(-2px);
}

.lb-cta-banner-button:active {
	transform: translateY(0);
}

.lb-cta-banner-button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
}

.lb-cta-banner-button-icon i {
	color: #FFFFFF;
	font-size: 20px;
	line-height: 1;
}

.lb-cta-banner-button-text {
	display: flex;
	align-items: center;
	gap: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
	.lb-cta-banner-inner {
		gap: 20px;
	}

	.lb-cta-banner-heading {
		font-size: 1.5rem;
	}

	.lb-cta-banner-subheading {
		font-size: 0.875rem;
	}

	.lb-cta-banner-button {
		font-size: 0.9rem;
		padding: 10px 18px;
	}
}

@media (max-width: 767px) {
	.lb-cta-banner-container {
		padding: 20px 15px;
	}

	.lb-cta-banner-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.lb-cta-banner-content {
		width: 100%;
	}

	.lb-cta-banner-heading {
		font-size: 1.375rem;
		margin-bottom: 8px;
	}

	.lb-cta-banner-subheading {
		font-size: 0.8rem;
	}

	.lb-cta-banner-button {
		width: 100%;
		justify-content: center;
		font-size: 0.875rem;
		padding: 12px 20px;
	}
}

/* Areas We Serve Widget */
.lb-areas-we-serve-container {
	background-color: #3B82F6;
	width: 100%;
	padding: 40px 30px;
	text-align: center;
}

.lb-areas-we-serve-title {
	margin: 0 0 20px 0;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 1.3;
}

.lb-areas-we-serve-separator {
	width: 100%;
	max-width: 200px;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.3);
	margin: 0 auto 25px;
}

.lb-areas-we-serve-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lb-areas-we-serve-item {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.lb-areas-we-serve-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 6px;
	flex-shrink: 0;
}

.lb-areas-we-serve-item-icon i {
	color: #DC3545;
	font-size: 16px;
	line-height: 1;
}

.lb-areas-we-serve-item a {
	color: #E0E7FF;
	text-decoration: underline;
	font-size: 0.95rem;
	line-height: 1.5;
	transition: color 0.3s ease;
}

.lb-areas-we-serve-text {
	color: #E0E7FF;
	text-decoration: none;
	font-size: 0.95rem;
	line-height: 1.5;
}

.lb-areas-we-serve-item a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
	.lb-areas-we-serve-container {
		padding: 35px 25px;
	}

	.lb-areas-we-serve-title {
		font-size: 1.5rem;
		margin-bottom: 18px;
	}

	.lb-areas-we-serve-separator {
		margin-bottom: 20px;
	}

	.lb-areas-we-serve-list {
		gap: 15px;
	}
}

@media (max-width: 767px) {
	.lb-areas-we-serve-container {
		padding: 30px 20px;
	}

	.lb-areas-we-serve-title {
		font-size: 1.25rem;
		margin-bottom: 15px;
	}

	.lb-areas-we-serve-separator {
		margin-bottom: 20px;
		max-width: 150px;
	}

	.lb-areas-we-serve-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.lb-areas-we-serve-item {
		width: 100%;
		justify-content: flex-start;
	}

	.lb-areas-we-serve-item a {
		font-size: 0.875rem;
	}

	.lb-areas-we-serve-text {
		font-size: 0.875rem;
	}
}

/* Service Areas Dropdown Widget */
.mg-service-areas-dropdown {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
}

.mg-service-areas-dropdown__label {
	display: block;
	margin: 0 0 8px 0;
	font-weight: 600;
	line-height: 1.3;
	color: #111827;
}

.mg-service-areas-dropdown__control {
	display: flex;
	gap: 10px;
	align-items: center;
}

.mg-service-areas-dropdown__select {
	flex: 1;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid #D1D5DB;
	border-radius: 8px;
	background: #FFFFFF;
	color: #111827;
}

.mg-service-areas-dropdown__select:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.mg-service-areas-dropdown__button {
	padding: 12px 16px;
	border-radius: 8px;
	border: none;
	background: #111827;
	color: #FFFFFF;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}

.mg-service-areas-dropdown__button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.mg-service-areas-dropdown__help {
	margin-top: 8px;
	font-size: 0.875rem;
	line-height: 1.4;
	color: #6B7280;
}

@media (max-width: 767px) {
	.mg-service-areas-dropdown {
		max-width: 100%;
	}

	.mg-service-areas-dropdown__control {
		flex-direction: column;
		align-items: stretch;
	}

	.mg-service-areas-dropdown__button {
		width: 100%;
	}
}
