/**
 * Phúc Lan Auto – Main styles
 * Design system aligned with homepage mockup
 */

:root {
	--color-primary: #0057D9;
	--color-primary-light: #0B6BFF;
	--color-primary-dark: #0047B8;
	--color-dark: #07111F;
	--color-black: #05080D;
	--color-white: #FFFFFF;
	--color-light: #F5F7FA;
	--color-text: #111827;
	--color-muted: #667085;
	--color-border: #E5E7EB;
	--color-yellow: #FFC400;
	--color-yellow-hover: #E6B000;

	--container-width: 1440px;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--radius-xl: 24px;

	--shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
	--shadow-md: 0 12px 32px rgba(15, 23, 42, 0.12);
	--shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.18);

	--font: "Be Vietnam Pro", system-ui, -apple-system, sans-serif;
	--header-h: 72px;
	--topbar-h: 36px;
	--section-pad: clamp(56px, 8vw, 100px);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-text);
	background: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.is-locked {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s var(--ease);
}

button,
input,
select,
textarea {
	font: inherit;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	line-height: 1.2;
	font-weight: 800;
	color: var(--color-text);
}

.container {
	width: min(var(--container-width), calc(100% - 48px));
	margin-inline: auto;
}

.screen-reader-text,
.pla-hp {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pla-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10000;
	background: var(--color-primary);
	color: #fff;
	padding: 12px 20px;
}

.pla-skip-link:focus {
	left: 16px;
	top: 16px;
}

/* Buttons */
.pla-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px 24px;
	border-radius: var(--radius-sm);
	border: 2px solid transparent;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
	text-align: center;
	white-space: nowrap;
}

.pla-btn:hover {
	transform: translateY(-2px);
}

.pla-btn:active {
	transform: translateY(0);
}

.pla-btn--primary {
	background: var(--color-primary);
	color: #fff;
}

.pla-btn--primary:hover {
	background: var(--color-primary-light);
	box-shadow: 0 8px 24px rgba(0, 87, 217, 0.35);
}

.pla-btn--yellow {
	background: var(--color-yellow);
	color: var(--color-black);
	border-color: var(--color-yellow);
}

.pla-btn--yellow:hover {
	background: var(--color-yellow-hover);
	box-shadow: 0 8px 24px rgba(255, 196, 0, 0.4);
}

.pla-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
}

.pla-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

.pla-btn--outline {
	background: #fff;
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.pla-btn--outline:hover {
	background: var(--color-primary);
	color: #fff;
}

.pla-btn--sm {
	min-height: 40px;
	padding: 8px 16px;
	font-size: 13px;
}

.pla-btn--block {
	width: 100%;
}

.pla-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.04em;
}

.pla-link:hover {
	color: var(--color-primary-light);
}

/* Typography helpers */
.pla-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--color-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.pla-eyebrow--light {
	color: rgba(255, 255, 255, 0.85);
}

.pla-heading {
	font-size: clamp(30px, 3.2vw, 44px);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 16px;
}

.pla-heading--sm {
	font-size: clamp(22px, 2.2vw, 28px);
}

.pla-heading--light {
	color: #fff;
}

.pla-text {
	color: var(--color-muted);
	margin: 0 0 24px;
	max-width: 56ch;
}

.pla-badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--color-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 22px;
	text-transform: uppercase;
}

.pla-section {
	padding: var(--section-pad) 0;
}

.pla-section--light {
	background: var(--color-light);
}

.pla-section-header {
	margin-bottom: 48px;
}

.pla-section-header--center {
	text-align: center;
}

.pla-section-cta {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.pla-stars {
	display: inline-flex;
	gap: 2px;
}

.pla-star {
	color: #d1d5db;
}

.pla-star.is-active {
	color: var(--color-yellow);
}

.pla-star svg {
	fill: currentColor;
	stroke: none;
}

/* ========== TOP BAR ========== */
.pla-topbar {
	background: #07111F;
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	height: var(--topbar-h);
}

.pla-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 16px;
}

.pla-topbar__contact {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
}

.pla-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.88);
	white-space: nowrap;
}

.pla-topbar__item:hover {
	color: #fff;
}

