/**
 * East Yorkshire's Fleet Manager — Single Vehicle Page Styles
 * Matches the brand: navy + gold + cream on a paper background.
 */

.eyfs-single {
	--eyfs-navy: #131B24;
	--eyfs-navy-2: #1E2A36;
	--eyfs-slate: #5C6672;
	--eyfs-slate-light: #8A93A0;
	--eyfs-cream: #F7F3EA;
	--eyfs-cream-2: #EFE8D9;
	--eyfs-paper: #FFFFFF;
	--eyfs-gold: #E8A23A;
	--eyfs-gold-2: #F3BD6B;
	--eyfs-gold-deep: #C99248;
	--eyfs-line: #E8EAED;
	--eyfs-line-soft: #F2F3F5;
	--eyfs-success: #22a06b;
	--eyfs-error: #e35a5a;
	--eyfs-ease: cubic-bezier(.22,1,.36,1);

	background: var(--eyfs-cream);
	font-family: 'Plus Jakarta Sans', 'DM Sans', -apple-system, sans-serif;
	color: var(--eyfs-navy);
	-webkit-font-smoothing: antialiased;
}

.eyfs-single *,
.eyfs-single *::before,
.eyfs-single *::after {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

.eyfs-single-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}
@media (max-width: 640px) { .eyfs-single-container { padding: 0 16px; } }

/* ============ BREADCRUMB ============ */
.eyfs-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .82rem;
	color: var(--eyfs-slate);
	margin-bottom: 30px;
	font-weight: 500;
	flex-wrap: wrap;
}
.eyfs-breadcrumb a {
	color: var(--eyfs-slate);
	text-decoration: none;
	transition: color .3s var(--eyfs-ease);
}
.eyfs-breadcrumb a:hover { color: var(--eyfs-gold-deep); }
.eyfs-breadcrumb .eyfs-sep { color: var(--eyfs-slate-light); }
.eyfs-breadcrumb .eyfs-current { color: var(--eyfs-navy); font-weight: 600; }

/* ============ HERO ============ */
.eyfs-single-hero {
	padding: 40px 0 60px;
}
@media (max-width: 640px) { .eyfs-single-hero { padding: 24px 0 40px; } }

.eyfs-single-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 44px;
	align-items: start;
}
@media (max-width: 900px) {
	.eyfs-single-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Image */
.eyfs-single-image-wrap {
	position: relative;
	background: #fff;
	border: 1px solid var(--eyfs-line);
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 30px 60px -30px rgba(19,27,36,.35);
}
.eyfs-single-image {
	width: 92%;
	max-height: 88%;
	object-fit: contain;
	transition: transform .8s var(--eyfs-ease);
}
.eyfs-single-image-wrap:hover .eyfs-single-image {
	transform: scale(1.04);
}
.eyfs-status-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #fff;
	z-index: 2;
}
.eyfs-status-sold     { background: var(--eyfs-error); }
.eyfs-status-reserved { background: var(--eyfs-gold-deep); }

/* Info side */
.eyfs-single-info {
	padding-top: 8px;
}
.eyfs-single-cat {
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--eyfs-gold-deep);
	background: rgba(232,162,58,.12);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}
.eyfs-single-title {
	font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.9rem, 4vw, 2.6rem);
	font-weight: 700;
	color: var(--eyfs-navy);
	letter-spacing: -.02em;
	line-height: 1.1;
	margin: 0 0 10px;
}
.eyfs-single-subtitle {
	font-size: 1rem;
	color: var(--eyfs-slate);
	line-height: 1.5;
	margin: 0 0 26px;
}

/* Price card */
.eyfs-price-card {
	background: linear-gradient(160deg, var(--eyfs-navy-2), var(--eyfs-navy));
	border-radius: 18px;
	padding: 24px;
	margin-bottom: 16px;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.eyfs-price-card::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232,162,58,.25), transparent 70%);
	filter: blur(10px);
	pointer-events: none;
}

