/* Skyline Blocks — component styles matching the Figma design system.
   Tokens: blue #007AFF, navy #0F2044, yellow #FAC117, gold #FBB032. */

/* ---------- Dumpster Card ---------- */
.skl-dumpster-card__wrap {
	--skl-accent: #007aff;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.skl-dumpster-card__badge {
	color: var(--skl-accent);
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 44px;
	text-align: center;
}

.skl-dumpster-card {
	position: relative;
	background-color: rgba(0, 122, 255, 0.1);
	border-radius: 32px;
	padding: 32px 39px 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	min-height: 502px;
}

.skl-dumpster-card__info {
	position: absolute;
	top: 36px;
	right: 24px;
	width: 29px;
	height: 29px;
	border-radius: 50%;
	background-color: var(--skl-accent);
	display: flex;
	align-items: center;
	justify-content: center;
}

.skl-dumpster-card__info svg,
.skl-dumpster-card__info i {
	width: 12px;
	height: 12px;
	font-size: 12px;
	fill: #fff;
	color: #fff;
	transform: rotate(45deg); /* fa-arrow-up -> ↗ */
	margin: 0 !important;
}

.skl-dumpster-card__img {
	background: #fff;
	border-radius: 16px;
	padding: 10px;
	margin: 0 0 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.skl-dumpster-card__img img {
	max-width: 100%;
	height: auto;
	display: block;
}

.skl-dumpster-card__desc ul {
	margin: 6px 0 0;
	padding-left: 20px;
}

.skl-dumpster-card__desc li {
	margin-bottom: 4px;
}

.skl-dumpster-card__title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 44px;
	text-transform: uppercase;
	color: #000;
	margin: 0 30px 0 0;
}

.skl-dumpster-card__price {
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
	color: var(--skl-accent);
	margin-bottom: 8px;
}

.skl-dumpster-card__desc {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #000;
	min-height: 52px;
	margin-bottom: 18px;
}

.skl-dumpster-card__features {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	flex-grow: 1;
}

.skl-dumpster-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 17px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #000;
	margin-bottom: 12px;
}

.skl-dumpster-card__check {
	flex-shrink: 0;
	width: 15px;
	height: 14px;
	margin-top: 6px;
}

.skl-dumpster-card__check svg,
.skl-dumpster-card__check i {
	width: 100%;
	height: 100%;
	font-size: 14px;
	display: block;
	fill: var(--skl-accent);
	color: var(--skl-accent);
}

.skl-dumpster-card__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	border-radius: 80px;
	background-color: #fac117;
	color: #000 !important;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 18px;
	text-decoration: none;
	transition: filter 0.2s ease;
}

.skl-dumpster-card__cta:hover {
	filter: brightness(1.06);
}

/* ---------- Service Card ---------- */
.skl-service-card {
	position: relative;
	display: block;
	height: 426px;
	border-radius: 17px;
	border: 1px solid #dfdfdf;
	background-image: var(--skl-card-img);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.25s ease;
}

.skl-service-card:hover {
	transform: translateY(-4px);
}

.skl-service-card__panel {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 31px;
	width: calc(100% - 45px);
	min-height: 124px;
	border-radius: 9px;
	background-color: #fdf6e3; /* white + 12% #FAC117 tint */
	padding: 20px 17px 14px;
	display: block;
}

.skl-service-card__title {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #000;
	margin-bottom: 8px;
}

.skl-service-card__desc {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.35;
	color: #000;
	max-width: 213px;
}

.skl-service-card__arrow {
	position: absolute;
	right: 16px;
	bottom: 14px;
	width: 29px;
	height: 29px;
	border-radius: 50%;
	background-color: #fac117;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.skl-service-card__arrow svg,
.skl-service-card__arrow i {
	width: 12px;
	height: 12px;
	font-size: 12px;
	fill: #000;
	color: #000;
	transform: rotate(45deg); /* fa-arrow-up -> ↗ */
	margin: 0 !important;
}

/* ---------- Step Card ---------- */
.skl-step-card {
	--skl-accent: #007aff;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background-color: rgba(255, 255, 255, 0.9);
	border: 2px solid var(--skl-accent);
	border-radius: 10px;
	padding: 14px 20px 16px;
	min-height: 108px;
	height: 100%;
}

.skl-step-card__number {
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-size: 40px;
	line-height: 1.2;
	color: var(--skl-accent);
	flex-shrink: 0;
	min-width: 34px;
	text-align: center;
}

.skl-step-card__title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.9;
	color: #000;
	margin: 0;
}

.skl-step-card__text {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.2;
	color: #000;
	max-width: 298px;
}

/* Wide checklist usage (2/3-col content cards) — the 298px cap and the
   mobile text-hiding are only for the homepage's compact how-it-works grid.
   Content cards must fill their card and keep their copy on mobile. */
.skl-step-card--wide .skl-step-card__text {
	max-width: none;
	width: 100%;
	line-height: 1.45;
}

.skl-step-card--wide .skl-step-card__title {
	line-height: 1.5;
}

/* Equal-height rows: cards in the same grid row match the tallest one
   (the --wide class lands on the widget wrapper, not the card div) */
