/*!
Theme Name: Nutriflow
Author: DesignHammer, LLC
Author URI: https://designhammer.com
Description: Nutriflow WordPress theme - Replicated from Canva design
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: nutriflow

Nutriflow is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* ============================================
   Custom Font - Sergio Trendy
   ============================================ */
@font-face {
	font-family: 'Sergio Trendy';
	src: url('./assets/fonts/sergio-trendy.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0020, U+0030-0039, U+0041-005A, U+0061-007A; /* Space, numbers, A-Z, a-z only */
}

/* ============================================
   Color Palette - Matching Canva Design
   ============================================ */
:root {
	--nf-dark-blue: #031dc2;
	--nf-light-green: #C4FF00;
	--nf-cream: #FDF8F3;
	--nf-light-bg: #FDF8F3;
	--nf-text-dark: #1A1A1A;
	--nf-text-gray: #333333;
	--nf-white: #FFFFFF;
	--font-title: 'Sergio Trendy', 'Abril Fatface', 'Playfair Display', Georgia, serif; /* SWITCH FONT: Remove 'Sergio Trendy' to use Abril Fatface */
	--font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ============================================
   Base Styles
   ============================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--nf-dark-blue);
	background-color: var(--nf-cream);
	line-height: 1.6;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
}

/* Règle générale : tous les textes par défaut sur fond cream sont en blue navy */
body {
	color: var(--nf-dark-blue);
}

/* Sections avec fond cream - s'assurer que tous les textes sont en blue navy */
.nf-hero,
.nf-consultation,
.nf-consultation__content,
.nf-service-card,
.nf-testimonials,
.nf-pricing,
.nf-sportif__card,
.nf-location,
.nf-location__content,
.nf-apropos-intro,
.nf-apropos-sport,
.nf-contact,
.nf-contact__content {
	color: var(--nf-dark-blue);
}

/* Champs WYSIWYG et contenus dans les sections cream - tous en blue navy */
.nf-hero p,
.nf-hero ul,
.nf-hero li,
.nf-hero *,
.nf-consultation p,
.nf-consultation ul,
.nf-consultation li,
.nf-consultation *,
.nf-consultation__text,
.nf-consultation__text *,
.nf-service-card p,
.nf-service-card ul,
.nf-service-card li,
.nf-service-card *,
.nf-service-card__description,
.nf-service-card__description *,
.nf-testimonials p,
.nf-testimonials ul,
.nf-testimonials li,
.nf-testimonials *,
.nf-pricing p,
.nf-pricing ul,
.nf-pricing li,
.nf-pricing *,
.nf-sportif__card p,
.nf-sportif__card ul,
.nf-sportif__card li,
.nf-sportif__card *,
.nf-sportif__content,
.nf-sportif__content *,
.nf-location p,
.nf-location ul,
.nf-location li,
.nf-location *:not(.nf-location__social):not(.nf-location__social *),
.nf-location__info,
.nf-location__info *,
.nf-apropos-intro p,
.nf-apropos-intro ul,
.nf-apropos-intro li,
.nf-apropos-intro *,
.nf-apropos-intro__text,
.nf-apropos-intro__text *,
.nf-apropos-sport p,
.nf-apropos-sport ul,
.nf-apropos-sport li,
.nf-apropos-sport *,
.nf-apropos-sport__content,
.nf-apropos-sport__content *,
.nf-contact p,
.nf-contact ul,
.nf-contact li,
.nf-contact * {
	color: var(--nf-dark-blue);
}

/* Exception : les boutons bleus conservent leur texte blanc (après les règles générales) */
.nf-btn--primary,
.nf-btn--primary * {
	color: var(--nf-white) !important;
}

/* Au hover, le texte du bouton bleu devient bleu */
.nf-btn--primary:hover,
.nf-btn--primary:hover * {
	color: var(--nf-dark-blue) !important;
}

/* Override pour les sections avec fond dark-blue qui doivent avoir du texte blanc/vert */
.nf-about,
.nf-services,
.nf-apropos-story {
	color: var(--nf-white);
}

.nf-about *,
.nf-services *,
.nf-apropos-story * {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
	background: var(--nf-dark-blue);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	overflow-x: hidden;
	overflow-y: visible;
}

.header-container {
	padding: 1.25rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3rem;
	position: relative;
	max-width: 100%;
	overflow-x: hidden;
	min-height: 70px;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-title {
	font-size: 1rem;
	font-weight: 400;
	color: var(--nf-white);
	margin: 0;
	letter-spacing: 0.02em;
}

.site-title strong {
	font-weight: 700;
}

#site-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.site-logo {
	display: flex;
	align-items: center;
	position: relative;
	left: auto;
	z-index: 101;
	flex-shrink: 0;
}

.site-logo a {
	display: flex;
	align-items: center;
	line-height: 0;
}

.site-logo img {
	height: 50px;
	width: auto;
	display: block;
}

.site-logo a:hover img {
	opacity: 0.9;
}

#primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2.5rem;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
}

#primary-menu a {
	color: var(--nf-white);
	font-weight: 400;
	font-size: 1rem;
	transition: opacity 0.2s;
	letter-spacing: 0.01em;
}

#primary-menu a:hover {
	opacity: 0.8;
	text-decoration: none;
}

#primary-menu a.current-page {
	font-weight: 700;
	text-underline-offset: 4px;
}

.menu-button {
	display: none;
}

/* Mobile nav toggle (phones) */
.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 10px;
	background: transparent;
	color: var(--nf-white);
	padding: 0.55rem 0.8rem;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	flex-shrink: 0;
	margin-left: auto;
}

