/* Smooth scroll anchor links */
html {
	scroll-behavior: smooth;
}

/* Stats Card & Progress Bars */
.stats-card {
	background: #ffffff;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.progress-bar-container {
	margin-bottom: 20px;
}

.progress-bar-label {
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #090816;
}

.progress-bar-track {
	width: 100%;
	height: 8px;
	background: #f0f0f0;
	border-radius: 4px;
	overflow: hidden;
}

.progress-bar-fill {
	height: 100%;
	background: #36bee1;
	border-radius: 4px;
}

.progress-bar-fill.accent {
	background: #30338e;
}

/* 2-Column Responsive Layout Utilities */
.specs-row {
	display: flex;
	flex-wrap: wrap;
	margin: 40px -15px 45px;
	row-gap: 30px;
}

.specs-col {
	width: 50%;
	padding: 0 15px;
}

@media (max-width: 991px) {
	.specs-col {
		width: 100%;
	}
}

/* Spec Cards */
.spec-card {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #ededed;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.spec-card-img {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 Aspect Ratio */
	overflow: hidden;
}

.spec-card-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.spec-card:hover .spec-card-img img {
	transform: scale(1.05);
}

.spec-card-body {
	padding: 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.spec-card-tag {
	font-size: 11px;
	font-weight: 800;
	color: #36bee1;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
}

.spec-card-title {
	color: #30338e;
	margin-bottom: 15px;
	font-family: 'Prompt', sans-serif;
	font-weight: 800;
}

.spec-card-text {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 20px;
}

.spec-card-footer {
	margin-top: auto;
	border-top: 1px solid #f0f0f0;
	padding-top: 20px;
}

.spec-card-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	color: #30338e;
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.spec-card-features li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.spec-icon {
	width: 18px;
	height: 18px;
	color: #36bee1;
	flex-shrink: 0;
}

/* Caveat alert callout banner */
.caveat-box {
	background: #fff9e6;
	border: 1px solid #ffe89e;
	padding: 20px 25px;
	border-radius: 8px;
	max-width: 900px;
	margin: 40px auto 0;
	font-size: 16px;
	line-height: 1.5;
	color: #664d03;
	display: flex;
	gap: 15px;
	align-items: flex-start;
	text-align: left;
}

.caveat-box p {
	margin: 0;
	font-size: 16px;
	color: #664d03;
}

/* 6-Column Single Row Amenities Grid */
.key-factors .factors-list.col-6 {
	max-width: 100%;
}

.key-factors .factors-list.col-6 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -10px;
	row-gap: 20px;
}

.key-factors .factors-list.col-6 ul li {
	width: 16.6666%;
	padding: 0 10px;
}

/* Specific styling for small 6-column grid items to avoid overflow/clashing styles */
.key-factors .factors-list.col-6 .factor-box {
	padding: 24px 15px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100%;
}

.key-factors .factors-list .factor-box__icon {
	padding: 0;
}

.key-factors .factors-list.col-6 .factor-box__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 15px;
	padding: 0;
	display: grid;
	place-items: center;
	border-radius: 100%;
}

.key-factors .factors-list.col-6 .factor-box__icon svg.icon {
	width: 20px;
	height: 20px;
}

.key-factors .factors-list.col-6 .factor-box__info {
	padding: 0;
	text-align: center;
}

.key-factors .factors-list.col-6 .factor-box__info h3.h6 {
	font-size: 14px;
	line-height: 1.4;
	font-weight: 700;
	margin: 0;
	padding: 0;
	color: #30338e;
}

@media (max-width: 1199px) {
	.key-factors .factors-list.col-6 ul li {
		width: 25%;
	}
}

@media (max-width: 991px) {
	.key-factors .factors-list.col-6 ul li {
		width: 33.3333%;
	}

	.key-factors .factors-list.col-6 .factor-box {
		padding: 20px 10px;
	}
}