.pla-topbar__item svg {
	color: var(--color-primary-light);
	flex-shrink: 0;
}

.pla-topbar__item span {
	overflow: hidden;
	text-overflow: ellipsis;
}

.pla-topbar__social {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pla-topbar__social a {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	color: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	transition: color 0.2s, background 0.2s;
}

.pla-topbar__social a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

/* ========== HEADER ========== */
.pla-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: #fff;
	border-bottom: 1px solid var(--color-border);
	transition: box-shadow 0.25s var(--ease);
}

.pla-header.is-sticky {
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

.pla-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--header-h);
}

.pla-header__logo img {
	height: 48px;
	width: auto;
	object-fit: contain;
}

.pla-nav__list {
	display: flex;
	align-items: center;
	gap: 2px;
}

.pla-nav__list > li {
	position: relative;
}

.pla-nav__list > li > a {
	display: block;
	padding: 10px 14px;
	color: var(--color-text);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	border-radius: 6px;
}

.pla-nav__list > li > a:hover,
.pla-nav__list > li.current-menu-item > a,
.pla-nav__list > li.current_page_item > a {
	color: var(--color-primary);
}

.pla-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
	z-index: 20;
}

.pla-nav__list > li:hover > .sub-menu,
.pla-nav__list > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.pla-nav__list .sub-menu a {
	display: block;
	padding: 10px 12px;
	color: var(--color-text);
	font-size: 13px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	border-radius: 6px;
}

.pla-nav__list .sub-menu a:hover {
	background: rgba(0, 87, 217, 0.08);
	color: var(--color-primary);
}

.pla-header__cta {
	flex-shrink: 0;
	border-radius: 8px;
	min-height: 44px;
	padding: 10px 18px;
	box-shadow: 0 8px 20px rgba(0, 87, 217, 0.25);
}

.pla-header__toggle,
.pla-nav__close {
	display: none;
	background: none;
	border: 0;
	color: var(--color-text);
	cursor: pointer;
	padding: 8px;
}

.pla-nav-overlay {
	display: none;
}

/* ========== HERO ========== */
.pla-hero {
	position: relative;
	min-height: clamp(560px, 78vh, 760px);
	display: flex;
	align-items: center;
	background-color: var(--color-black);
	background-image: var(--pla-hero-bg, linear-gradient(135deg, #0a1220 0%, #1a2332 40%, #0d1520 100%));
	background-size: cover;
	background-position: center right;
	overflow: hidden;
}

.pla-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 8, 13, 0.88) 0%, rgba(5, 8, 13, 0.62) 38%, rgba(5, 8, 13, 0.28) 62%, rgba(5, 8, 13, 0.12) 100%),
		linear-gradient(180deg, rgba(5, 8, 13, 0.2) 0%, transparent 30%, rgba(5, 8, 13, 0.45) 100%);
	pointer-events: none;
}

.pla-hero__content {
	position: relative;
	z-index: 2;
	padding: 88px 0 120px;
	max-width: 760px;
}

.pla-hero .container.pla-hero__content {
	margin-inline: auto;
	width: min(var(--container-width), calc(100% - 48px));
	max-width: none;
}

.pla-hero__title {
	font-size: clamp(36px, 4.6vw, 58px);
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 18px;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}

.pla-hero__title span {
	display: block;
}

.pla-hero__highlight {
	color: var(--color-primary-light) !important;
}

.pla-hero__subtitle {
	color: rgba(255, 255, 255, 0.86);
	font-size: 18px;
	margin: 0 0 28px;
	font-weight: 500;
}

.pla-hero__stats {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 32px;
	margin-bottom: 36px;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pla-hero__rating {
	padding-right: 8px;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
	margin-right: 4px;
}

.pla-hero__stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: #fff;
}

.pla-hero__stat strong {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
}

.pla-hero__stat span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.68);
}

.pla-hero__content > * {
	animation: pla-fade-up 0.7s var(--ease) both;
}

.pla-hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.pla-hero__content > *:nth-child(2) { animation-delay: 0.12s; }
.pla-hero__content > *:nth-child(3) { animation-delay: 0.2s; }
.pla-hero__content > *:nth-child(4) { animation-delay: 0.28s; }
.pla-hero__content > *:nth-child(5) { animation-delay: 0.36s; }