.menu-toggle:focus-visible {
	outline: 2px solid var(--nf-white);
	outline-offset: 2px;
}

.menu-toggle__bars {
	display: inline-flex;
	flex-direction: column;
	gap: 5px;
}

.menu-toggle__bars span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--nf-white);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

body.mobile-nav-open .menu-toggle__bars span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.mobile-nav-open .menu-toggle__bars span:nth-child(2) {
	opacity: 0;
}

body.mobile-nav-open .menu-toggle__bars span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.nf-hero {
	padding: 4rem 2rem;
	background: var(--nf-cream);
	width: 100%;
	overflow-x: hidden;
}

.nf-hero__wrapper {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	width: 100%;
}

.nf-hero__content {
	max-width: 600px;
	text-align: center;
	position: relative;
	padding-top: 8rem;
	width: 100%;
	margin-left: 3rem;
}

.nf-logo {
	position: absolute;
	top: -3rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

@media (max-width: 768px) {
	.nf-logo {
		top: -2rem;
		left: 50%;
		transform: translateX(-50%);
	}
}

.nf-logo__image {
	width: 140px;
	height: auto;
	max-width: 100%;
}

.nf-hero__title {
	font-family: var(--font-title);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	color: var(--nf-dark-blue);
	margin: 0.5rem 0;
	line-height: 1.1;
	letter-spacing: -0.02em;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.nf-hero__subtitle {
	font-family: var(--font-title);
	font-size: clamp(1.4rem, 2.5vw, 1.75rem);
	color: var(--nf-dark-blue);
	margin: 0 0 2.5rem;
	font-weight: 400;
	white-space: normal;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.nf-hero__description {
	font-size: 1.15rem;
	color: var(--nf-dark-blue);
	margin: 0 0 5rem;
	line-height: 1.6;
	font-family: var(--font-body);
}

.nf-hero__media {
	display: flex;
	justify-content: flex-end;
}

.nf-hero__media img {
	border-radius: 16px;
	width: 85%;
	max-width: 380px;
	height: auto;
	object-fit: cover;
}

/* ============================================
   Buttons
   ============================================ */
.nf-btn {
	display: inline-block;
	padding: 0.85rem 2rem;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.8rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.nf-btn--primary {
	background-color: var(--nf-dark-blue);
	color: var(--nf-white);
	padding: 1.2rem 3rem;
	font-size: 1rem;
	border-radius: 30px;
	border: 1px solid var(--nf-dark-blue);
	transition: all 0.3s ease;
}

.nf-btn--primary:hover {
	background-color: var(--nf-light-green);
	color: var(--nf-dark-blue);
	border-color: var(--nf-dark-blue);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(196, 255, 0, 0.4);
}

/* ============================================
   About Section - "Qui suis-je ?"
   ============================================ */
.nf-about {
	padding: 0;
	background: var(--nf-dark-blue);
}

.nf-about__wrapper {
	max-width: 100%;
	margin: 0;
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 0;
	align-items: stretch;
}

.nf-about__image {
	display: flex;
}

.nf-about__image img {
	border-radius: 0;
	width: 100%;
	height: 100%;
	min-height: 550px;
	max-height: 650px;
	object-fit: cover;
}

.nf-about__content {
	background-color: transparent;
	padding: 3rem 5rem 7rem;
	border-radius: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 550px;
	width: 100%;
}

.nf-about__title {
	font-family: var(--font-title);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	color: var(--nf-light-green);
	text-align: center;
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	margin: 0 0 2rem;
	padding: 2rem 2rem 0;
}

.nf-about__text {
	color: var(--nf-white);
	font-size: 0.95rem;
	line-height: 1.8;
	margin-top: 1rem;
	margin-bottom: 3rem;
}

.nf-about__text p {
	margin: 0;
}

.nf-about__text--left {
	text-align: left;
	margin-bottom: 3rem !important;
}

.nf-about__text--right {
	text-align: right;
}

.nf-about__text strong {
	font-weight: 700;
}

.nf-about__circles {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 50px;
	z-index: 1;
}

.nf-about__circle {
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.nf-about__circle--white {
	background: var(--nf-white);
	left: 0;
	top: 0;
}

.nf-about__circle--green {
	background: var(--nf-light-green);
	right: 0;
	top: 0;
}

/* ============================================
   Consultation Section
   ============================================ */
.nf-consultation {
	padding: 0;
	background: var(--nf-cream);
}

.nf-consultation__wrapper {
	max-width: 100%;
	margin: 0;
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 0;
	align-items: stretch;
}

.nf-consultation__content {
	background: var(--nf-cream);
	padding: 4rem 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	min-height: 500px;
	width: 100%;
}

.nf-consultation__title {
	font-family: var(--font-title);
	font-size: clamp(2.2rem, 4vw, 3rem);
	font-weight: 400;
	color: var(--nf-dark-blue);
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	margin: 0 0 2rem;
	padding: 0;
}

.nf-consultation__text {
	font-size: 0.9rem;
	color: var(--nf-dark-blue);
	line-height: 1.7;
	margin: 0 0 1rem;
	font-family: var(--font-body);
}

.nf-consultation__text strong {
	color: var(--nf-dark-blue);
	font-weight: 700;
}

.nf-consultation__content .nf-btn {
	margin-top: 5rem;
	padding: 1rem 2rem;
	font-size: 0.85rem;
	max-width: fit-content;
	align-self: center;
}

.nf-consultation__image {
	display: flex;
	min-height: 450px;
	overflow: hidden;
}

.nf-consultation__image img {
	border-radius: 0;
	width: 100%;
	height: 100%;
	max-height: 750px;
	object-fit: cover;
	object-position: center center;
}

/* ============================================
   Services Section
   ============================================ */
.nf-services {
	padding: 4rem 2rem 6rem;
	background-color: var(--nf-dark-blue);
	position: relative;
	overflow: visible;
}

.nf-services__heading {
	font-family: var(--font-title);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 400;
	color: var(--nf-light-green);
	text-align: center;
	margin: 0 0 3rem;
}

.nf-services__grid {
	max-width: 900px;
	margin: 0 auto 2rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	perspective: 1000px;
	overflow: visible;
}

.nf-service-card {
	background: var(--nf-cream);
	padding: 2rem;
	border-radius: 16px;
	text-align: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 1.6s ease 0.5s;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	transform: rotateY(180deg) translateY(100px);
}

.nf-service-card.nf-animate-ready {
	transform: rotateY(180deg) translateY(100px);
}

.nf-service-card.visible {
	transform: rotateY(0deg) translateX(0) translateY(0) !important;
}

.nf-service-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--nf-cream);
	background-image: url('./logo-nutriflow.jpg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 16px;
	backface-visibility: hidden;
	transform: rotateY(180deg);
	z-index: 2;
}

.nf-service-card__title,
.nf-service-card__description {
	position: relative;
	z-index: 1;
	backface-visibility: hidden;
	transform: rotateY(0deg);
}

.nf-service-card__title {
	font-family: var(--font-body);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--nf-dark-blue);
	margin: 0 0 0.75rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--nf-light-green);
	display: block;
	width: 100%;
	text-align: center;
}

.nf-service-card__description {
	font-size: 0.85rem;
	color: var(--nf-dark-blue);
	line-height: 1.6;
	margin: 0 auto;
	max-width: 80%;
	text-align: center;
}

.nf-service-card__description * {
	color: var(--nf-dark-blue);
}

/* ============================================
   Testimonials Section
   ============================================ */
.nf-testimonials {
	padding: 4rem 2rem;
	background: var(--nf-cream);
	position: relative;
}

.nf-testimonials__heading {
	font-family: var(--font-title);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 400;
	color: var(--nf-dark-blue);
	text-align: center;
	margin: 0 0 3rem;
	position: relative;
}

.nf-testimonials__slider-wrapper {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.nf-testimonials__slider-wrapper > .nf-testimonials__quote-mark {
	display: block;
	font-size: 5rem;
	font-weight: 700;
	color: var(--nf-dark-blue);
	line-height: 1;
	font-family: var(--font-title);
	margin-bottom: 1rem;
	text-align: center;
	position: relative;
	z-index: 10;
}

.nf-testimonials__slider {
	position: relative;
	width: 100%;
	min-height: 250px;
	overflow: hidden;
}

.nf-testimonials__slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/* transform et opacity sont gérés par JavaScript */
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
	opacity: 0;
}

.nf-testimonials__slide.active {
	/* transform est géré par JavaScript via style inline */
	opacity: 1;
}

.nf-testimonials__slide.exiting {
	/* La transformation est gérée dynamiquement par JavaScript */
}

.nf-testimonials__quote {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	text-align: center;
}

/* Style pour les guillemets à l'intérieur des slides (maintenant retirés, mais gardé pour compatibilité) */
.nf-testimonials__quote .nf-testimonials__quote-mark {
	display: none;
}

.nf-testimonials__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
}

.nf-testimonials__prev,
.nf-testimonials__next {
	background: transparent;
	border: 2px solid var(--nf-dark-blue);
	color: var(--nf-dark-blue);
	font-size: 2rem;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	line-height: 1;
	padding: 0;
}

.nf-testimonials__prev:hover,
.nf-testimonials__next:hover {
	background: var(--nf-dark-blue);
	color: var(--nf-white);
}

.nf-testimonial {
	margin: 0;
	padding: 0;
	border: none;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.nf-testimonial__text {
	font-size: 1rem;
	line-height: 1.7;
	margin: 0 0 2rem;
	color: var(--nf-dark-blue);
	text-align: center !important;
	font-style: italic !important;
}

.nf-testimonial__text * {
	text-align: center !important;
	font-style: italic !important;
}

.nf-testimonial__text p {
	font-size: 1rem;
	line-height: 1.7;
	margin: 0 0 1rem;
	color: var(--nf-dark-blue);
	font-style: italic !important;
	text-align: center !important;
}

.nf-testimonial__text p:last-child {
	margin-bottom: 0;
}

.nf-testimonials__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
}

.nf-testimonials__prev,
.nf-testimonials__next {
	background: transparent;
	border: 2px solid var(--nf-dark-blue);
	color: var(--nf-dark-blue);
	font-size: 2rem;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	line-height: 1;
	padding: 0;
}

.nf-testimonials__prev:hover,
.nf-testimonials__next:hover {
	background: var(--nf-dark-blue);
	color: var(--nf-white);
}

.nf-testimonial p {
	font-size: 1rem;
	line-height: 1.7;
	margin: 0 0 2rem;
	color: var(--nf-dark-blue);
	text-align: center !important;
	font-style: italic !important;
}

.nf-testimonial cite {
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--nf-dark-blue);
	font-style: normal;
	text-align: center;
	margin-top: 2rem;
}