@media (max-width: 767px) {
	.key-factors .factors-list.col-6 ul li {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.key-factors .factors-list.col-6 ul li {
		width: 100%;
	}
}

/* Force estimated-pricing background override to white */
.estimated-pricing.bg-white {
	background: #ffffff;
}

/* Guide Page Content Box Width Limit and alignment */
.rental-guide-intro {
	max-width: 900px;
	margin: 0 auto 40px;
	text-align: center;
}

/* Guide Page Centered Content Note Box */
.rental-guide-content-note {
	max-width: 900px;
	margin: 40px auto 0;
	text-align: center;
}

.rental-guide-content-note p {
	font-size: 18px;
	line-height: 1.5;
	color: #444;
	margin: 0;
}

/* Guide Page Heading & Sub-text Spacing */

.title-wrap.text-center .h2+.sub-text {
	margin-top: 24px;
	padding-top: 0;
}

/* Guide Page Banner Image height limits & cover scaling */
.banner-need-cta .need-cta-wrap .col-right .img-box {
	height: 540px;
	border-radius: 10px;
}

@media (max-width: 991px) {
	.banner-need-cta .need-cta-wrap .col-right .img-box {
		height: 300px;
	}
}

/* Section 7 comparison cards styling */
.compare-card {
	padding: 30px;
	border-radius: 10px;
	height: 100%;
}

.compare-card.success-card {
	background: #eefdf4;
	border: 1px solid #cbfbd6;
}

.compare-card.danger-card {
	background: #fff8f8;
	border: 1px solid #ffdcdc;
}

.compare-card-title {
	margin-bottom: 20px;
	padding-bottom: 8px;
	font-weight: 800;
	font-size: 20px;
	text-transform: uppercase;
}

.compare-card.success-card .compare-card-title {
	color: #1e7e34;
	border-bottom: 2px solid #cbfbd6;
}

.compare-card.danger-card .compare-card-title {
	color: #bd2130;
	border-bottom: 2px solid #ffdcdc;
}

.compare-card-list {
	list-style: none;
	padding-left: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #444;
	margin: 0;
}

.compare-card-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
}

.compare-card-list li:last-child {
	margin-bottom: 0;
}

.compare-card-list li .bullet-icon {
	position: absolute;
	left: 0;
	font-weight: bold;
}

.compare-card.success-card .compare-card-list li .bullet-icon {
	color: #1e7e34;
}

.compare-card.danger-card .compare-card-list li .bullet-icon {
	color: #bd2130;
}

/* FAQ Section Responsive Action Buttons */
.faq-cta-desktop {
	display: block;
}

.faq-cta-mobile {
	display: none;
}

@media (max-width: 991px) {
	.faq-cta-desktop {
		display: none;
	}

	.faq-cta-mobile {
		display: block;
	}
}

/* Force bus card description to be statically visible on all devices */
.bus-types .bus-list .bus-type-box .bus-text-toggle {
	display: block !important;
}

/* Ensure all cards in the bus list have equal heights and line up perfectly */
.bus-types .bus-list ul {
	align-items: stretch;
}

.bus-types .bus-list ul li {
	display: flex;
}

.bus-types .bus-list .bus-type-box {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}

.bus-types .bus-list .bus-type-box .bus-info {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.bus-types .bus-list .bus-type-box .bus-info .bus-text-toggle {
	flex-grow: 1;
}

/* Card Gallery Styles */
.spec-card-gallery {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio */
	overflow: hidden;
	background: #eaeaea;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.spec-card-gallery .gallery-slides {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.spec-card-gallery .gallery-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	z-index: 1;
}

.spec-card-gallery .gallery-slide.active {
	opacity: 1;
	z-index: 2;
}

/* Gallery Nav Buttons */
.spec-card-gallery .gallery-prev,
.spec-card-gallery .gallery-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(9, 8, 22, 0.6);
	color: #ffffff;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	transition: background 0.3s ease;
	outline: none;
	padding: 0 0 4px 0;
}

.spec-card-gallery .gallery-prev {
	left: 15px;
}

.spec-card-gallery .gallery-next {
	right: 15px;
}

.spec-card-gallery .gallery-prev:hover,
.spec-card-gallery .gallery-next:hover {
	background: rgba(54, 190, 225, 0.9);
}

/* Gallery Navigation Dots */
.spec-card-gallery .gallery-dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 8px;
}

.spec-card-gallery .gallery-dot {
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s ease;
}

.spec-card-gallery .gallery-dot.active {
	background: #36bee1;
}