.elementor-widget-skyline-step-card.skl-step-card--wide,
.elementor-widget-skyline-step-card.skl-step-card--wide > .elementor-widget-container {
	height: 100%;
}

/* Borderless feature-column variant — icon on top, no box. For card groups
   with very uneven text lengths, where outlined boxes read as half-empty. */
.skl-step-card--column .skl-step-card {
	flex-direction: column;
	align-items: center;
	border: none;
	/* beats the widget's compiled card_bg control rule */
	background-color: transparent !important;
	padding: 0 10px;
	gap: 14px;
}

.skl-step-card--column .skl-step-card__number {
	font-size: 34px;
	min-width: 0;
}

.skl-step-card--column .skl-step-card__title {
	text-align: center;
	font-size: 20px;
	line-height: 1.4;
}

.skl-step-card--column .skl-step-card__text {
	max-width: none;
	width: 100%;
	line-height: 1.55;
	text-align: left;
}

/* Sticky nav bar: soft shadow once it detaches from the top banner */
#skl-main-nav.elementor-sticky--effects {
	box-shadow: 0 4px 18px rgba(15, 32, 68, 0.12);
}

/* Header nav: never two-line. Items are sized to fit >= 1366px; the
   laptop range steps down; below the widget's own breakpoint it's a
   hamburger anyway. */
.skl-header-nav ul.elementor-nav-menu {
	flex-wrap: nowrap;
}

.skl-header-nav .elementor-nav-menu a.elementor-item {
	white-space: nowrap;
}

/* Stepped laptop ladder (widget's compiled controls need !important):
   >=1440 base 15px | 1360-1439 13px | 1025-1359 12px + small logo |
   1025-1259 the header CTA hides (top-bar phone + page CTAs remain). */
@media (min-width: 1360px) and (max-width: 1535px) {
	.skl-header-nav .elementor-nav-menu--main .elementor-item {
		font-size: 13px !important;
		padding-left: 8px !important;
		padding-right: 8px !important;
	}
}

@media (min-width: 1025px) and (max-width: 1359px) {
	.skl-header-nav .elementor-nav-menu--main .elementor-item {
		font-size: 12px !important;
		padding-left: 6px !important;
		padding-right: 6px !important;
	}

	.skl-header-logo img {
		width: 120px !important;
	}
}

@media (min-width: 1025px) and (max-width: 1259px) {
	.skl-header-cta {
		display: none !important;
	}
}

/* Uniform gallery tiles — mixed portrait/landscape crops to a steady grid */
.skl-gallery-tiles .gallery-item img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
	height: auto;
}

/* Locations hub: city pills fill their grid cell uniformly */
.skl-city-pill,
.skl-city-pill .elementor-button-wrapper,
.skl-city-pill .elementor-button {
	width: 100%;
}

/* Intro-split photos: steady 3:2 crop so a tall source image can't
   stretch the row and strand a short paragraph in whitespace */
.skl-crop-32 img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	width: 100%;
	max-height: 420px;
}

/* Single post: featured image fills the content column */
.elementor-widget-theme-post-featured-image img {
	width: 100%;
}

/* Blog archive cards: equal heights, meta/read-more baseline-aligned */
.elementor-posts--skin-classic .elementor-post {
	display: flex;
	flex-direction: column;
}