@keyframes pla-fade-up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.pla-hero__content > * {
		animation: none;
	}
}

.pla-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.pla-hero__actions .pla-btn {
	min-height: 52px;
	padding: 14px 28px;
	font-size: 15px;
}

/* ========== QUICK SERVICES ========== */
.pla-quick-services {
	position: relative;
	z-index: 5;
	margin-top: -72px;
	margin-bottom: 8px;
}

.pla-quick-services__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	background: #fff;
	border-radius: var(--radius-xl);
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
	border: 1px solid rgba(229, 231, 235, 0.9);
	overflow: hidden;
}

.pla-quick-services__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 32px 14px 28px;
	text-align: center;
	border-right: 1px solid var(--color-border);
	transition: background 0.2s var(--ease), transform 0.2s var(--ease);
	position: relative;
}

.pla-quick-services__item:last-child {
	border-right: 0;
}

.pla-quick-services__item::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 48px;
	height: 3px;
	background: transparent;
	transform: translateX(-50%);
	transition: background 0.2s var(--ease);
	border-radius: 2px 2px 0 0;
}

.pla-quick-services__item:hover {
	background: #f8fafc;
}

.pla-quick-services__item:hover::after {
	background: var(--color-primary);
}

.pla-quick-services__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(0, 87, 217, 0.08);
	color: var(--color-primary);
	transition: background 0.2s, color 0.2s;
}

.pla-quick-services__item:hover .pla-quick-services__icon {
	background: var(--color-primary);
	color: #fff;
}

.pla-quick-services__title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--color-text);
}

/* ========== ABOUT ========== */
.pla-about {
	padding-top: clamp(48px, 6vw, 72px);
}

.pla-about__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 64px;
	align-items: center;
}

.pla-about__video {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	border: 0;
	border-radius: 20px;
	background: linear-gradient(145deg, #1a2332, #0a1220) center/cover no-repeat;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.pla-about__video::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 13, 0.35) 100%);
	pointer-events: none;
}

.pla-about__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 80px;
	height: 80px;
	display: grid;
	place-items: center;
	background: var(--color-primary);
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 12px 32px rgba(0, 87, 217, 0.45);
	transition: transform 0.2s var(--ease);
	z-index: 1;
}

.pla-about__video:hover .pla-about__play {
	transform: scale(1.08);
}

.pla-about__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 28px;
}

.pla-about__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 18px 10px 16px;
	background: #fff;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.pla-about__stat-icon {
	display: grid;
	place-items: center;
	color: var(--color-primary);
	margin-bottom: 2px;
}

.pla-about__stat strong {
	display: block;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-text);
}

.pla-about__stat span {
	font-size: 12px;
	line-height: 1.35;
	color: var(--color-muted);
}

/* ========== SERVICES ========== */
.pla-services {
	background: #fff;
}

.pla-services__header {
	margin-bottom: 40px;
}

.pla-services__heading {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}

.pla-services__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.pla-service-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--color-border);
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
	transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
	min-width: 0;
}

.pla-service-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.pla-service-card__link {
	display: block;
	height: 100%;
}

.pla-service-card__media {
	aspect-ratio: 4 / 3;
	background: linear-gradient(145deg, #e8eef7, #c5d4e8) center/cover no-repeat;
	overflow: hidden;
}

.pla-service-card__media::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: inherit;
	transition: transform 0.4s var(--ease);
}

.pla-service-card:hover .pla-service-card__media::after {
	transform: scale(1.05);
}

.pla-service-card__title {
	padding: 16px 10px 18px;
	margin: 0;
	font-size: clamp(13px, 1.05vw, 16px);
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	color: var(--color-text);
	white-space: pre-line;
}

/* ========== WHY ========== */
.pla-why {
	background: #0057D9;
	color: #fff;
	padding-top: clamp(64px, 7vw, 88px);
	padding-bottom: clamp(64px, 7vw, 88px);
}

.pla-why__header {
	text-align: center;
	margin-bottom: 36px;
}

.pla-why__eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}