/* ============================================
   Footer
   ============================================ */
.site-footer {
	background-color: var(--nf-dark-blue);
	color: var(--nf-white);
	padding: 3rem 2rem;
}

.site-footer .site-info {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.site-footer .site-branding {
	margin: 0;
}

.site-footer .site-title {
	color: var(--nf-light-green);
	font-family: var(--font-title);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
}

.nf-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-navigation {
	padding-top: 4.5rem;
}

.nf-footer__cta {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	padding-top: 4.5rem;
}

.nf-footer__contact p {
	margin: 0;
	color: var(--nf-white);
	font-size: 0.95rem;
	line-height: 1.5;
}

.nf-footer__contact a {
	color: var(--nf-white);
}

.nf-footer__contact a:hover {
	color: var(--nf-light-green);
}

.footer-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-navigation a {
	color: var(--nf-white);
	font-weight: 400;
	font-size: 0.95rem;
}

.footer-navigation a:hover {
	color: var(--nf-light-green);
}


.nf-btn--footer {
	background-color: var(--nf-light-green);
	color: var(--nf-dark-blue);
	padding: 1.2rem 3rem;
	font-size: 1rem;
	border-radius: 30px;
	transition: all 0.3s ease;
}

.nf-btn--footer:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(196, 255, 0, 0.3);
}

