/* WCLA Member Management — front-end styles for the enquiry form and
   member-services slider. Written to sit comfortably inside the dark
   WCLA theme, but scoped under .wcla- classes so it degrades safely on
   any theme. */

.wcla-form { max-width: 640px; }
.wcla-form-row { margin-bottom: 18px; }
.wcla-form-row-group { display: flex; gap: 18px; }
.wcla-form-row-group .wcla-form-row { flex: 1; }
.wcla-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; letter-spacing: 0.02em; }
.wcla-form input[type="text"],
.wcla-form input[type="email"],
.wcla-form input[type="tel"],
.wcla-form input[type="date"],
.wcla-form select,
.wcla-form textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 3px;
	border: 1px solid rgba(245, 244, 241, 0.18);
	background: rgba(255, 255, 255, 0.04);
	color: inherit;
	font-size: 14px;
	font-family: inherit;
}
.wcla-form textarea { resize: vertical; }
.wcla-form input:focus, .wcla-form select:focus, .wcla-form textarea:focus {
	outline: none;
	border-color: #c9a96a;
}

/* Honeypot: visually hidden but present in the DOM/tab order avoided via tabindex=-1 */
.wcla-hp-field {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	height: 0; overflow: hidden;
}

.wcla-form-note { font-size: 13px; opacity: 0.75; margin: 0 0 16px; }

.wcla-routing-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.wcla-radio, .wcla-checkbox { display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: 14px; }
.wcla-checkbox-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; max-height: 220px; overflow-y: auto; padding: 12px; border: 1px solid rgba(245,244,241,0.15); border-radius: 4px; }

.wcla-btn-submit {
	background: #c9a96a;
	color: #0a0a0c;
	border: none;
	padding: 15px 34px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
	border-radius: 3px;
	cursor: pointer;
}
.wcla-btn-submit:hover { background: #e4d3ae; }
.wcla-btn-submit[disabled] { opacity: 0.6; cursor: default; }

.wcla-form-response { margin-top: 16px; font-size: 14px; }
.wcla-form-response.success { color: #4caf6f; }
.wcla-form-response.error { color: #e2665c; }

/* Services slider */
.wcla-services-slider { position: relative; }
.wcla-slider-controls { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 16px; }
.wcla-slider-arrow {
	width: 42px; height: 42px; border-radius: 50%;
	border: 1px solid rgba(245,244,241,0.25); background: transparent; color: inherit;
	cursor: pointer; font-size: 16px;
}
.wcla-slider-arrow:hover { border-color: #c9a96a; color: #c9a96a; }

.wcla-slider-track {
	display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
	scroll-behavior: smooth; padding-bottom: 10px;
	-ms-overflow-style: none; scrollbar-width: none;
}
.wcla-slider-track::-webkit-scrollbar { display: none; }

.wcla-slide-card {
	scroll-snap-align: start;
	flex: 0 0 270px;
	display: block;
	text-decoration: none;
	color: inherit;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(245,244,241,0.1);
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.2s ease, border-color 0.2s ease;
}
.wcla-slide-card:hover { transform: translateY(-4px); border-color: #c9a96a; }
.wcla-slide-image { position: relative; height: 170px; background: #1a1a1e; }
.wcla-slide-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wcla-slide-image-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#2a2a30,#141416); }
.wcla-slide-price {
	position: absolute; top: 12px; left: 12px;
	background: rgba(0,0,0,0.55); color: #fff; font-size: 11px; font-weight: 700;
	padding: 5px 10px; border-radius: 2px;
}
.wcla-slide-body { padding: 18px 20px 22px; }
.wcla-slide-service { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #c9a96a; font-weight: 700; margin-bottom: 6px; }
.wcla-slide-member { margin: 0 0 10px; font-size: 19px; }
.wcla-slide-cta { font-size: 12.5px; opacity: 0.75; }
.wcla-slide-card:hover .wcla-slide-cta { opacity: 1; color: #c9a96a; }

/* Member profile page */
.wcla-member-header { display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; margin-bottom: 40px; }
.wcla-member-photo img { width: 220px; height: 220px; object-fit: cover; border-radius: 4px; }
.wcla-member-meta-list { list-style: none; margin: 16px 0 0; padding: 0; font-size: 14px; }
.wcla-member-meta-list li { margin-bottom: 8px; }
.wcla-fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin: 24px 0 48px; }
.wcla-vehicle-card { border: 1px solid rgba(245,244,241,0.1); border-radius: 4px; overflow: hidden; }
.wcla-vehicle-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.wcla-vehicle-card .wcla-vehicle-body { padding: 16px 18px; }
.wcla-vehicle-gallery { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.wcla-vehicle-gallery img { width: 90px; height: 68px; object-fit: cover; border-radius: 3px; }
