/* =========================================================
   VIKING RIDERS — CENTRE DE CONTACT
   ========================================================= */

.vrcc-section {
	--vrcc-primary: var(--vr-primary, #298bfd);
	--vrcc-navy: var(--vr-navy, #04203d);
	--vrcc-muted: var(--vr-muted, #5b6f82);
	--vrcc-bg: var(--vr-bg, #f3f8fc);
	--vrcc-border: var(--vr-border, #d7e3ec);
	box-sizing: border-box;
	width: 100%;
	padding: clamp(54px, 5vw, 76px) clamp(18px, 4vw, 56px) clamp(64px, 6vw, 88px);
	background: var(--vrcc-bg);
}

.vrcc-section *,
.vrcc-section *::before,
.vrcc-section *::after {
	box-sizing: border-box;
}

.vrcc-inner {
	width: min(100%, 1240px);
	margin: 0 auto;
}

.vrcc-heading {
	margin: 0 0 26px;
}

.vrcc-kicker {
	margin: 0 0 8px;
	color: var(--vrcc-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.vrcc-title {
	margin: 0;
	color: var(--vrcc-navy);
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
	font-size: clamp(40px, 3.8vw, 58px);
	font-weight: 400;
	letter-spacing: -.02em;
	line-height: .94;
	text-transform: uppercase;
}

.vrcc-intro {
	margin: 12px 0 0;
	color: var(--vrcc-muted);
	font-size: 13px;
	line-height: 1.5;
}

.vrcc-layout {
	display: grid;
	grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
	align-items: stretch;
	gap: 28px;
}

.vrcc-contact-card,
.vrcc-form-card {
	border: 1px solid var(--vrcc-border);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(4, 32, 61, .055);
}

.vrcc-contact-card {
	align-self: start;
	overflow: hidden;
	padding: 0 20px;
}

.vrcc-contact-row {
	display: grid;
	grid-template-columns: 30px 105px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 64px;
	padding: 12px 2px;
	border-bottom: 1px solid rgba(4, 32, 61, .10);
	color: var(--vrcc-navy);
	text-decoration: none;
}

.vrcc-contact-row:last-child {
	border-bottom: 0;
}

.vrcc-contact-row strong {
	font-size: 13px;
	line-height: 1.25;
}

.vrcc-contact-row > span:not(.vrcc-contact-icon):not(.vrcc-socials) {
	min-width: 0;
	font-size: 12px;
	font-weight: 650;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.vrcc-contact-row small {
	color: var(--vrcc-muted);
	font-size: 10px;
	line-height: 1.3;
	text-align: right;
	white-space: nowrap;
}

.vrcc-contact-icon {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	color: var(--vrcc-navy);
}

.vrcc-contact-icon--whatsapp {
	color: #21b785;
}

.vrcc-contact-icon svg,
.vrcc-socials svg {
	display: block;
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vrcc-socials {
	display: flex;
	align-items: center;
	gap: 10px;
}

.vrcc-socials a {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid var(--vrcc-border);
	border-radius: 50%;
	color: var(--vrcc-navy);
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.vrcc-socials a:hover,
.vrcc-socials a:focus-visible {
	border-color: var(--vrcc-primary);
	color: var(--vrcc-primary);
	transform: translateY(-2px);
}

.vrcc-form-card {
	padding: 22px;
}

.vrcc-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 18px;
}

.vrcc-field {
	min-width: 0;
}

.vrcc-field--full {
	grid-column: 1 / -1;
}

.vrcc-field label {
	display: block;
	margin: 0 0 7px;
	color: var(--vrcc-muted);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.25;
}

.vrcc-field label span {
	color: #d64a4a;
}

.vrcc-field input,
.vrcc-field select,
.vrcc-field textarea {
	display: block;
	width: 100%;
	margin: 0;
	border: 1px solid var(--vrcc-border);
	border-radius: 9px;
	background: #fff;
	color: var(--vrcc-navy);
	box-shadow: none;
	font: inherit;
	font-size: 13px;
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.vrcc-field input,
.vrcc-field select {
	height: 44px;
	padding: 0 13px;
}

.vrcc-field textarea {
	min-height: 108px;
	padding: 12px 13px;
	resize: vertical;
}

.vrcc-field input:focus,
.vrcc-field select:focus,
.vrcc-field textarea:focus {
	border-color: var(--vrcc-primary);
	box-shadow: 0 0 0 3px rgba(41, 139, 253, .12);
}

.vrcc-consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	color: var(--vrcc-muted);
	font-size: 10px;
	line-height: 1.4;
}

.vrcc-consent input {
	flex: 0 0 auto;
	margin-top: 2px;
}

.vrcc-consent a {
	color: var(--vrcc-primary);
}

.vrcc-submit {
	display: inline-flex;
	width: 100%;
	height: 44px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 0 20px;
	border: 0;
	border-radius: 999px;
	background: var(--vrcc-navy);
	color: #fff;
	box-shadow: none;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: transform 180ms ease, filter 180ms ease;
}

.vrcc-submit svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vrcc-submit:hover,
.vrcc-submit:focus-visible {
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.vrcc-alert {
	margin: 0 0 16px;
	padding: 12px 14px;
	border-radius: 9px;
	font-size: 12px;
	line-height: 1.45;
}

.vrcc-alert--success {
	border: 1px solid #9bd4c2;
	background: #ecfaf5;
	color: #126c51;
}

.vrcc-alert--error {
	border: 1px solid #efb7b7;
	background: #fff3f3;
	color: #943535;
}

.vrcc-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 900px) {
	.vrcc-layout {
		grid-template-columns: 1fr;
	}

	.vrcc-contact-card {
		width: 100%;
	}
}

@media (max-width: 620px) {
	.vrcc-section {
		padding: 44px 16px 58px;
	}

	.vrcc-title {
		font-size: clamp(36px, 11vw, 50px);
	}

	.vrcc-contact-card {
		padding: 0 16px;
	}

	.vrcc-contact-row {
		grid-template-columns: 28px minmax(0, 1fr);
		gap: 8px 12px;
		padding: 15px 0;
	}

	.vrcc-contact-row strong,
	.vrcc-contact-row > span:not(.vrcc-contact-icon):not(.vrcc-socials),
	.vrcc-contact-row small,
	.vrcc-socials {
		grid-column: 2;
	}

	.vrcc-contact-row small {
		text-align: left;
	}

	.vrcc-form-card {
		padding: 18px;
	}

	.vrcc-form {
		grid-template-columns: 1fr;
	}

	.vrcc-field,
	.vrcc-field--full {
		grid-column: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vrcc-socials a,
	.vrcc-submit {
		transition: none;
	}
}

/* =========================================================
   V1.0.1 — CORRECTION DES PROPORTIONS ET DU RESPONSIVE
   ========================================================= */

.vrcc-section {
	width: 100vw !important;
	max-width: none !important;
	margin-right: calc(50% - 50vw) !important;
	margin-left: calc(50% - 50vw) !important;
	padding: clamp(54px, 5vw, 46px) clamp(20px, 4vw, 64px) clamp(64px, 6vw, 18px) !important;
}

.vrcc-inner {
	width: min(100%, 1440px) !important;
	max-width: 1440px !important;
	margin: 0 auto !important;
	padding: 0 !important;
}

.vrcc-heading {
	margin: 0 0 30px !important;
}

.vrcc-title {
	font-size: clamp(42px, 4vw, 62px) !important;
}

.vrcc-intro {
	font-size: 14px !important;
	line-height: 1.55 !important;
}

.vrcc-layout {
	grid-template-columns: minmax(380px, .82fr) minmax(0, 1.18fr) !important;
	align-items: stretch !important;
	gap: clamp(24px, 2.5vw, 38px) !important;
}

.vrcc-contact-card,
.vrcc-form-card {
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	margin: 0 !important;
}

.vrcc-contact-card {
	display: grid !important;
	grid-template-rows: repeat(4, 1fr) !important;
	align-self: stretch !important;
	padding: 0 24px !important;
}

.vrcc-contact-row {
	grid-template-columns: 32px 120px minmax(0, 1fr) auto !important;
	gap: 14px !important;
	min-height: 76px !important;
	padding: 14px 0 !important;
}

.vrcc-contact-row strong {
	font-size: 14px !important;
}

.vrcc-contact-row > span:not(.vrcc-contact-icon):not(.vrcc-socials) {
	font-size: 13px !important;
}

.vrcc-contact-row small {
	font-size: 11px !important;
}

.vrcc-form-card {
	padding: clamp(22px, 2vw, 30px) !important;
}

.vrcc-form {
	gap: 18px 20px !important;
}

.vrcc-field label {
	margin-bottom: 8px !important;
	font-size: 12px !important;
}

.vrcc-field input,
.vrcc-field select {
	height: 48px !important;
	padding: 0 14px !important;
	font-size: 14px !important;
}

.vrcc-field textarea {
	min-height: 124px !important;
	padding: 13px 14px !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
}

.vrcc-consent {
	display: grid !important;
	grid-template-columns: 18px minmax(0, 1fr) !important;
	align-items: start !important;
	gap: 10px !important;
	width: 100% !important;
	font-size: 11px !important;
	line-height: 1.45 !important;
}

.vrcc-consent input[type="checkbox"] {
	display: block !important;
	width: 16px !important;
	min-width: 16px !important;
	height: 16px !important;
	margin: 1px 0 0 !important;
	padding: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
	appearance: auto !important;
}

.vrcc-submit {
	height: 48px !important;
	min-height: 48px !important;
	font-size: 13px !important;
}

@media (max-width: 1000px) {
	.vrcc-layout {
		grid-template-columns: 1fr !important;
	}

	.vrcc-contact-card {
		height: auto !important;
		min-height: 0 !important;
	}
}

@media (max-width: 620px) {
	.vrcc-section {
		padding: 42px 16px 46px !important;
	}

	.vrcc-contact-card {
		display: block !important;
		padding: 0 18px !important;
	}

	.vrcc-contact-row {
		grid-template-columns: 30px minmax(0, 1fr) !important;
		gap: 8px 12px !important;
		min-height: 0 !important;
		padding: 16px 0 !important;
	}

	.vrcc-contact-row strong,
	.vrcc-contact-row > span:not(.vrcc-contact-icon):not(.vrcc-socials),
	.vrcc-contact-row small,
	.vrcc-socials {
		grid-column: 2 !important;
	}

	.vrcc-contact-row small {
		text-align: left !important;
	}

	.vrcc-form {
		grid-template-columns: 1fr !important;
	}

	.vrcc-field,
	.vrcc-field--full {
		grid-column: 1 !important;
	}
}