.pla-why__heading {
	margin: 0;
	font-size: clamp(26px, 2.6vw, 36px);
	font-weight: 800;
	line-height: 1.25;
	color: #fff;
}

.pla-why__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.pla-why__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	min-height: 210px;
	padding: 28px 12px 22px;
	border-radius: 12px;
	border: 1px solid #fff;
	background: transparent;
	transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.pla-why__card:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.06);
}

.pla-why__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	color: #fff;
	line-height: 0;
	flex-shrink: 0;
}

.pla-why__icon .pla-icon {
	display: block;
	stroke-width: 1.5;
}

.pla-why__title {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	line-height: 1.35;
	color: #fff;
}

.pla-why__desc {
	margin: 0;
	margin-top: auto;
	font-size: 12px;
	line-height: 1.45;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.95);
}

/* ========== FILTER ========== */
.pla-filter {
	background: #fff;
}

.pla-filter__title {
	margin: 0 0 28px;
	text-align: center;
	font-size: clamp(22px, 2.4vw, 32px);
	font-weight: 800;
	line-height: 1.25;
	color: var(--color-primary);
	text-transform: uppercase;
}

.pla-filter__bar {
	display: flex;
	align-items: center;
	gap: 20px;
}

.pla-filter__form {
	flex: 1;
	min-width: 0;
}

.pla-filter__fields {
	display: flex;
	align-items: stretch;
	gap: 12px;
}

.pla-filter__control {
	position: relative;
	flex: 1;
	min-width: 0;
}

.pla-filter__icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	pointer-events: none;
	line-height: 0;
}

.pla-filter__control select {
	width: 100%;
	min-height: 54px;
	padding: 12px 40px 12px 44px;
	border: 1px solid #D1D5DB;
	border-radius: 10px;
	background-color: #fff;
	color: var(--color-text);
	font-size: 14px;
	font-weight: 500;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%230057D9' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
}

.pla-filter__control select:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	background-color: #F9FAFB;
}

.pla-filter__submit {
	flex-shrink: 0;
	min-height: 54px;
	padding: 0 26px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.pla-filter__car {
	flex-shrink: 0;
	width: min(300px, 26vw);
	margin-top: -8px;
	pointer-events: none;
}

.pla-filter__car img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.pla-filter__message {
	margin-top: 12px;
	font-size: 14px;
	color: var(--color-muted);
	text-align: center;
}

.pla-form input,
.pla-form select,
.pla-form textarea {
	width: 100%;
	min-height: 52px;
	padding: 12px 14px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--color-text);
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23667085' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.pla-form textarea,
.pla-form input[type="text"],
.pla-form input[type="tel"],
.pla-form input[type="email"] {
	background-image: none;
	padding-right: 14px;
}

/* ========== PROJECTS ========== */
.pla-projects {
	background: #fff;
}

.pla-projects__header {
	text-align: center;
	margin-bottom: 36px;
}

.pla-projects__eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.pla-projects__heading {
	margin: 0;
	font-size: clamp(26px, 2.6vw, 36px);
	font-weight: 800;
	line-height: 1.25;
	color: var(--color-text);
}

.pla-projects__slider {
	position: relative;
	padding: 0 52px;
	overflow: hidden;
}

.pla-projects__slider .swiper-wrapper {
	align-items: stretch;
}

.pla-projects__slider.swiper-button-disabled,
.pla-projects__nav.swiper-button-disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

.pla-project-card {
	height: 100%;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--color-border);
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.pla-project-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.pla-project-card__link {
	display: block;
	height: 100%;
}

.pla-ba {
	display: grid;
	grid-template-columns: 1fr 1fr;
	aspect-ratio: 4 / 3;
	position: relative;
}

.pla-ba::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: #fff;
	transform: translateX(-50%);
	z-index: 2;
	pointer-events: none;
}

