/**
 * New Realm Transportation LLC — Map Section Styles
 *
 * Dark section highlighting nationwide logistics coverage.
 *
 * @package NewRealm
 * @since   1.0.0
 */

/* ignoring loop detection */
.map-section {
	background-color: #121215; /* Sleek premium dark background */
	padding: 4.5rem 0;
	color: var(--color-white);
}

.map-section__grid {
	display: grid;
	grid-template-columns: 1fr 1fr; /* Split equal columns */
	gap: 5rem;
	align-items: center;
}

.map-section__col {
	display: flex;
	flex-direction: column;
}

/* Left Column Content */
.map-section__eyebrow {
	display: inline-block;
	color: var(--color-gold); /* Gold accent */
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.map-section__title {
	font-size: 2.75rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-white);
	margin-top: 0;
	margin-bottom: 1.5rem;
	letter-spacing: -0.75px;
}

.map-section__body {
	font-size: 1.15rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 2.5rem 0;
}

/* Stats Row */
.map-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
}

.map-stat-item {
	flex: 1 1 120px;
}

.map-stat-item__val {
	font-size: 1.85rem;
	font-weight: 800;
	color: var(--color-gold);
	line-height: 1.2;
	margin-bottom: 0.25rem;
}

.map-stat-item__lbl {
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.5);
}

/* Right Column Map Wrapper */
.map-section__visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.map-section__map-img {
	width: 100%;
	max-width: 550px;
	height: auto;
	filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
	transition: all 0.5s ease;
}

.map-section__visual:hover .map-section__map-img {
	transform: scale(1.02);
	filter: drop-shadow(0 15px 35px rgba(197, 160, 89, 0.15));
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media screen and (max-width: 1200px) {
	.map-section__grid {
		gap: 3.5rem;
	}
	.map-section__title {
		font-size: 2.5rem;
	}
}

@media screen and (max-width: 991px) {
	.map-section {
		padding: 3.5rem 0;
	}
	.map-section__grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}
	.map-section__visual {
		order: 2; /* Map below text on mobile */
	}
	.map-section__col--content {
		order: 1;
	}
}

@media screen and (max-width: 768px) {
	.map-section {
		padding: 3rem 0;
	}
	.map-section__title {
		font-size: 2.15rem;
	}
	.map-section__body {
		font-size: 1.05rem;
	}
	.map-stats {
		gap: 1.5rem;
	}
}

@media screen and (max-width: 480px) {
	.map-section__title {
		font-size: 1.85rem;
	}
	.map-stats {
		flex-direction: column;
		gap: 1rem;
	}
}
