/**
 * 3MF Custom Styles
 * Animations, hover effects, responsive design, WhatsApp button, cookie banner
 *
 * @package TwentyTwentyFive_3MF
 */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
	--tmf-blue: #0A2463;
	--tmf-blue-dark: #071A45;
	--tmf-orange: #E8711A;
	--tmf-orange-hover: #cf6315;
	--tmf-gold: #D4A843;
	--tmf-white: #FFFFFF;
	--tmf-gray: #F5F6FA;
	--tmf-text: #1A1A2E;
	--tmf-green: #16A34A;
	--tmf-red: #DC2626;
	--tmf-shadow: 0 4px 6px -1px rgba(10, 36, 99, 0.1), 0 2px 4px -2px rgba(10, 36, 99, 0.1);
	--tmf-shadow-hover: 0 20px 25px -5px rgba(10, 36, 99, 0.1), 0 8px 10px -6px rgba(10, 36, 99, 0.1);
	--tmf-transition: 0.3s ease;
	--tmf-radius: 8px;
}

/* ============================================================
   GENERAL / RESET
   ============================================================ */
img {
	max-width: 100%;
	height: auto;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.tmf-topbar {
	background: var(--tmf-blue-dark);
	color: var(--tmf-white);
	font-size: 0.8125rem;
	padding: 0.4rem 0;
	border-bottom: 2px solid var(--tmf-gold);
}

.tmf-topbar a {
	color: var(--tmf-white);
	text-decoration: none;
	transition: color var(--tmf-transition);
}

.tmf-topbar a:hover {
	color: var(--tmf-gold);
}

.tmf-lang-switcher {
	display: inline-flex;
	gap: 0.25rem;
	align-items: center;
}

.tmf-lang-switcher a,
.tmf-lang-switcher span {
	padding: 0.15rem 0.5rem;
	border-radius: 3px;
	font-weight: 600;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.tmf-lang-switcher .tmf-lang-active {
	background: var(--tmf-orange);
	color: var(--tmf-white);
}

.tmf-lang-switcher a:not(.tmf-lang-active) {
	background: rgba(255, 255, 255, 0.15);
	color: var(--tmf-white);
}

.tmf-lang-switcher a:not(.tmf-lang-active):hover {
	background: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.tmf-header {
	background: var(--tmf-blue);
	padding: 0.75rem 0;
	position: relative;
	z-index: 100;
	transition: box-shadow var(--tmf-transition), padding var(--tmf-transition);
}

.tmf-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: var(--tmf-shadow-hover);
	padding: 0.5rem 0;
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

.tmf-header a {
	color: var(--tmf-white);
	text-decoration: none;
}

.tmf-header .wp-block-navigation a {
	color: var(--tmf-white);
	padding: 0.5rem 0.75rem;
	transition: color var(--tmf-transition);
}

.tmf-header .wp-block-navigation a:hover {
	color: var(--tmf-gold);
}

/* CTA Button in header */
.tmf-btn-devis .wp-block-button__link {
	display: inline-block;
	background: var(--tmf-orange);
	color: var(--tmf-white) !important;
	padding: 0.65rem 1.5rem;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: background var(--tmf-transition), transform var(--tmf-transition);
}

.tmf-btn-devis .wp-block-button__link:hover {
	background: var(--tmf-orange-hover);
	transform: translateY(-1px);
	color: var(--tmf-white) !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.tmf-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.tmf-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(7, 26, 69, 0.92) 0%, rgba(10, 36, 99, 0.85) 50%, rgba(232, 113, 26, 0.3) 100%);
	z-index: 1;
}

.tmf-hero > * {
	position: relative;
	z-index: 2;
}

.tmf-hero h1 {
	color: var(--tmf-white);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tmf-hero p {
	color: rgba(255, 255, 255, 0.9);
}

/* Gold accent line under hero heading */
.tmf-hero h1::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: var(--tmf-gold);
	margin-top: 1rem;
}

/* ============================================================
   TRUST BANNER / STATS BAR
   ============================================================ */
.tmf-trust-banner {
	background: var(--tmf-blue);
	padding: 2rem 0;
	border-top: 3px solid var(--tmf-gold);
}

.tmf-trust-item {
	text-align: center;
	color: var(--tmf-white);
}

.tmf-trust-number {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--tmf-orange);
	line-height: 1;
}

.tmf-trust-label {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 0.25rem;
	opacity: 0.9;
}

/* ============================================================
   STATISTICS COUNTER (ANIMATED)
   ============================================================ */
.tmf-stats-section {
	background: linear-gradient(135deg, var(--tmf-blue) 0%, var(--tmf-blue-dark) 100%);
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.tmf-stat-card {
	text-align: center;
	padding: 2rem 1rem;
}

.tmf-stat-number {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 800;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.tmf-stat-number[data-color="red"] {
	color: var(--tmf-red);
}

.tmf-stat-number[data-color="orange"] {
	color: var(--tmf-orange);
}

.tmf-stat-number[data-color="gold"] {
	color: var(--tmf-gold);
}

.tmf-stat-number[data-color="green"] {
	color: var(--tmf-green);
}

.tmf-stat-suffix {
	font-size: 0.6em;
}

.tmf-stat-label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9375rem;
	line-height: 1.4;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.tmf-service-card {
	background: var(--tmf-white);
	border-radius: var(--tmf-radius);
	padding: 2rem;
	box-shadow: var(--tmf-shadow);
	transition: transform var(--tmf-transition), box-shadow var(--tmf-transition);
	border-top: 3px solid transparent;
	position: relative;
	overflow: hidden;
}

.tmf-service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--tmf-shadow-hover);
	border-top-color: var(--tmf-orange);
}

.tmf-service-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--tmf-orange), var(--tmf-gold));
	transform: scaleX(0);
	transition: transform var(--tmf-transition);
}