.pla-ba__before,
.pla-ba__after {
	position: relative;
	background: linear-gradient(145deg, #dbe4f0, #a8bdd4) center/cover no-repeat;
}

.pla-ba__label {
	position: absolute;
	bottom: 10px;
	left: 10px;
	z-index: 3;
	padding: 5px 12px;
	border-radius: 6px;
	background: #fff;
	color: var(--color-text);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.pla-ba__label--after {
	left: auto;
	right: 10px;
}

.pla-project-card__info {
	padding: 16px 16px 18px;
	text-align: left;
}

.pla-project-card__title {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 4px;
	line-height: 1.35;
	color: var(--color-text);
}

.pla-project-card__car {
	margin: 0;
	font-size: 13px;
	color: var(--color-muted);
}

.pla-projects__nav {
	position: absolute;
	top: 42%;
	z-index: 5;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid var(--color-primary);
	background: #fff;
	color: var(--color-primary);
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: none;
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.pla-projects__nav:hover {
	background: var(--color-primary);
	color: #fff;
}

.pla-projects__nav--prev {
	left: 0;
	transform: translateY(-50%) rotate(180deg);
}

.pla-projects__nav--next {
	right: 0;
	transform: translateY(-50%);
}

.pla-projects__cta {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

.pla-projects__more {
	min-width: 220px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

/* ========== MEDIA ROW ========== */
.pla-media-row__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1fr;
	gap: 32px;
}

.pla-testimonial__card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow-sm);
}

.pla-testimonial__quote {
	margin: 16px 0 20px;
}

.pla-testimonial__quote p {
	margin: 0;
	font-size: 15px;
	color: var(--color-text);
	line-height: 1.7;
}

.pla-testimonial__author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pla-testimonial__author img,
.pla-testimonial__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.pla-testimonial__avatar {
	display: grid;
	place-items: center;
	background: var(--color-primary);
	color: #fff;
	font-weight: 700;
}

.pla-testimonial__author strong {
	display: block;
	font-size: 15px;
}

.pla-testimonial__author span {
	font-size: 13px;
	color: var(--color-muted);
}

.pla-videos__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.pla-video-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	text-align: left;
}

.pla-video-card__thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-sm);
	background: #1a2332 center/cover no-repeat;
	overflow: hidden;
}

.pla-video-card__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	background: #ff0000;
	color: #fff;
	border-radius: 50%;
}

.pla-video-card__title {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--color-text);
}

.pla-news__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pla-news__link {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 14px;
	align-items: start;
}

.pla-news__thumb {
	width: 72px;
	height: 72px;
	border-radius: var(--radius-sm);
	background: #dbe4f0 center/cover no-repeat;
}

.pla-news__meta time {
	display: block;
	font-size: 12px;
	color: var(--color-muted);
	margin-bottom: 4px;
}

.pla-news__meta strong {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 6px;
}

.pla-news__more {
	font-size: 13px;
	color: var(--color-primary);
	font-weight: 600;
}

/* ========== PARTNERS ========== */
.pla-partners {
	padding-top: 48px;
	padding-bottom: 48px;
}

.pla-partners .pla-section-header {
	margin-bottom: 28px;
}

.pla-partners__item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	padding: 8px 16px;
	filter: grayscale(1);
	opacity: 0.65;
	transition: filter 0.2s, opacity 0.2s;
}

.pla-partners__item:hover {
	filter: none;
	opacity: 1;
}

.pla-partners__item img {
	max-height: 40px;
	width: auto;
	object-fit: contain;
}

.pla-partners__name {
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 0.04em;
	color: #94a3b8;
}

/* ========== FINAL CTA ========== */
.pla-cta {
	position: relative;
	background: #003EA8;
	overflow: hidden;
	padding: 72px 0;
}

.pla-cta__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #003088 0%, #0057D9 55%, #0B6BFF 100%);
	opacity: 1;
}

.pla-cta__bg[style*="background-image"] {
	background-size: cover;
	background-position: right center;
	opacity: 1;
}

.pla-cta__bg[style*="background-image"]::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 62, 168, 0.92) 0%, rgba(0, 87, 217, 0.78) 45%, rgba(11, 107, 255, 0.55) 100%);
}

.pla-cta__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.pla-cta__title {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 8px;
}

.pla-cta__subtitle {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 16px;
}

.pla-cta__actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.pla-cta__hotline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-yellow);
	font-size: 28px;
	font-weight: 800;
}

