/**
 * Maquette footer client — scope strict .new-footer (ne pas impacter l’ancien footer).
 */
.new-footer {
	--nf-bg: #0f1d2a;
	--nf-bg-deep: #0a141f;
	--nf-gold: #d4a017;
	--nf-gold-hover: #e6b32a;
	--nf-text: #ffffff;
	--nf-muted: rgba(255, 255, 255, 0.72);
	--nf-border: rgba(255, 255, 255, 0.12);
	--nf-font: "Work Sans", "Nunito", system-ui, -apple-system, sans-serif;
	background: var(--nf-bg);
	color: var(--nf-text);
	font-family: var(--nf-font);
	font-size: 15px;
	line-height: 1.55;
	margin-top: 0;
}

.new-footer a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.new-footer a:hover {
	color: var(--nf-gold);
}

.new-footer .nf-inner {
	max-width: 1140px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.new-footer .nf-kicker {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nf-gold);
	margin-bottom: 10px;
}

.new-footer .nf-divider {
	border: 0;
	border-top: 1px solid var(--nf-border);
	margin: 0;
}

/* Newsletter */
.new-footer .nf-newsletter {
	padding: 48px 0 40px;
	background: linear-gradient(180deg, var(--nf-bg-deep) 0%, var(--nf-bg) 100%);
}

.new-footer .nf-newsletter-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px 48px;
	align-items: center;
}

@media (max-width: 767px) {
	.new-footer .nf-newsletter-grid {
		grid-template-columns: 1fr;
	}
}

.new-footer .nf-newsletter h2 {
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 700;
	margin: 0 0 12px;
	line-height: 1.25;
	color: var(--nf-text);
}

.new-footer .nf-newsletter h2 .nf-accent {
	color: var(--nf-gold);
	font-weight: 700;
}

.new-footer .nf-newsletter p {
	margin: 0;
	color: var(--nf-muted);
	max-width: 520px;
	font-size: 14px;
}

.new-footer .nf-form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

@media (max-width: 767px) {
	.new-footer .nf-form-row {
		justify-content: stretch;
	}
}

.new-footer .nf-input {
	flex: 1 1 220px;
	min-width: 0;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid var(--nf-border);
	border-radius: 8px;
	padding: 14px 16px;
	color: var(--nf-text);
	font-size: 14px;
}

.new-footer .nf-input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.new-footer .nf-input:focus {
	outline: none;
	border-color: var(--nf-gold);
	box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.2);
}

.new-footer .nf-btn {
	position: relative;
	flex: 0 0 auto;
	background: var(--nf-gold);
	color: #0f1d2a;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 0;
	border-radius: 8px;
	padding: 14px 28px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
	min-width: 140px;
}

.new-footer .nf-btn:hover:not(:disabled) {
	background: var(--nf-gold-hover);
	color: #0a141f;
}

.new-footer .nf-btn:disabled {
	opacity: 0.85;
	cursor: wait;
}

.new-footer .nf-btn .nf-btn-spinner {
	display: none;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	line-height: 0;
}

/* Anneau animé dans le bouton (pas de dépendance Font Awesome) */
.new-footer .nf-btn-spin-ring {
	display: block;
	width: 22px;
	height: 22px;
	box-sizing: border-box;
	border: 2px solid rgba(15, 29, 42, 0.22);
	border-top-color: #0f1d2a;
	border-radius: 50%;
	animation: nf-btn-spin 0.7s linear infinite;
}

@keyframes nf-btn-spin {
	to {
		transform: rotate(360deg);
	}
}

.new-footer .nf-btn.is-loading .nf-btn-label {
	visibility: hidden;
}

.new-footer .nf-btn.is-loading .nf-btn-spinner {
	display: block;
}

.new-footer .nf-newsletter-form-inner {
	width: 100%;
}

.new-footer .nf-form-row--stack {
	width: 100%;
}

/* Champ + bouton + message (succès / erreur) alignés sur la même largeur ; texte centré sous la ligne */
.new-footer .nf-newsletter-email-block {
	width: 100%;
}

.new-footer .nf-newsletter-email-block .nf-newsletter-msg {
	margin-top: 10px;
	margin-bottom: 0;
	text-align: center;
}