.tmf-service-card:hover::after {
	transform: scaleX(1);
}

.tmf-service-icon {
	width: 64px;
	height: 64px;
	background: var(--tmf-gray);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	transition: background var(--tmf-transition);
}

.tmf-service-card:hover .tmf-service-icon {
	background: var(--tmf-orange);
}

.tmf-service-icon svg {
	width: 32px;
	height: 32px;
	fill: var(--tmf-blue);
	transition: fill var(--tmf-transition);
}

.tmf-service-card:hover .tmf-service-icon svg {
	fill: var(--tmf-white);
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.tmf-cta-section {
	background: linear-gradient(135deg, var(--tmf-orange) 0%, #d4650f 100%);
	padding: clamp(3rem, 6vw, 5rem) 0;
	text-align: center;
}

.tmf-cta-section h2 {
	color: var(--tmf-white);
}

.tmf-cta-section p {
	color: rgba(255, 255, 255, 0.95);
}

.tmf-btn-cta {
	display: inline-block;
	background: var(--tmf-white);
	color: var(--tmf-orange) !important;
	padding: 1rem 2.5rem;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: transform var(--tmf-transition), box-shadow var(--tmf-transition);
}

.tmf-btn-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	color: var(--tmf-orange) !important;
}

/* Secondary CTA style (dark background) */
.tmf-cta-dark {
	background: linear-gradient(135deg, var(--tmf-blue) 0%, var(--tmf-blue-dark) 100%);
}

.tmf-cta-dark .tmf-btn-cta {
	background: var(--tmf-orange);
	color: var(--tmf-white) !important;
}

.tmf-cta-dark .tmf-btn-cta:hover {
	background: var(--tmf-orange-hover);
	color: var(--tmf-white) !important;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tmf-testimonial-card {
	background: var(--tmf-white);
	border-radius: var(--tmf-radius);
	padding: 2rem;
	box-shadow: var(--tmf-shadow);
	position: relative;
	border-left: 4px solid var(--tmf-gold);
}

.tmf-testimonial-card::before {
	content: '\201C';
	font-family: Georgia, serif;
	font-size: 4rem;
	color: var(--tmf-gold);
	opacity: 0.3;
	position: absolute;
	top: 0.5rem;
	left: 1rem;
	line-height: 1;
}

.tmf-testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.tmf-testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--tmf-gold);
}

.tmf-testimonial-name {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: var(--tmf-blue);
	font-size: 0.9375rem;
}

.tmf-testimonial-role {
	font-size: 0.8125rem;
	color: #666;
}

/* ============================================================
   TEAM MEMBERS
   ============================================================ */
.tmf-team-card {
	text-align: center;
	background: var(--tmf-white);
	border-radius: var(--tmf-radius);
	overflow: hidden;
	box-shadow: var(--tmf-shadow);
	transition: transform var(--tmf-transition), box-shadow var(--tmf-transition);
}

.tmf-team-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--tmf-shadow-hover);
}

.tmf-team-photo {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
}

.tmf-team-info {
	padding: 1.25rem;
}

.tmf-team-name {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: var(--tmf-blue);
	font-size: 1.0625rem;
	margin-bottom: 0.25rem;
}

.tmf-team-position {
	color: var(--tmf-orange);
	font-size: 0.875rem;
	font-weight: 500;
}