.nf-footer__social {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.nf-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 2px solid var(--nf-light-green);
	border-radius: 12px;
	color: var(--nf-light-green);
	transition: all 0.3s ease;
}

.nf-footer__social a svg {
	width: 28px;
	height: 28px;
	stroke: currentColor;
}

.nf-footer__social a:hover {
	background-color: var(--nf-light-green);
	color: var(--nf-dark-blue);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(196, 255, 0, 0.3);
}

.site-footer__signature {
	text-align: center;
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__signature p {
	margin: 0;
	color: var(--nf-white);
	font-size: 0.85rem;
	opacity: 0.7;
}

.site-footer__signature a {
	color: var(--nf-white);
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.site-footer__signature a:hover {
	opacity: 1;
	color: var(--nf-light-green);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
	.nf-hero__wrapper,
	.nf-consultation__wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.nf-hero__content {
		order: 1;
		padding-top: 4rem;
		max-width: 100%;
		margin-left: 0;
	}
	
	.nf-hero__media {
		order: 2;
		justify-content: center;
	}

	.nf-about__wrapper {
		grid-template-columns: 1fr;
	}

	.nf-about__image img {
		min-height: 350px;
	}

	.nf-about__content {
		padding: 3rem 2rem 6rem;
		min-height: auto;
	}

	.nf-about__title {
		padding: 2rem 2rem 0;
		margin-bottom: 1.5rem;
	}

	.nf-about__circles {
		left: 50%;
		transform: translateX(-50%);
		bottom: 1.5rem;
	}

	.nf-services__grid {
		grid-template-columns: 1fr;
	}

	.site-footer .site-info {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.site-footer__brand {
		align-items: center;
		text-align: center;
	}
	
	.site-footer .site-branding {
		text-align: center;
	}
	
	.nf-footer__contact {
		margin-top: 2rem;
		text-align: center;
		align-items: center;
	}

	.nf-footer__cta {
		align-items: center;
		padding-top: 0;
	}

	.nf-footer__social {
		justify-content: center;
	}
	
	.footer-navigation {
		margin-top: 1rem;
		padding-top: 0;
		text-align: center;
	}
	
	.footer-navigation ul {
		align-items: center;
	}

	#site-navigation {
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.site-logo {
		position: relative;
		left: auto;
		margin-right: auto;
		max-width: none;
	}

	.site-logo img {
		height: 45px;
	}

	#primary-menu {
		gap: 1.5rem;
		flex-wrap: wrap;
	}

	.nf-consultation__content {
		padding: 3rem 2rem;
		min-height: auto;
	}

	.nf-consultation__title {
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 768px) {
	.header-container {
		padding: 1rem 0 1rem 1.25rem;
		flex-wrap: nowrap;
		gap: 1rem;
		justify-content: flex-start;
		align-items: center;
		min-height: 60px;
		max-height: 60px;
		overflow: visible;
		position: relative;
	}
	
	#site-navigation {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}
	
	.menu-toggle {
		display: inline-flex;
		position: absolute;
		right: 1.25rem;
		top: 50%;
		transform: translateY(-50%);
		flex-shrink: 0;
		margin: 0;
		z-index: 102;
	}
	
	#primary-menu {
		margin-left: auto;
		justify-content: flex-end;
	}

	.site-logo {
		position: relative;
		left: 0;
		margin-right: auto;
		max-width: none;
		flex-shrink: 0;
		display: flex;
		align-items: center;
		z-index: 1;
	}

	#site-navigation .site-logo {
		display: flex;
	}

	.site-branding {
		width: auto;
		margin-bottom: 0;
	}

	#site-navigation {
		position: static;
		width: auto;
		order: 0;
		margin-top: 0;
		flex: 0 0 auto;
	}

	#site-navigation .site-logo {
		display: flex;
	}

	.site-logo img {
		height: 40px;
		max-width: 100%;
		display: block;
	}

	#primary-menu {
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		width: 100%;
		margin: 0;
		padding: 1rem 0;
		background: var(--nf-dark-blue);
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
		z-index: 99;
		max-height: calc(100vh - 60px);
		overflow-y: auto;
	}

	#primary-menu li {
		width: 100%;
	}

	#primary-menu a {
		display: block;
		width: 100%;
		padding: 0.75rem 1.25rem;
		white-space: nowrap;
	}

	body.mobile-nav-open #primary-menu {
		display: flex;
	}

	.nf-hero,
	.nf-consultation,
	.nf-services,
	.nf-testimonials {
		padding: 2rem 1rem 4rem;
	}

	.nf-hero__content {
		padding-top: 6rem;
		padding-left: 0;
		padding-right: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 0 auto;
		margin-left: 0;
	}

	.nf-hero__wrapper {
		gap: 2rem;
		padding: 0;
	}
	
	.nf-logo {
		position: absolute;
		top: -2rem;
		left: 50%;
		transform: translateX(-50%);
	}

	.nf-about__content {
		padding: 2rem 1.5rem 5.5rem;
		min-height: auto;
	}

	.nf-about__title {
		padding: 1.5rem 1.5rem 0;
		margin-bottom: 1rem;
		font-size: clamp(1.5rem, 5vw, 2rem);
	}

	.nf-about__circles {
		left: 50%;
		transform: translateX(-50%);
		bottom: 1.5rem;
	}

	.nf-about__image img {
		min-height: 280px;
	}

	.nf-about__text p:last-child {
		text-align: left;
	}

	.nf-testimonials__slider-wrapper > .nf-testimonials__quote-mark {
		font-size: 4rem;
		margin-bottom: 0.75rem;
	}
	
	.nf-testimonials__quote .nf-testimonials__quote-mark {
		display: none;
	}

	.nf-logo__image {
		width: 100px;
		max-width: calc(100vw - 2rem);
	}

	.nf-hero__subtitle {
		font-size: clamp(1rem, 3vw, 1.4rem);
		white-space: normal;
	}

	.nf-consultation__content {
		padding: 2rem 1.5rem;
		min-height: auto;
	}
	
	.nf-consultation__image {
		padding: 1rem;
	}
	
	.nf-consultation__image img {
		max-width: 300px;
		height: 100%;
		max-height: none;
		margin-top: 0;
		margin-bottom: 0;
	}

	.nf-consultation__title {
		margin-bottom: 1.5rem;
		font-size: clamp(1.8rem, 5vw, 2.2rem);
	}
	
	.nf-services__grid {
		align-items: start;
	}
	
	.nf-service-card__description {
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
	}

	.nf-hero__description {
		font-size: 1rem;
		margin-bottom: 3rem;
	}
	
	.site-footer .site-info {
		text-align: center;
	}
	
	.site-footer__brand {
		align-items: center;
		text-align: center;
	}
	
	.site-footer .site-branding {
		text-align: center;
	}
	
	.nf-footer__contact {
		text-align: center;
		align-items: center;
	}

	.nf-footer__cta {
		align-items: center;
		padding-top: 0;
	}
	
	.nf-footer__social {
		justify-content: center;
	}
	
	.footer-navigation {
		margin-top: 1rem;
		padding-top: 0;
		text-align: center;
	}
	
	.footer-navigation ul {
		align-items: center;
	}
}