.eyfs-price-main {
	position: relative;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.eyfs-price-from {
	font-size: .78rem;
	color: rgba(255,255,255,.55);
	font-weight: 500;
}
.eyfs-price-amount {
	font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
	font-size: 3rem;
	font-weight: 800;
	color: var(--eyfs-gold-2);
	line-height: 1;
	letter-spacing: -.02em;
	margin: 4px 0 6px;
}
.eyfs-price-note {
	font-size: .8rem;
	color: rgba(255,255,255,.65);
	font-weight: 500;
}

.eyfs-price-terms {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
	position: relative;
}
@media (max-width: 540px) { .eyfs-price-terms { grid-template-columns: 1fr; } }
.eyfs-term {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.eyfs-term-label {
	font-size: .68rem;
	color: rgba(255,255,255,.5);
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.eyfs-term-value {
	font-size: .95rem;
	color: #fff;
	font-weight: 700;
}

/* Delivery band */
.eyfs-single-delivery {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--eyfs-gold-deep);
	color: #fff;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: .84rem;
	font-weight: 600;
	margin-bottom: 22px;
}
.eyfs-single-delivery .eyfs-icon svg {
	width: 15px;
	height: 15px;
}

/* CTA row */
.eyfs-cta-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* ============ BUTTONS (shared with form) ============ */
.eyfs-single .eyfs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: .9rem;
	letter-spacing: .02em;
	font-family: inherit;
	white-space: nowrap;
	border: none;
	cursor: pointer;
	transition: transform .4s var(--eyfs-ease), box-shadow .4s var(--eyfs-ease), background .35s var(--eyfs-ease), color .35s var(--eyfs-ease);
	text-decoration: none;
}
.eyfs-single .eyfs-btn .eyfs-icon svg {
	width: 16px;
	height: 16px;
	transition: transform .3s var(--eyfs-ease);
}
.eyfs-single .eyfs-btn:hover .eyfs-icon svg { transform: translateX(3px); }

.eyfs-single .eyfs-btn-primary {
	background: linear-gradient(135deg, #F3BD6B, var(--eyfs-gold) 55%, var(--eyfs-gold-deep));
	color: var(--eyfs-navy);
	box-shadow: 0 14px 30px -10px rgba(201,146,72,.55);
}
.eyfs-single .eyfs-btn-primary:hover:not(:disabled) {
	transform: translateY(-3px);
	box-shadow: 0 22px 44px -12px rgba(201,146,72,.7);
}
.eyfs-single .eyfs-btn-primary:disabled { opacity: .6; cursor: wait; }

.eyfs-single .eyfs-btn-outline {
	background: transparent;
	color: var(--eyfs-navy);
	border: 1.5px solid var(--eyfs-navy);
	padding: 12.5px 24px;
}
.eyfs-single .eyfs-btn-outline:hover {
	background: var(--eyfs-navy);
	color: #fff;
}
.eyfs-single .eyfs-btn-outline-dark {
	background: transparent;
	color: var(--eyfs-navy);
	border: 1.5px solid var(--eyfs-navy);
	padding: 12.5px 24px;
}
.eyfs-single .eyfs-btn-outline-dark:hover {
	background: var(--eyfs-navy);
	color: #fff;
}
.eyfs-single .eyfs-btn-full { width: 100%; }

/* Spinner */
.eyfs-single .eyfs-spinner {
	width: 16px;
	height: 16px;
	border: 2.5px solid rgba(0,0,0,.2);
	border-top-color: var(--eyfs-navy);
	border-radius: 50%;
	animation: eyfs-spin .8s linear infinite;
	display: inline-block;
}
@keyframes eyfs-spin { to { transform: rotate(360deg); } }
.eyfs-single .eyfs-btn-loader {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

/* ============ SECTION HEAD ============ */
.eyfs-single-section {
	padding: 70px 0;
}
@media (max-width: 640px) { .eyfs-single-section { padding: 50px 0; } }
.eyfs-single-section:nth-child(even) { background: #fff; }

.eyfs-section-head {
	margin-bottom: 36px;
	max-width: 640px;
}
.eyfs-section-head.eyfs-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.eyfs-single .eyfs-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--eyfs-gold-deep);
	margin-bottom: 12px;
}
.eyfs-single .eyfs-eyebrow::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--eyfs-gold);
	box-shadow: 0 0 0 4px rgba(232,162,58,.18);
}
.eyfs-section-head h2 {
	font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	font-weight: 700;
	color: var(--eyfs-navy);
	letter-spacing: -.02em;
	line-height: 1.15;
	margin: 0;
}