.new-footer .nf-newsletter-consent {
	margin-top: 14px;
}

.new-footer .nf-consent-label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 12px;
	line-height: 1.45;
	color: var(--nf-muted);
	cursor: pointer;
	max-width: 520px;
}

.new-footer .nf-consent-label input {
	margin-top: 3px;
	flex-shrink: 0;
}

.new-footer .nf-consent-label a {
	color: var(--nf-gold);
	text-decoration: underline;
}

.new-footer .nf-newsletter-msg {
	margin: 12px 0 0;
	font-size: 13px;
	min-height: 1.25em;
}

.new-footer .nf-newsletter-msg.is-success {
	color: #9ee5a8;
}

.new-footer .nf-newsletter-msg.is-error {
	color: #ffb4b4;
}

/* Colonnes principales */
.new-footer .nf-main {
	padding: 44px 0 36px;
}

.new-footer .nf-cols {
	display: grid;
	grid-template-columns: minmax(200px, 1.35fr) minmax(280px, 1.05fr) minmax(200px, 1.1fr);
	gap: 32px 36px;
	align-items: start;
}

/* Destinations | Services côte à côte (comme maquette client) */
.new-footer .nf-dest-svc {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: clamp(20px, 4vw, 40px);
	row-gap: 0;
	align-items: start;
}

.new-footer .nf-dest-svc-col {
	min-width: 0;
	text-align: left;
	display: block;
	width: 100%;
}

@media (max-width: 991px) {
	.new-footer .nf-cols {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

@media (max-width: 480px) {
	.new-footer .nf-dest-svc {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

.new-footer .nf-col-title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nf-gold);
	margin: 0 0 18px;
}

.new-footer .nf-brand-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.new-footer .nf-brand-mark-wide {
	display: inline-block;
	line-height: 0;
	flex-shrink: 0;
}

.new-footer .nf-brand-mark-wide img {
	display: block;
	max-height: 64px;
	width: auto;
	max-width: min(280px, 100%);
	height: auto;
	object-fit: contain;
}

.new-footer .nf-brand-mark-wide:hover img {
	opacity: 0.92;
}

.new-footer .nf-logo-ring {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 2px solid var(--nf-gold);
	overflow: hidden;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
}

.new-footer .nf-logo-ring img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
}

.new-footer .nf-brand-name {
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.new-footer .nf-desc {
	margin: 0;
	color: var(--nf-muted);
	font-size: 14px;
	line-height: 1.65;
}

.new-footer .nf-social {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.new-footer .nf-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--nf-border);
	color: var(--nf-text);
	font-size: 15px;
}

.new-footer .nf-social a:hover {
	border-color: var(--nf-gold);
	color: var(--nf-gold);
}

.new-footer .nf-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
	width: 100%;
	column-count: 1 !important;
	columns: auto !important;
}

.new-footer .nf-links li {
	display: block !important;
	width: 100% !important;
	max-width: 100%;
	float: none !important;
	clear: both;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.new-footer .nf-links a {
	color: var(--nf-muted);
	font-size: 14px;
}

.new-footer .nf-links a:hover {
	color: var(--nf-gold);
}

.new-footer .nf-contact-block {
	margin-bottom: 16px;
}

.new-footer .nf-label-sm {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nf-gold);
	margin-bottom: 4px;
}

.new-footer .nf-contact-block p {
	margin: 0;
	color: var(--nf-muted);
	font-size: 14px;
}

/* Barre bas */
.new-footer .nf-bottom {
	padding: 20px 0 28px;
	border-top: 1px solid var(--nf-border);
}

.new-footer .nf-bottom-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	font-size: 13px;
	color: var(--nf-muted);
}

.new-footer .nf-bottom-copy {
	max-width: 100%;
}

.new-footer .nf-powered {
	color: var(--nf-muted);
}

.new-footer .nf-powered a {
	color: var(--nf-gold);
	text-decoration: underline;
}

.new-footer .nf-powered a:hover {
	color: var(--nf-gold-hover);
}

.new-footer .nf-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 22px;
}

.new-footer .nf-legal a {
	color: var(--nf-muted);
}

.new-footer .nf-legal a:hover {
	color: var(--nf-gold);
}