@media (max-width: 480px) {
	.header-container {
		padding: 0.75rem 1rem;
		min-height: 55px;
	}

	.site-logo img {
		height: 35px;
	}

	.menu-toggle {
		padding: 0.5rem 0.7rem;
		font-size: 0.85rem;
	}

	#primary-menu {
		gap: 0.5rem;
		font-size: 0.8rem;
	}

	#primary-menu a {
		padding: 0.4rem 0.5rem;
	}

	.nf-hero,
	.nf-consultation,
	.nf-services,
	.nf-testimonials {
		padding: 1.5rem 0.75rem 3.5rem;
	}
	
	.nf-testimonials__controls {
		gap: 1.5rem;
		margin-top: 1.5rem;
	}
	
	.nf-testimonials__prev,
	.nf-testimonials__next {
		width: 40px;
		height: 40px;
		font-size: 1.75rem;
	}
	

	.nf-hero__content {
		padding-top: 5rem;
	}

	.nf-logo {
		top: -1rem;
		left: 50%;
		transform: translateX(-50%);
	}

	.nf-logo__image {
		width: 80px;
	}

	.nf-hero__title {
		font-size: clamp(1.5rem, 6vw, 2rem);
	}

	.nf-hero__subtitle {
		font-size: clamp(0.9rem, 4vw, 1.2rem);
		margin-bottom: 1.5rem;
	}

	.nf-hero__description {
		font-size: 0.95rem;
		margin-bottom: 2rem;
	}

	.nf-about__content {
		padding: 1.5rem 1rem 5rem;
	}

	.nf-about__title {
		padding: 1rem 1rem 0;
		font-size: clamp(1.3rem, 6vw, 1.8rem);
	}

	.nf-about__circles {
		left: 50%;
		transform: translateX(-50%);
		bottom: 1rem;
	}

	.nf-consultation__content {
		padding: 1.5rem 1rem;
	}

	.nf-consultation__title {
		font-size: clamp(1.5rem, 6vw, 2rem);
	}
	
	.site-footer .site-info {
		text-align: center;
	}
	
	.site-footer__brand {
		align-items: center;
		text-align: center;
	}
	
	.site-footer .site-branding {
		text-align: center;
	}
	
	.nf-footer__contact {
		text-align: center;
		align-items: center;
	}
	
	.nf-footer__cta {
		align-items: center;
		padding-top: 0;
	}
	
	.nf-footer__social {
		justify-content: center;
	}
	
	.footer-navigation {
		margin-top: 1rem;
		padding-top: 0;
		text-align: center;
	}
	
	.footer-navigation ul {
		align-items: center;
	}
}

/* ============================================
   Front Page Specific
   ============================================ */
.nf-front-page {
	width: 100%;
	overflow-x: hidden;
	max-width: 100vw;
}

.nf-front-page > section {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

/* ============================================
   Accompagnement Page
   ============================================ */
.nf-accompagnement-page {
	width: 100%;
}

/* Hero Section with Background */
.nf-accomp-hero {
	padding: 5rem 2rem;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 600px;
}

.nf-accomp-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.nf-accomp-hero__title {
	font-family: var(--font-title);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 400;
	color: var(--nf-white);
	text-align: center;
	margin: 0 0 3rem;
	position: relative;
	z-index: 2;
}

.nf-accomp-hero__grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	position: relative;
	z-index: 2;
}