/* ============ SPECS GRID ============ */
.eyfs-specs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
@media (max-width: 900px) { .eyfs-specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .eyfs-specs-grid { grid-template-columns: 1fr; } }

.eyfs-spec-card {
	background: #fff;
	border: 1px solid var(--eyfs-line);
	border-radius: 14px;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: transform .4s var(--eyfs-ease), box-shadow .4s var(--eyfs-ease), border-color .4s var(--eyfs-ease);
}
.eyfs-spec-card:hover {
	transform: translateY(-4px);
	border-color: transparent;
	box-shadow: 0 20px 40px -20px rgba(19,27,36,.2);
}
.eyfs-spec-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(232,162,58,.12);
	color: var(--eyfs-gold-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.eyfs-spec-icon .eyfs-icon svg {
	width: 20px;
	height: 20px;
}
.eyfs-spec-label {
	font-size: .72rem;
	color: var(--eyfs-slate-light);
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.eyfs-spec-value {
	font-size: 1rem;
	font-weight: 700;
	color: var(--eyfs-navy);
	margin-top: 2px;
}

/* ============ DESCRIPTION ============ */
.eyfs-description-body {
	max-width: 780px;
	color: var(--eyfs-navy-2);
	line-height: 1.7;
	font-size: 1rem;
}
.eyfs-description-body p     { margin: 0 0 16px; }
.eyfs-description-body h2,
.eyfs-description-body h3,
.eyfs-description-body h4    { margin: 24px 0 12px; color: var(--eyfs-navy); font-family: 'Sora', sans-serif; }
.eyfs-description-body ul,
.eyfs-description-body ol    { margin: 0 0 16px 20px; }
.eyfs-description-body li    { margin-bottom: 6px; }
.eyfs-description-body a     { color: var(--eyfs-gold-deep); text-decoration: underline; }

/* ============ TRUST GRID ============ */
.eyfs-trust-section { background: #fff; }
.eyfs-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
@media (max-width: 900px) { .eyfs-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .eyfs-trust-grid { grid-template-columns: 1fr; } }

.eyfs-trust-card {
	text-align: center;
	padding: 26px 20px;
	background: var(--eyfs-cream);
	border-radius: 16px;
	transition: transform .5s var(--eyfs-ease), box-shadow .5s var(--eyfs-ease);
}
.eyfs-trust-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px -20px rgba(19,27,36,.2);
}
.eyfs-trust-icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 14px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--eyfs-gold-2), var(--eyfs-gold-deep));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.eyfs-trust-icon .eyfs-icon svg {
	width: 22px;
	height: 22px;
}
.eyfs-trust-card h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--eyfs-navy);
	margin: 0 0 8px;
	font-family: 'Sora', sans-serif;
	line-height: 1.2;
}
.eyfs-trust-card p {
	font-size: .85rem;
	color: var(--eyfs-slate);
	line-height: 1.55;
	margin: 0;
}

/* ============ ENQUIRY SECTION ============ */
.eyfs-enquiry-section { background: var(--eyfs-cream-2); }
.eyfs-enquiry-wrap {
	background: #fff;
	border-radius: 24px;
	padding: 44px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
	box-shadow: 0 30px 60px -30px rgba(19,27,36,.25);
}
@media (max-width: 900px) {
	.eyfs-enquiry-wrap { grid-template-columns: 1fr; gap: 32px; padding: 32px 26px; }
}
@media (max-width: 540px) {
	.eyfs-enquiry-wrap { padding: 26px 20px; border-radius: 18px; }
}