/* ============================================================
   PROJECT / PORTFOLIO CARDS
   ============================================================ */
.tmf-project-card {
	border-radius: var(--tmf-radius);
	overflow: hidden;
	box-shadow: var(--tmf-shadow);
	transition: transform var(--tmf-transition), box-shadow var(--tmf-transition);
	background: var(--tmf-white);
}

.tmf-project-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--tmf-shadow-hover);
}

.tmf-project-image {
	position: relative;
	overflow: hidden;
}

.tmf-project-image img {
	width: 100%;
	aspect-ratio: 3/2;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.tmf-project-card:hover .tmf-project-image img {
	transform: scale(1.05);
}

.tmf-project-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 36, 99, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--tmf-transition);
}

.tmf-project-card:hover .tmf-project-overlay {
	opacity: 1;
}

.tmf-project-content {
	padding: 1.25rem;
}

.tmf-project-category {
	display: inline-block;
	background: var(--tmf-gray);
	color: var(--tmf-blue);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.2rem 0.6rem;
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

/* ============================================================
   SECTIONS ALTERNEES
   ============================================================ */
.tmf-section-alt {
	background: var(--tmf-gray);
}

.tmf-section-dark {
	background: var(--tmf-blue);
	color: var(--tmf-white);
}

.tmf-section-dark h2,
.tmf-section-dark h3 {
	color: var(--tmf-white);
}

/* Gold separator */
.tmf-separator {
	width: 60px;
	height: 3px;
	background: var(--tmf-gold);
	border: none;
	margin: 1rem auto;
}

/* Section subtitle */
.tmf-subtitle {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--tmf-orange);
	margin-bottom: 0.5rem;
}

/* ============================================================
   BADGES / CERTIFICATIONS
   ============================================================ */
.tmf-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: rgba(22, 163, 74, 0.1);
	color: var(--tmf-green);
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.35rem 0.75rem;
	border-radius: 9999px;
	border: 1px solid rgba(22, 163, 74, 0.2);
}

.tmf-badge-orange {
	background: rgba(232, 113, 26, 0.1);
	color: var(--tmf-orange);
	border-color: rgba(232, 113, 26, 0.2);
}

/* ============================================================
   COMPARISON TABLE (Securite page)
   ============================================================ */
.tmf-comparison-table {
	width: 100%;
	border-collapse: collapse;
	border-radius: var(--tmf-radius);
	overflow: hidden;
	box-shadow: var(--tmf-shadow);
}

.tmf-comparison-table th {
	background: var(--tmf-blue);
	color: var(--tmf-white);
	padding: 1rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-align: left;
}

.tmf-comparison-table td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #e5e7eb;
}

.tmf-comparison-table tr:nth-child(even) td {
	background: var(--tmf-gray);
}

.tmf-comparison-table .tmf-col-sans {
	color: var(--tmf-red);
}

.tmf-comparison-table .tmf-col-avec {
	color: var(--tmf-green);
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.tmf-newsletter {
	background: var(--tmf-gray);
	padding: 2.5rem;
	border-radius: var(--tmf-radius);
	text-align: center;
	border: 1px solid #e5e7eb;
}

.tmf-newsletter-form {
	display: flex;
	gap: 0.5rem;
	max-width: 480px;
	margin: 1rem auto 0;
}

.tmf-newsletter-form input[type="email"] {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 2px solid #d1d5db;
	border-radius: 4px;
	font-size: 0.9375rem;
	font-family: 'Inter', sans-serif;
	transition: border-color var(--tmf-transition);
}

.tmf-newsletter-form input[type="email"]:focus {
	outline: none;
	border-color: var(--tmf-orange);
}

.tmf-newsletter-form button {
	background: var(--tmf-orange);
	color: var(--tmf-white);
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	white-space: nowrap;
	transition: background var(--tmf-transition);
}

.tmf-newsletter-form button:hover {
	background: var(--tmf-orange-hover);
}

/* ============================================================
   FOOTER
   ============================================================ */
.tmf-footer {
	background: var(--tmf-blue-dark);
	color: rgba(255, 255, 255, 0.85);
	padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.tmf-footer h3,
.tmf-footer h4 {
	color: var(--tmf-white);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.25rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.tmf-footer h3::after,
.tmf-footer h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--tmf-gold);
}

.tmf-footer a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: color var(--tmf-transition);
}

.tmf-footer a:hover {
	color: var(--tmf-gold);
}

.tmf-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tmf-footer li {
	margin-bottom: 0.5rem;
}