.nf-accomp-card--filled {
	background: var(--nf-dark-blue);
	padding: 2rem 2.5rem;
	border-radius: 20px;
	text-align: center;
}

.nf-accomp-card--filled .nf-accomp-card__title {
	font-family: var(--font-body);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--nf-white);
	margin: 0 0 1rem;
}

.nf-accomp-card--filled .nf-accomp-card__description {
	font-size: 1rem;
	color: var(--nf-white);
	line-height: 1.6;
	margin: 0;
	opacity: 0.9;
}

/* Pricing Section - "Comment ?" */
.nf-pricing {
	padding: 5rem 2rem;
	background: var(--nf-cream);
}

.nf-pricing__title {
	font-family: var(--font-title);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	color: var(--nf-dark-blue);
	text-align: center;
	margin: 0 0 1rem;
}

.nf-pricing__title::after {
	content: '';
	display: block;
	width: 100px;
	height: 4px;
	background: var(--nf-light-green);
	margin: 0.5rem auto 3rem;
}

.nf-pricing__grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	align-items: start;
	perspective: 1000px;
}

.nf-pricing-card {
	background: transparent;
	border: 3px solid var(--nf-dark-blue);
	border-radius: 20px;
	padding: 2rem;
	text-align: left;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 1.6s ease 0.5s;
	height: 100%;
	display: flex;
	flex-direction: column;
	transform: rotateY(180deg) translateY(100px);
}

.nf-pricing-card.nf-animate-ready {
	transform: rotateY(180deg) translateY(100px);
}

.nf-pricing-card.visible {
	transform: rotateY(0deg) translateX(0) translateY(0) !important;
}

.nf-pricing-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--nf-dark-blue);
	background-image: url('./logo-nutriflow-blue-navy.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: 3px solid var(--nf-dark-blue);
	border-radius: 20px;
	backface-visibility: hidden;
	transform: rotateY(180deg);
	z-index: 2;
}

.nf-pricing-card__title,
.nf-pricing-card__price,
.nf-pricing-card__list {
	position: relative;
	z-index: 1;
	backface-visibility: hidden;
	transform: rotateY(0deg);
}

.nf-pricing-card__title {
	font-family: var(--font-title);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--nf-dark-blue);
	margin: 0 0 0.5rem;
}

.nf-pricing-card__price {
	font-family: var(--font-title);
	font-size: 1.2rem;
	font-style: italic;
	color: var(--nf-dark-blue);
	margin: 0 0 1.5rem;
}

.nf-pricing-card__price del {
	opacity: 0.6;
}

.nf-pricing-card__list {
	list-style: disc;
	margin: 0;
	padding-left: 1.5rem;
	color: var(--nf-dark-blue);
}

.nf-pricing-card__list li {
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

.nf-pricing-card__list strong {
	font-weight: 700;
}

/* Reverse flip for last 2 pricing cards */
.nf-pricing-card--flip-reverse {
	transform: rotateY(-180deg) translateY(100px);
}

.nf-pricing-card--flip-reverse.nf-animate-ready {
	transform: rotateY(-180deg) translateY(100px);
}

.nf-pricing-card--flip-reverse.visible {
	transform: rotateY(0deg) translateX(0) translateY(0) !important;
}

.nf-pricing-card--flip-reverse::after {
	transform: rotateY(-180deg);
}

/* Nutrition du Sportif Section */
.nf-sportif {
	padding: 5rem 2rem;
	background: var(--nf-dark-blue);
	position: relative;
}

.nf-sportif__title {
	font-family: var(--font-title);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--nf-light-green);
	text-align: center;
	margin: 0 0 3rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.nf-sportif__wrapper {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 2rem;
	position: relative;
}

.nf-sportif__card {
	background: var(--nf-cream);
	border-radius: 20px;
	padding: 2.5rem;
	max-width: 400px;
}

.nf-sportif__card-title {
	font-family: var(--font-title);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--nf-dark-blue);
	margin: 0 0 1.5rem;
}

.nf-sportif__content {
	color: var(--nf-dark-blue);
}

.nf-sportif__content p,
.nf-sportif__content ul,
.nf-sportif__content li,
.nf-sportif__content * {
	color: var(--nf-dark-blue);
}

.nf-sportif__list {
	list-style: disc;
	margin: 0;
	padding-left: 1.5rem;
	color: var(--nf-dark-blue);
}

.nf-sportif__list ul {
	list-style: disc;
	margin: 0;
	padding-left: 1.5rem;
}

.nf-sportif__list li {
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
	line-height: 1.6;
}

.nf-sportif__list strong {
	font-weight: 700;
}

.nf-sportif__circles {
	position: absolute;
	bottom: 2rem;
	right: 10%;
	width: 70px;
	height: 50px;
}

.nf-sportif__circle {
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.nf-sportif__circle--white {
	background: var(--nf-white);
	left: 0;
	top: 0;
}

.nf-sportif__circle--green {
	background: var(--nf-light-green);
	right: 0;
	top: 0;
}

/* Location/Contact Section */
.nf-location {
	background: var(--nf-cream);
	padding: 0;
}

.nf-location__wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
}