.eyfs-enquiry-side h2 {
	font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.6rem, 2.8vw, 2rem);
	font-weight: 700;
	color: var(--eyfs-navy);
	letter-spacing: -.02em;
	line-height: 1.15;
	margin: 12px 0 14px;
}
.eyfs-enquiry-side > p {
	color: var(--eyfs-slate);
	line-height: 1.65;
	margin: 0 0 24px;
	max-width: 380px;
}
.eyfs-enquiry-contacts {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.eyfs-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: var(--eyfs-cream);
	border-radius: 12px;
	color: var(--eyfs-navy);
	text-decoration: none;
	transition: transform .35s var(--eyfs-ease), background .35s var(--eyfs-ease);
}
.eyfs-contact-item:hover {
	transform: translateX(4px);
	background: rgba(232,162,58,.15);
}
.eyfs-contact-ico {
	font-size: 1.5rem;
	flex-shrink: 0;
}
.eyfs-contact-item small {
	display: block;
	font-size: .7rem;
	color: var(--eyfs-slate-light);
	text-transform: uppercase;
	letter-spacing: .05em;
	font-weight: 600;
}
.eyfs-contact-item b {
	font-size: .95rem;
	color: var(--eyfs-navy);
	font-weight: 700;
}

/* Form */
.eyfs-enquiry-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.eyfs-form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
@media (max-width: 480px) { .eyfs-form-grid-2 { grid-template-columns: 1fr; } }
.eyfs-en-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.eyfs-en-field label {
	font-size: .82rem;
	font-weight: 600;
	color: var(--eyfs-navy);
}
.eyfs-en-field label small {
	color: var(--eyfs-slate-light);
	font-weight: 500;
	font-size: .78rem;
}
.eyfs-en-field label .req {
	color: var(--eyfs-error);
	font-weight: 700;
}
.eyfs-en-field input,
.eyfs-en-field textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.4px solid var(--eyfs-line);
	border-radius: 10px;
	font-family: inherit;
	font-size: .92rem;
	color: var(--eyfs-navy);
	background: #fff;
	transition: border-color .3s var(--eyfs-ease), box-shadow .3s var(--eyfs-ease);
	outline: none;
}
.eyfs-en-field input:focus,
.eyfs-en-field textarea:focus {
	border-color: var(--eyfs-gold);
	box-shadow: 0 0 0 4px rgba(232,162,58,.15);
}
.eyfs-en-field textarea {
	resize: vertical;
	min-height: 100px;
	font-family: inherit;
	line-height: 1.5;
}
.eyfs-en-field.has-error input,
.eyfs-en-field.has-error textarea {
	border-color: var(--eyfs-error);
	box-shadow: 0 0 0 4px rgba(227,90,90,.12);
}

.eyfs-enquiry-message {
	padding: 12px 16px;
	border-radius: 10px;
	font-size: .88rem;
	font-weight: 500;
	display: none;
}
.eyfs-enquiry-message.show { display: block; animation: eyfs-fade-in .3s var(--eyfs-ease); }
.eyfs-enquiry-message.success {
	background: rgba(34,160,107,.1);
	color: var(--eyfs-success);
	border: 1px solid rgba(34,160,107,.25);
}
.eyfs-enquiry-message.error {
	background: rgba(227,90,90,.1);
	color: var(--eyfs-error);
	border: 1px solid rgba(227,90,90,.25);
}
@keyframes eyfs-fade-in {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}
.eyfs-form-note {
	font-size: .78rem;
	color: var(--eyfs-slate-light);
	line-height: 1.5;
	margin: 0;
	text-align: center;
}

/* ============ SIMILAR SECTION ============ */
.eyfs-similar-section { background: var(--eyfs-cream); }
.eyfs-similar-more {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

/* ============ HELPERS ============ */
.eyfs-single .eyfs-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.eyfs-single .eyfs-icon svg {
	width: 1em;
	height: 1em;
	display: block;
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
	.eyfs-single *,
	.eyfs-single *::before,
	.eyfs-single *::after {
		animation-duration: .001s !important;
		transition-duration: .2s !important;
	}
}
