/* ==========================================================================
   Landing Localitate — Tractări Auto Iași
   Paletă: negru #0d0d0d + galben #F5C400
   Mobile-first
   ========================================================================== */

/* Fundalul negru trebuie să acopere tot viewport-ul, nu doar lățimea
   containerului Bootstrap al temei (.container are max-width fix și
   margin auto, deci în afara lui rămânea fundalul alb implicit). */
body.page-template-page-templateslanding-localitate-php,
body.page-template-page-templateslanding-localitate-php .main-wrapper,
body.page-template-page-templateslanding-localitate-php .container.main-wrapper {
	background-color: #0d0d0d;
}

.loc-page {
	--loc-bg: #0d0d0d;
	--loc-bg-card: #1a1a1a;
	--loc-yellow: #f5c400;
	--loc-yellow-dark: #d9ad00;
	--loc-white: #ffffff;
	--loc-border: rgba(245, 196, 0, 0.35);
	--loc-radius: 12px;

	background-color: var(--loc-bg);
	color: var(--loc-white);
	padding: 130px 16px 0;
	font-family: inherit;

	/* full-bleed: iese din containerul cu lățime fixă al temei și
	   ocupă toată lățimea ferestrei, indiferent de max-width-ul .container */
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/* conținutul intern rămâne centrat și lizibil, doar fundalul e full-bleed */
.loc-page > * {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.loc-page section {
	margin-bottom: 32px;
}

.loc-section-title {
	color: var(--loc-white);
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 16px;
}

/* ---------- HERO ---------- */

.loc-hero {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.loc-hero__title {
	font-size: clamp(22px, 6vw, 48px);
	line-height: 1.15;
	font-weight: 800;
	color: var(--loc-white);
	margin: 0 0 12px;
	white-space: nowrap;
}

.loc-hero__title-accent {
	color: var(--loc-yellow);
}

.loc-hero__intro {
	color: #d9d9d9;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 20px;
}

.loc-hero__media img {
	width: 100%;
	height: auto;
	border-radius: var(--loc-radius);
	display: block;
}

.loc-btn-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.loc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 20px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	transition: opacity 0.15s ease;
}

.loc-btn:hover {
	opacity: 0.88;
	text-decoration: none;
}

.loc-btn--primary {
	background-color: var(--loc-yellow);
	color: #0d0d0d;
}

.loc-btn--outline {
	background-color: transparent;
	border: 2px solid var(--loc-yellow);
	color: var(--loc-yellow);
}

/* ---------- BADGES ---------- */

.loc-badges {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.loc-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: var(--loc-bg-card);
	border: 1px solid var(--loc-border);
	border-radius: var(--loc-radius);
	padding: 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--loc-white);
}

.loc-badge__icon {
	color: var(--loc-yellow);
	font-size: 18px;
	flex-shrink: 0;
}

/* ---------- SERVICII ---------- */

.loc-services__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.loc-service-card {
	background-color: var(--loc-white);
	color: #111;
	border-radius: var(--loc-radius);
	padding: 22px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.3;
	min-height: 110px;
}

.loc-service-card img {
	width: 64px;
	height: 64px;
}

/* ---------- ZONA DE ACOPERIRE ---------- */

.loc-nearby__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.loc-pill {
	display: block;
	text-align: center;
	border: 1px solid var(--loc-yellow);
	border-radius: 999px;
	padding: 10px 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--loc-white);
	background-color: var(--loc-bg-card);
}

/* ---------- DE CE NOI ---------- */

.loc-why {
	background-color: var(--loc-bg-card);
	border: 1px solid var(--loc-border);
	border-radius: var(--loc-radius);
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
}

.loc-why__icon {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--loc-white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.loc-why__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.loc-why__title {
	color: var(--loc-white);
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 12px;
}

.loc-why__list {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.loc-why__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--loc-white);
	font-size: 14px;
}

.loc-check {
	color: var(--loc-yellow);
	font-weight: 800;
	flex-shrink: 0;
}

/* ---------- CUM FUNCTIONEAZA ---------- */

.loc-steps__grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.loc-step {
	background-color: var(--loc-bg-card);
	border: 1px solid var(--loc-border);
	border-radius: var(--loc-radius);
	padding: 16px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.loc-step__number {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: var(--loc-yellow);
	color: #0d0d0d;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loc-step strong {
	display: block;
	color: var(--loc-white);
	margin-bottom: 4px;
	font-size: 15px;
}

.loc-step p {
	margin: 0;
	color: #cfcfcf;
	font-size: 13px;
}

/* ---------- TESTIMONIALE ---------- */

.loc-testimonials__grid {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.loc-testimonial {
	background-color: var(--loc-bg-card);
	border: 1px solid var(--loc-border);
	border-radius: var(--loc-radius);
	padding: 18px;
}

.loc-stars {
	color: var(--loc-yellow);
	font-size: 15px;
	margin-bottom: 8px;
}

.loc-testimonial p {
	color: #e5e5e5;
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 12px;
}

.loc-testimonial__author strong {
	display: block;
	color: var(--loc-white);
	font-size: 14px;
}

.loc-testimonial__author span {
	color: #999;
	font-size: 12px;
}

/* ---------- FAQ ---------- */

.loc-faq__item {
	border-bottom: 1px solid var(--loc-border);
}

.loc-faq__question {
	width: 100%;
	background: none;
	border: none;
	color: var(--loc-white);
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	padding: 16px 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	cursor: pointer;
}

.loc-faq__chevron {
	color: var(--loc-yellow);
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.loc-faq__item.is-open .loc-faq__chevron {
	transform: rotate(180deg);
}

.loc-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
}

.loc-faq__answer p {
	color: #cfcfcf;
	font-size: 14px;
	line-height: 1.5;
	padding: 0 4px 16px;
	margin: 0;
}

/* ---------- CTA FINAL ---------- */

.loc-cta-bar {
	background-color: var(--loc-yellow);
	border-radius: var(--loc-radius);
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.loc-cta-bar__left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.loc-cta-bar__icon {
	font-size: 26px;
	color: #0d0d0d;
}

.loc-cta-bar__label {
	display: block;
	color: #0d0d0d;
	font-size: 12px;
	font-weight: 600;
}

.loc-cta-bar__phone {
	display: block;
	color: #0d0d0d;
	font-size: 22px;
	font-weight: 800;
	text-decoration: none;
}

.loc-cta-bar__badge {
	background-color: #0d0d0d;
	color: var(--loc-yellow);
	font-size: 11px;
	font-weight: 700;
	text-align: center;
	line-height: 1.3;
	padding: 8px 12px;
	border-radius: 8px;
	flex-shrink: 0;
}

/* ==========================================================================
   Desktop / tablet (min-width 782px, pragul standard WP admin-bar)
   ========================================================================== */

@media (min-width: 782px) {

	.loc-page {
		padding: 140px 24px 0;
	}

	.loc-hero {
		flex-direction: row;
		align-items: center;
		gap: 40px;
	}

	.loc-hero__text {
		flex: 1;
	}

	.loc-hero__media {
		flex: 1;
	}

	.loc-btn-group {
		flex-direction: row;
	}

	.loc-btn {
		flex: 0 0 auto;
	}

	.loc-badges {
		grid-template-columns: repeat(4, 1fr);
	}

	.loc-services__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.loc-nearby__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.loc-why {
		max-width: 640px;
		margin-left: auto;
		margin-right: auto;
	}

	.loc-steps__grid {
		flex-direction: row;
	}

	.loc-step {
		flex: 1;
	}

	.loc-testimonials__grid {
		flex-direction: row;
	}

	.loc-testimonial {
		flex: 1;
	}
}