.nf-location__content {
	padding: 5rem 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.nf-location__title {
	font-family: var(--font-title);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 700;
	color: var(--nf-dark-blue);
	margin: 0 0 2.5rem;
}

.nf-location__info {
	margin-bottom: 2rem;
	color: var(--nf-dark-blue);
}

.nf-location__info p,
.nf-location__info ul,
.nf-location__info li,
.nf-location__info * {
	color: var(--nf-dark-blue);
	font-size: 1rem;
	margin: 0 0 1rem;
	line-height: 1.6;
}

.nf-location__info p:last-child,
.nf-location__info *:last-child {
	margin-bottom: 0;
}

.nf-location__info a {
	color: var(--nf-dark-blue);
}

.nf-location__info a:hover {
	color: var(--nf-light-green);
}

.nf-location__info strong {
	font-weight: 700;
	color: var(--nf-dark-blue);
}

.nf-location__social {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.nf-location__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: var(--nf-dark-blue);
	border: 2px solid var(--nf-dark-blue);
	border-radius: 12px;
	color: var(--nf-cream) !important;
	transition: all 0.3s ease;
}

.nf-location__social a svg {
	width: 28px;
	height: 28px;
	stroke: currentColor;
	color: var(--nf-cream) !important;
}

.nf-location__social a:hover {
	background-color: var(--nf-light-green);
	color: var(--nf-dark-blue) !important;
	border-color: var(--nf-dark-blue);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(196, 255, 0, 0.3);
}

.nf-location__social a:hover svg {
	color: var(--nf-dark-blue) !important;
}

.nf-location__image {
	display: flex;
}

.nf-location__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	margin: 2rem;
	max-height: 500px;
}

/* ============================================
   A propos Page
   ============================================ */
.nf-apropos-page {
	width: 100%;
}

/* Intro Section */
.nf-apropos-intro {
	background: var(--nf-cream);
	padding: 8rem 4rem;
	position: relative;
	min-height: 400px;
}

.nf-apropos-intro__wrapper {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	align-items: center;
	position: relative;
}

.nf-apropos-intro__title {
	font-family: var(--font-title);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	color: var(--nf-dark-blue);
	margin: 0;
}

.nf-apropos-intro__text {
	font-size: 1.1rem;
	color: var(--nf-dark-blue);
	line-height: 1.8;
	margin: 0;
}

.nf-apropos-intro__right {
	color: var(--nf-dark-blue) !important;
}

.nf-apropos-intro__right .nf-apropos-intro__text,
.nf-apropos-intro__text--blue,
.nf-apropos-intro__right .nf-apropos-intro__text p,
.nf-apropos-intro__right .nf-apropos-intro__text *,
.nf-apropos-intro__right p {
	color: var(--nf-dark-blue) !important;
}

.nf-apropos-intro__text strong,
.nf-apropos-intro__right strong {
	font-weight: 700;
	color: var(--nf-dark-blue) !important;
}

.nf-apropos-intro__circles {
	position: absolute;
	bottom: 3rem;
	right: 5rem;
	width: 68px;
	height: 50px;
}

.nf-apropos-intro__circle {
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.nf-apropos-intro__circle--green {
	background: var(--nf-light-green);
	left: 0;
	top: 0;
}

.nf-apropos-intro__circle--blue {
	background: var(--nf-dark-blue);
	right: 0;
	top: 0;
}

/* Image Gallery */
.nf-apropos-gallery {
	padding: 0;
}

.nf-apropos-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.nf-apropos-gallery__grid img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

/* Story Section */
.nf-apropos-story {
	background: var(--nf-dark-blue);
	padding: 4rem;
}

.nf-apropos-story__wrapper {
	max-width: 1100px;
	margin: 0 auto;
}

.nf-apropos-story__content {
	margin-bottom: 3rem;
}

.nf-apropos-story__content p {
	font-size: 1.05rem;
	color: var(--nf-white);
	line-height: 1.8;
	margin: 0 0 1.5rem;
}

.nf-apropos-story__content p:last-child {
	margin-bottom: 0;
}

.nf-apropos-story__content strong {
	font-weight: 700;
}

/* Formations Section */
.nf-apropos-formations {
	margin-top: 3rem;
}

.nf-apropos-formations__title {
	font-family: var(--font-title);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--nf-cream);
	margin: 0 0 1.5rem;
}

.nf-apropos-formations__list {
	list-style: disc;
	margin: 0;
	padding-left: 1.5rem;
	color: var(--nf-white);
}

.nf-apropos-formations__list ul {
	list-style: disc;
	margin: 0;
	padding-left: 1.5rem;
}

.nf-apropos-formations__list li {
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 0.5rem;
}

.nf-apropos-formations__list strong {
	font-weight: 700;
}

/* Sport Section */
.nf-apropos-sport {
	background: var(--nf-cream);
	padding: 5rem 4rem;
}

.nf-apropos-sport__wrapper {
	max-width: 1100px;
	margin: 0 auto;
}

.nf-apropos-sport__title {
	font-family: var(--font-title);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--nf-dark-blue);
	margin: 0 0 2rem;
}

.nf-apropos-sport__content p {
	font-size: 1.05rem;
	color: var(--nf-dark-blue);
	line-height: 1.8;
	margin: 0 0 1.5rem;
}

.nf-apropos-sport__content p:last-child {
	margin-bottom: 0;
}

.nf-apropos-sport__content strong {
	font-weight: 700;
}

/* Blue Bar */
.nf-apropos-bar {
	background: var(--nf-dark-blue);
	height: 20px;
}

.nf-apropos-bar--blue {
	background: var(--nf-dark-blue);
}

/* Separator before footer */
.nf-apropos-separator {
	background: var(--nf-cream);
	height: 4rem;
	border-top: 3px solid var(--nf-dark-blue);
}

/* ============================================
   Contact Page
   ============================================ */
.nf-contact-page {
	width: 100%;
}

.nf-contact {
	background: var(--nf-cream);
}

.nf-contact__wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
	min-height: 700px;
}

.nf-contact__image {
	display: flex;
}