.tmf-footer li a::before {
	content: '\203A';
	margin-right: 0.5rem;
	color: var(--tmf-orange);
}

.tmf-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 0;
	margin-top: 3rem;
	text-align: center;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
}

.tmf-footer-bottom a {
	color: rgba(255, 255, 255, 0.5);
}

.tmf-footer-bottom a:hover {
	color: var(--tmf-gold);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.tmf-whatsapp-btn {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	width: 60px;
	height: 60px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	z-index: 9999;
	transition: transform var(--tmf-transition), box-shadow var(--tmf-transition);
	text-decoration: none;
}

.tmf-whatsapp-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.tmf-whatsapp-btn svg {
	width: 32px;
	height: 32px;
}

/* Pulse animation */
.tmf-whatsapp-btn::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 2px solid #25D366;
	animation: tmf-pulse 2s infinite;
}

@keyframes tmf-pulse {
	0% { transform: scale(1); opacity: 1; }
	100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.tmf-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--tmf-blue-dark);
	color: var(--tmf-white);
	padding: 1.25rem 2rem;
	z-index: 10000;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(100%);
	animation: tmf-slideUp 0.4s ease forwards;
}

@keyframes tmf-slideUp {
	to { transform: translateY(0); }
}

.tmf-cookie-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.tmf-cookie-inner p {
	flex: 1;
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	min-width: 300px;
}

.tmf-cookie-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.tmf-cookie-btn {
	border: none;
	padding: 0.6rem 1.25rem;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.8125rem;
	cursor: pointer;
	transition: background var(--tmf-transition);
}

.tmf-cookie-btn--accept {
	background: var(--tmf-orange);
	color: var(--tmf-white);
}

.tmf-cookie-btn--accept:hover {
	background: var(--tmf-orange-hover);
}

.tmf-cookie-btn--decline {
	background: rgba(255, 255, 255, 0.15);
	color: var(--tmf-white);
}

.tmf-cookie-btn--decline:hover {
	background: rgba(255, 255, 255, 0.25);
}

.tmf-cookie-link {
	color: var(--tmf-gold) !important;
	font-size: 0.8125rem;
	text-decoration: underline;
}

/* ============================================================
   ANIMATIONS - SCROLL REVEAL
   ============================================================ */
.tmf-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.tmf-fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tmf-fade-in-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.tmf-fade-in-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.tmf-fade-in-right {
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.tmf-fade-in-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Staggered children */
.tmf-stagger > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.tmf-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.tmf-stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.tmf-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.tmf-stagger.is-visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.tmf-stagger.is-visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.tmf-stagger.is-visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.tmf-hero {
		min-height: 55vh;
	}
}

@media (max-width: 768px) {
	.tmf-topbar {
		font-size: 0.75rem;
		text-align: center;
	}

	.tmf-hero {
		min-height: 50vh;
	}

	.tmf-hero h1::after {
		margin-left: auto;
		margin-right: auto;
	}

	.tmf-newsletter-form {
		flex-direction: column;
	}

	.tmf-cookie-inner {
		flex-direction: column;
		text-align: center;
	}

	.tmf-cookie-inner p {
		min-width: 0;
	}

	.tmf-cookie-actions {
		width: 100%;
		justify-content: center;
	}

	/* Adjust WhatsApp button for mobile - above cookie banner */
	.tmf-whatsapp-btn {
		bottom: 5.5rem;
		right: 1rem;
		width: 52px;
		height: 52px;
	}

	.tmf-whatsapp-btn svg {
		width: 28px;
		height: 28px;
	}
}

@media (max-width: 480px) {
	.tmf-trust-number {
		font-size: 2rem;
	}

	.tmf-btn-devis {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}

	.tmf-stat-number {
		font-size: 2rem;
	}
}

/* ============================================================
   REDUCED MOTION (Accessibility)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
	.tmf-fade-in,
	.tmf-fade-in-left,
	.tmf-fade-in-right {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.tmf-stagger > * {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.tmf-whatsapp-btn::before {
		animation: none;
	}

	.tmf-header.is-sticky {
		animation: none;
	}

	.tmf-cookie-banner {
		animation: none;
		transform: none;
	}

	.tmf-service-card,
	.tmf-team-card,
	.tmf-project-card,
	.tmf-project-image img,
	.tmf-btn-cta,
	.tmf-btn-devis .wp-block-button__link {
		transition: none;
	}
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
	.tmf-whatsapp-btn,
	.tmf-cookie-banner,
	.tmf-topbar {
		display: none !important;
	}

	.tmf-header {
		position: static;
		box-shadow: none;
	}
}