.elementor-posts--skin-classic .elementor-post__text {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.elementor-posts--skin-classic .elementor-post__read-more {
	margin-top: auto;
	padding-top: 10px;
}

/* ---------- Review Card ---------- */
.skl-review-card {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 17px;
	padding: 30px 33px 28px;
	color: #fff;
	min-height: 254px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.skl-review-card__stars {
	color: #fbb032;
	display: flex;
	gap: 6px;
	margin-bottom: 18px;
	line-height: 1;
}

.skl-review-card__stars svg,
.skl-review-card__stars i {
	width: 17px;
	height: 16px;
	font-size: 16px;
	fill: currentColor;
	color: inherit;
}

.skl-review-card__text {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	flex-grow: 1;
	margin-bottom: 20px;
}

.skl-review-card__author {
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 14.5px;
	line-height: 1.2;
}

/* ---------- Icon images (SVGs without intrinsic size) ---------- */
.skl-icon img {
	width: 38px !important;
	height: 38px !important;
	object-fit: contain;
}

/* ---------- Responsive (mobile layouts per Figma v1.1 mobile frame) ---------- */
@media (max-width: 767px) {
	/* Pricing: tinted section, outlined cards, no price line, 20yd first */
	#dumpster-sizes.e-con, .skl-pricing-section {
		background-color: #E3EEFD !important;
	}

	#skl-pricing-row > div:nth-child(2),
	.skl-pricing-row > div:nth-child(2) {
		order: -1;
	}

	.skl-dumpster-card {
		min-height: 0;
		padding: 24px 24px 18px;
		background-color: rgba(0, 122, 255, 0.06) !important;
		border: 1px solid #A9B6C6;
		border-radius: 24px;
	}

	.skl-dumpster-card__price,
	.skl-dumpster-card__badge--empty {
		display: none;
	}

	.skl-dumpster-card__desc {
		min-height: 0;
	}

	.skl-dumpster-card__cta {
		height: 50px;
		font-size: 16px;
	}

	/* Steps: number on top, centered, no body text */
	.skl-step-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0;
		padding: 14px 8px 16px;
		min-height: 104px;
		justify-content: center;
	}

	.skl-step-card__title {
		line-height: 1.3;
		font-size: 16px;
	}

	.skl-step-card__text {
		display: none;
	}

	/* Wide content cards keep their copy and read as normal left-aligned
	   body text on mobile — only the homepage step grid stays compact */
	.skl-step-card--wide .skl-step-card {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		gap: 10px;
		justify-content: flex-start;
	}

	.skl-step-card--wide .skl-step-card__text,
	.skl-step-card--column .skl-step-card__text {
		display: block;
	}

	.skl-step-card--column .skl-step-card {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	/* Service cards: compact horizontal row — cream panel left, photo right */
	.skl-service-card {
		height: 89px !important;
		border-radius: 12px;
		border: none;
		background-image: none;
		background-color: #FDF6E3;
	}

	.skl-service-card::after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 41%;
		background-image: var(--skl-card-img);
		background-size: cover;
		background-position: center;
	}

	.skl-service-card__panel {
		position: absolute;
		inset: 0;
		left: 0;
		bottom: auto;
		transform: none;
		width: 59%;
		min-height: 0;
		height: 100%;
		border-radius: 0;
		background: transparent !important;
		padding: 0 0 0 19px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.skl-service-card__title {
		margin: 0;
		font-size: 14px;
		line-height: 1.35;
		max-width: 130px;
	}

	.skl-service-card__desc {
		display: none;
	}

	.skl-service-card__arrow {
		z-index: 2;
		top: 16px;
		right: 10px;
		bottom: auto;
	}

	/* Reviews */
	.skl-review-card {
		min-height: 0;
	}

	.skl-review-card__text {
		font-size: 14px;
	}

	/* Why-skyline photo moves below the text */
	#skl-why-photo,
	.skl-order-2-mobile {
		order: 2;
	}

	/* Throw-away: prohibited first on mobile */
	#skl-throw-cards > div:first-child,
	.skl-throw-cards > div:first-child {
		order: 2;
	}
}

/* Header banner: phone number must never wrap */
.elementor-location-header .elementor-icon-list-text {
	white-space: nowrap;
}

/* ---------- Accordion variants (FAQ + Materials) ---------- */
/* Vertically center the +/- icon with the title in both variants */
.skl-faq .elementor-tab-title,
.skl-materials .elementor-tab-title {
	display: flex;
	align-items: center;
}

.skl-faq .elementor-toggle-icon,
.skl-faq .elementor-accordion-icon,
.skl-materials .elementor-toggle-icon,
.skl-materials .elementor-accordion-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	float: none;
}

.skl-faq .elementor-toggle-icon,
.skl-faq .elementor-accordion-icon {
	margin-right: 16px;
	width: auto;
}

.skl-faq .elementor-toggle-title,
.skl-faq .elementor-accordion-title,
.skl-materials .elementor-toggle-title,
.skl-materials .elementor-accordion-title {
	flex-grow: 1;
}

/* Materials variant: gold circle button pinned to the far right.
   Elementor's own icon-span rules set width:auto/inline-block — override hard,
   and cover both font (<i>) and inline-SVG icon rendering modes. */
.skl-materials .elementor-toggle-icon,
.skl-materials .elementor-accordion-icon {
	order: 2;
	margin-left: auto !important;
	margin-right: 0 !important;
	width: 34px !important;
	height: 34px !important;
	min-width: 34px;
	border-radius: 50%;
	background-color: #fbb032;
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.skl-materials .elementor-toggle-icon i,
.skl-materials .elementor-accordion-icon i {
	color: #000 !important;
	font-size: 15px;
	line-height: 1;
}

.skl-materials .elementor-toggle-icon svg,
.skl-materials .elementor-accordion-icon svg {
	width: 15px !important;
	height: 15px !important;
	fill: #000 !important;
}

/* Materials content list styling */
.skl-materials .elementor-tab-content ul {
	margin: 0;
	padding-left: 22px;
}

.skl-materials .elementor-tab-content li {
	margin-bottom: 6px;
}

/* Center the +/- glyph inside the gold circle. The icon nests open/closed
   state spans whose display is Elementor-managed (don't touch it — forcing
   display shows both states at once). Absolute-center the svg instead. */
.skl-materials .elementor-toggle-icon,
.skl-materials .elementor-accordion-icon {
	position: relative;
}

.skl-materials .elementor-toggle-icon svg,
.skl-materials .elementor-accordion-icon svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0 !important; /* Elementor puts a horizontal margin on toggle svgs, shifting the abs-centered glyph */
}


/* ---------- Sticky mobile Call/Quote bar ---------- */
#skl-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

#skl-sticky-bar .elementor-button {
	padding-top: 13px;
	padding-bottom: 13px;
}

@media (max-width: 767px) {
	body {
		padding-bottom: 70px; /* keep the sticky bar from covering footer content */
	}
}