/* ========== FOOTER ========== */
.pla-footer {
	background: #05080D;
	color: rgba(255, 255, 255, 0.75);
	padding-top: 72px;
}

.pla-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr 0.9fr 1.15fr;
	gap: 36px;
	padding-bottom: 48px;
}

.pla-footer__logo img {
	height: 44px;
	width: auto;
	margin-bottom: 16px;
}

.pla-footer__desc {
	font-size: 14px;
	line-height: 1.7;
	margin: 0 0 20px;
	max-width: 36ch;
}

.pla-footer__social {
	display: flex;
	gap: 12px;
}

.pla-footer__social a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.pla-footer__social a:hover {
	background: var(--color-primary);
}

.pla-footer__title {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 0.04em;
}

.pla-footer__list,
.pla-footer__links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pla-footer__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
}

.pla-footer__list svg {
	color: var(--color-primary-light);
	flex-shrink: 0;
	margin-top: 3px;
}

.pla-footer__links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.pla-footer__links a:hover {
	color: var(--color-primary-light);
}

.pla-footer__map-embed {
	border-radius: var(--radius-md);
	overflow: hidden;
	margin-bottom: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.pla-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 18px 0;
	font-size: 13px;
	text-align: center;
}

.pla-footer__bottom p {
	margin: 0;
}

/* ========== FLOATING CONTACT ========== */
.pla-float {
	position: fixed;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 850;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pla-float__btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 72px;
	min-height: 72px;
	padding: 10px 6px;
	border: 0;
	border-radius: var(--radius-md);
	background: var(--color-primary);
	color: #fff;
	cursor: pointer;
	box-shadow: var(--shadow-md);
	transition: transform 0.2s var(--ease), background 0.2s;
	font: inherit;
	text-align: center;
}

.pla-float__btn:hover {
	background: var(--color-primary-light);
	transform: translateY(-2px);
}

.pla-float__label {
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
}

/* ========== MODAL ========== */
.pla-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	padding: 24px;
}

.pla-modal[hidden] {
	display: none !important;
}

.pla-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 8, 13, 0.72);
	backdrop-filter: blur(4px);
}

.pla-modal__dialog {
	position: relative;
	z-index: 2;
	width: min(520px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	box-shadow: var(--shadow-lg);
	animation: plaFadeUp 0.3s var(--ease);
}

.pla-modal__dialog--video {
	width: min(900px, 100%);
	padding: 0;
	background: #000;
	overflow: hidden;
}

.pla-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.06);
	cursor: pointer;
	display: grid;
	place-items: center;
}

.pla-modal--video .pla-modal__close {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.pla-modal__title {
	font-size: 24px;
	margin-bottom: 8px;
	padding-right: 36px;
}

.pla-modal__subtitle {
	margin: 0 0 24px;
	color: var(--color-muted);
	font-size: 14px;
}

.pla-form__row {
	margin-bottom: 14px;
}

.pla-form__row label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
}

.pla-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.pla-form__message {
	margin-bottom: 12px;
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	font-size: 14px;
}

.pla-form__message.is-success {
	background: #d1fae5;
	color: #047857;
}

.pla-form__message.is-error {
	background: #fee2e2;
	color: #b91c1c;
}

.pla-video-embed {
	position: relative;
	aspect-ratio: 16 / 9;
}

.pla-video-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ========== PAGE / ARCHIVE ========== */
.pla-page-hero {
	background: var(--color-dark);
	color: #fff;
	padding: 64px 0 48px;
}

.pla-page-hero h1 {
	color: #fff;
	font-size: clamp(32px, 4vw, 48px);
}

.pla-breadcrumb {
	background: var(--color-light);
	padding: 12px 0;
	font-size: 13px;
}

.pla-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.pla-breadcrumb li:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	color: var(--color-muted);
}

.pla-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pla-content {
	padding: var(--section-pad) 0;
}

.pla-content .entry-content {
	max-width: 800px;
}

.pla-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
}

.pla-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	font-weight: 600;
}

.pla-pagination .current,
.pla-pagination a:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/* Animations */
@keyframes plaFadeUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pla-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.pla-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.pla-reveal {
		opacity: 1;
		transform: none;
	}
}