.nf-contact__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nf-contact__content {
	padding: 5rem 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.nf-contact__title {
	font-family: var(--font-title);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 500;
	color: var(--nf-dark-blue);
	margin: -10rem 0 8rem;
	text-align: center;
}

@media (max-width: 1024px) {
	.nf-contact__title {
		margin: 0 0 2rem;
	}
}

.nf-contact__subtitle {
	font-family: var(--font-title);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--nf-dark-blue);
	margin: 2.5rem 0 1.5rem;
}

.nf-contact__list {
	list-style: disc;
	margin: 0 0 2rem;
	padding-left: 1.5rem;
	color: var(--nf-dark-blue);
}

.nf-contact__list li {
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 0.25rem;
}

.nf-contact__list a {
	color: var(--nf-dark-blue);
}

.nf-contact__list a:hover {
	color: var(--nf-light-green);
}

.nf-contact__cta-text {
	font-size: 1.1rem;
	color: var(--nf-dark-blue);
	margin: 0 0 2rem;
}

.nf-contact__btn {
	width: fit-content;
	align-self: center;
}

/* Responsive for Contact page */
@media (max-width: 1024px) {
	.nf-contact__wrapper {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	
	.nf-contact__image {
		max-height: 400px;
		order: 1;
	}

	.nf-contact__content {
		order: 2;
		padding: 3rem 2rem;
	}

	.nf-contact__title {
		margin: 0 0 2rem;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.nf-contact__content {
		padding: 2rem 1.5rem;
	}

	.nf-contact__title {
		font-size: clamp(1.8rem, 6vw, 2.5rem);
		margin: 0 0 1.5rem;
	}

	.nf-contact__subtitle {
		font-size: 1.2rem;
		margin: 0 0 1rem;
	}

	.nf-contact__image {
		max-height: 300px;
	}
}

@media (max-width: 480px) {
	.nf-contact__content {
		padding: 1.5rem 1rem;
	}

	.nf-contact__title {
		font-size: clamp(1.5rem, 7vw, 2rem);
		margin: 0 0 1rem;
	}

	.nf-contact__subtitle {
		font-size: 1.1rem;
		margin: 0 0 1rem;
	}

	.nf-contact__image {
		max-height: 250px;
	}
}

/* Responsive for A propos page */
@media (max-width: 1024px) {
	.nf-apropos-intro__wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.nf-apropos-intro__circles {
		position: relative;
		bottom: auto;
		right: auto;
		margin: 2rem auto 0;
	}
	
	.nf-apropos-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nf-apropos-intro {
		padding: 3rem 2rem;
	}
	
	.nf-apropos-gallery__grid img {
		height: 200px;
	}
}

/* Responsive for Accompagnement page */
@media (max-width: 1024px) {
	.nf-pricing__grid {
		grid-template-columns: 1fr;
		max-width: 500px;
	}
	
	.nf-sportif__circles {
		right: 5%;
	}
	
	.nf-location__wrapper {
		grid-template-columns: 1fr;
	}
	
	.nf-location__image {
		order: -1;
	}
	
	.nf-location__image img {
		max-height: 350px;
	}
}

@media (max-width: 768px) {
	.nf-accomp-hero__grid {
		grid-template-columns: 1fr;
	}
	
	.nf-accomp-hero {
		min-height: auto;
	}
	
	.nf-sportif__wrapper {
		flex-direction: column;
		align-items: center;
	}
	
	.nf-sportif__circles {
		position: relative;
		bottom: auto;
		right: auto;
		margin-top: 2rem;
	}
	
	.nf-location__content {
		padding: 3rem 2rem;
	}
}

/* ============================================
   Scroll Animations
   ============================================ */

/* Elements are visible by default */
.nf-animate-on-scroll:not(.nf-testimonials__slide) {
	transition: opacity 1.6s ease-out, transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Images are ALWAYS visible - never hide them, but can still animate transform */
img.nf-animate-on-scroll,
img.nf-slide-in-left,
img.nf-slide-in-right,
img.nf-slide-in-up {
	opacity: 1 !important;
	visibility: visible !important;
}

/* Slide animations - initial transform state with larger distance for more noticeable effect */
.nf-slide-in-left.nf-animate-ready:not(.nf-testimonials__slide) {
	transform: translateX(-150px);
}

.nf-slide-in-right.nf-animate-ready:not(.nf-testimonials__slide) {
	transform: translateX(150px);
}

.nf-slide-in-up.nf-animate-ready:not(.nf-testimonials__slide) {
	transform: translateY(100px);
}

/* Don't apply slide-in-up transform to cards that have flip effect */
.nf-service-card.nf-slide-in-up.nf-animate-ready:not(.nf-testimonials__slide),
.nf-pricing-card.nf-slide-in-up.nf-animate-ready:not(.nf-testimonials__slide) {
	transform: rotateY(180deg) translateY(100px);
}

.nf-pricing-card--flip-reverse.nf-slide-in-up.nf-animate-ready:not(.nf-testimonials__slide) {
	transform: rotateY(-180deg) translateY(100px);
}

/* Text fade animations - hide when ready */
.nf-fade-in.nf-animate-ready {
	opacity: 0;
}

/* Visible state - animate to final position */
.nf-animate-on-scroll.visible:not(.nf-testimonials__slide) {
	opacity: 1 !important;
	transform: translateX(0) translateY(0) !important;
}

/* Delay variations for staggered animations */
.nf-animate-delay-1 {
	transition-delay: 0.15s;
}

.nf-animate-delay-2 {
	transition-delay: 0.3s;
}

.nf-animate-delay-3 {
	transition-delay: 0.45s;
}

.nf-animate-delay-4 {
	transition-delay: 0.6s;
}
