/* ==========================================
   M.A SERRURERIE 24/24 - CSS PRINCIPAL
   ========================================== */

/* ==========================================
   CSS VARIABLES - Changez les couleurs ici
   ========================================== */
:root {
	/* Palette principale - Choisissez votre couleur */
	/* Option 1: Rouge (par défaut) */
	/* --primary: #E74C3C; */
	/* --primary-dark: #C0392B; */
	/* --primary-light: #EC7063; */

	/* Option 2: Bleu (décommentez pour utiliser) */
	--primary: #0066cc;
	--primary-dark: #0052a3;
	--primary-light: #3385db;

	/* Option 3: Orange (décommentez pour utiliser) */
	/* --primary: #f39c12; */
	/* --primary-dark: #e67e22; */
	/* --primary-light: #f5b041; */

	/* Couleurs secondaires */
	--secondary: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
	--secondary-solid: #2C3E50;
	--accent: #f39c12;
	--accent-dark: #e67e22;
	--accent-dark-2: #34495E;
	--accent-darker: #2C3E50;
	--accent-light: #5D6D7E;

	/* Gradients - Générés automatiquement avec primary */
	--gradient-mix: linear-gradient(135deg, var(--primary) 0%, #34495E 100%);
	--gradient-mix-light: linear-gradient(135deg, var(--primary-light) 0%, #5D6D7E 100%);
	--gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	--gradient-secondary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #003d80 100%);
	--gradient-hero: linear-gradient(135deg, var(--primary) 0%, #2C3E50 100%);

	/* Couleurs de texte */
	--text-dark: #2c2c2c;
	--text-light: #5a5a5a;
	--white: #ffffff;
	--light: #f4f4f4;
	--gray: #e0e0e0;
	--border: #d0d0d0;

	/* Ombres et transitions */
	--shadow: rgba(0, 0, 0, 0.08);
	--shadow-strong: rgba(0, 0, 0, 0.15);
	--transition: all 0.3s ease;

	/* Typographie */
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Open Sans', sans-serif;

	/* Couleurs d'accentuation spéciales */
	--gold: #ffd700;
}

/* Reset & Base */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-dark);
	background: var(--white);
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
	display: contents;
}

.header.hidden {
	transform: translateY(-100%);
}

/* Top Bar */
.top-bar {
	background: linear-gradient(135deg, rgba(15, 32, 60, 0.95) 0%, rgba(10, 25, 47, 0.98) 50%, rgba(5, 15, 30, 1) 100%);
	color: var(--white);
	padding: 10px 0;
	font-size: 13px;
}

.top-bar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.top-bar-info {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.info-item i {
	color: var(--primary);
	font-size: 14px;
}

.info-item a {
	color: var(--white);
	text-decoration: none;
	transition: var(--transition);
}

.info-item a:hover {
	color: var(--primary);
}

.top-bar-social {
	display: flex;
	gap: 12px;
}

.top-bar-social a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	color: var(--white);
	transition: var(--transition);
	text-decoration: none;
	border: none;
	box-shadow: none;
}

.top-bar-social a:hover {
	background: var(--primary);
}

/* Navbar */
.navbar {
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--white);
	box-shadow: 0 2px 10px var(--shadow);
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.nav-logo {
	display: flex;
	flex-direction: row;
	/* Aligne le logo et le texte sur la même ligne */
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.logo-title {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: 1px;
	line-height: 1.2;
}

.logo-subtitle {
	font-size: 11px;
	color: var(--text-light);
	font-weight: 500;
}

/* Desktop/Mobile phone button display */
.desktop-phone-num {
  display: inline;
}
.mobile-phone-txt {
  display: none;
}
.mobile-stars-bar {
  display: none;
}

/* Masquer définitivement WhatsApp et les réseaux sociaux */
.top-bar-social,
.footer-social {
    display: none !important;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 25px;
}

.nav-item {
	list-style: none;
}

.nav-link {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: var(--transition);
	position: relative;
	padding: 5px 0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.btn-call {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--gradient-primary);
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	border-radius: 3px;
	transition: var(--transition);
}

.btn-call:hover {
	background: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(243, 156, 18, 0.3);
}

.nav-cta {
	display: block;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.nav-toggle span {
	width: 25px;
	height: 2px;
	background: var(--text-dark);
	border-radius: 1px;
	transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
	position: relative;
	height: 100vh;
	min-height: 650px;
	overflow: hidden;
	padding: 0; /* Annule le padding général de 80px des sections sur PC */
}

.hero-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	overflow: hidden;
}

.hero-slide.active {
	opacity: 1;
	visibility: visible;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.15);
	}
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(15, 32, 60, 0.45) 0%, rgba(10, 25, 47, 0.55) 50%, rgba(5, 15, 30, 0.65) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	color: var(--white);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
	backdrop-filter: blur(10px);
	border-radius: 30px;
	font-weight: 500;
	font-size: 13px;
	margin-bottom: 25px;
}

.hero-badge i {
	color: var(--gold);
}

.hero-title {
	font-family: var(--font-heading);
	font-size: 52px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 20px;
}

.hero-title .highlight {
	color: var(--primary);
}

.hero-description {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 35px;
	opacity: 0.95;
}

.hero-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 35px;
	background: var(--primary);
	color: var(--white);
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	border-radius: 3px;
	transition: var(--transition);
	border: none;
}

.btn-primary:hover {
	background: var(--accent);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 35px;
	background: transparent;
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	border: 2px solid var(--white);
	border-radius: 3px;
	transition: var(--transition);
}

.btn-secondary:hover {
	background: var(--white);
	color: var(--primary);
}

/* Hero Controls */
.hero-controls {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 20px;
}

.hero-prev,
.hero-next {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, rgba(52, 73, 94, 0.6) 0%, rgba(44, 62, 80, 0.4) 100%);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 3px;
	color: var(--white);
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

.hero-dots {
	display: flex;
	gap: 8px;
}

.hero-dot {
	width: 10px;
	height: 10px;
	background: rgba(52, 73, 94, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
}

.hero-dot.active {
	background: var(--primary);
	width: 25px;
	border-radius: 5px;
}

/* ==========================================
   FEATURES BANNER
   ========================================== */
.features-banner {
	padding: 50px 0;
	background: var(--light);
	margin-top: -60px;
	position: relative;
	z-index: 5;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 25px;
	background: var(--white);
	border-radius: 5px;
	box-shadow: 0 2px 15px var(--shadow);
}

.feature-icon {
	width: 55px;
	height: 55px;
	background: var(--gradient-primary);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--white);
	flex-shrink: 0;
}

.feature-content h3 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 3px;
}

.feature-content p {
	color: var(--text-light);
	font-size: 13px;
}

/* ==========================================
   SECTION STYLES
   ========================================== */
section {
	padding: 80px 0;
}

.section-tag {
	display: inline-block;
	padding: 6px 16px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 15%, transparent) 0%, color-mix(in srgb, var(--primary) 8%, transparent) 100%);
	color: var(--primary);
	font-weight: 600;
	font-size: 12px;
	border-radius: 3px;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.section-title {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-dark);
	line-height: 1.2;
}

.section-title .highlight {
	color: var(--primary);
}

.section-description {
	font-size: 16px;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

.section-header {
	margin-bottom: 35px;
}

.section-header-center {
	text-align: center;
	margin-bottom: 50px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-image .image-wrapper {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 10px 40px var(--shadow);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.image-badge {
	position: absolute;
	bottom: 25px;
	right: 25px;
	padding: 20px;
	background: var(--white);
	border-radius: 5px;
	box-shadow: 0 5px 30px var(--shadow-strong);
}

.badge-content {
	text-align: center;
}

.badge-rating {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 700;
	color: var(--primary);
}

.badge-stars {
	font-size: 16px;
	color: var(--gold);
	margin: 8px 0;
}

.badge-text {
	font-size: 12px;
	color: var(--text-light);
}

.about-text {
	margin-bottom: 18px;
	line-height: 1.8;
	color: var(--text-light);
}

.about-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-cta {
	margin-top: 25px;
}

.about-features {
	margin: 25px 0;
}

.about-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--text-dark);
	font-size: 15px;
}

.about-feature i {
	color: var(--primary);
	font-size: 18px;
}

.cta-box {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px;
	background: var(--gradient-primary);
	border-radius: 5px;
	color: var(--white);
	margin-top: 25px;
}

.cta-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.cta-label {
	display: block;
	font-size: 13px;
	opacity: 0.9;
}

.cta-phone {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
	background: var(--light);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.service-card {
	position: relative;
	background: var(--white);
	padding: 0;
	border-radius: 5px;
	box-shadow: 0 2px 15px var(--shadow);
	transition: var(--transition);
	overflow: hidden;
}

.service-card-body {
	padding: 35px 25px;
	position: relative;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gradient-secondary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px var(--shadow-strong);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card.featured {
	border: 2px solid var(--primary);
	background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--primary) 10%, #fff) 100%);
}

.featured-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 4px 12px;
	background: var(--gradient-primary);
	color: var(--white);
	font-size: 11px;
	font-weight: 600;
	border-radius: 3px;
}

.service-icon {
	width: 55px;
	height: 55px;
	background: var(--gradient-primary);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--white);
	margin-bottom: 18px;
}

.service-number {
	position: absolute;
	top: 25px;
	right: 25px;
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 700;
	color: color-mix(in srgb, var(--primary) 10%, transparent);
}

.service-title {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-dark);
	line-height: 1.3;
}

.service-description {
	color: var(--text-light);
	font-size: 14px;
	margin-bottom: 18px;
	line-height: 1.7;
}

.service-price {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 12px;
	background: var(--light);
	border-radius: 3px;
	margin-bottom: 18px;
}

.price-label {
	font-size: 11px;
	color: var(--text-light);
}

.price-value {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: var(--transition);
}

.service-link:hover {
	gap: 12px;
}

.services-disclaimer {
	text-align: center;
	margin-top: 35px;
	color: var(--text-light);
	font-size: 13px;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
	padding: 60px 0;
	background: var(--gradient-secondary);
	color: var(--white);
}

.cta-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.cta-left {
	flex: 1;
}

.cta-right {
	flex-shrink: 0;
}

.cta-tag {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
	font-weight: 600;
	font-size: 12px;
	margin-bottom: 12px;
}

.cta-title {
	font-family: var(--font-heading);
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.2;
}

.cta-description {
	font-size: 16px;
	opacity: 0.95;
}

.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 35px;
	background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--primary) 10%, #fff) 100%);
	color: var(--primary-dark);
	text-decoration: none;
	font-weight: 700;
	font-size: 18px;
	border-radius: 3px;
	transition: var(--transition);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us {
	padding: 80px 0;
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.why-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.why-image img {
	width: 100%;
	border-radius: 5px;
	box-shadow: 0 10px 40px var(--shadow);
}

.why-images-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}

.why-images-grid img {
	width: 80%; /* Taille réduite sur PC */
	max-width: 400px; /* Évite un rendu trop grand */
	margin: 0 auto; /* Centre horizontalement dans la colonne */
	height: auto;
	border-radius: 5px;
	box-shadow: 0 10px 40px var(--shadow);
}

.why-description {
	margin-bottom: 25px;
	line-height: 1.8;
	color: var(--text-light);
}

.why-list {
	margin-bottom: 35px;
}

.why-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.why-icon {
	width: 35px;
	height: 35px;
	background: var(--gradient-primary);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	flex-shrink: 0;
}

.why-text {
	font-weight: 500;
	color: var(--text-dark);
	font-size: 15px;
}

.why-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.stat-item {
	text-align: center;
	padding: 25px;
	background: var(--light);
	border-radius: 5px;
}

.stat-value {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 5px;
}

.stat-label {
	color: var(--text-light);
	font-size: 13px;
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews {
	background: var(--light);
}

.reviews-slider {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-bottom: 35px;
}

.review-card {
	background: var(--white);
	padding: 25px;
	border-radius: 5px;
	box-shadow: 0 2px 15px var(--shadow);
	transition: var(--transition);
}

.review-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px var(--shadow-strong);
}

.review-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.review-avatar {
	width: 45px;
	height: 45px;
	background: var(--gradient-primary);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 18px;
}

.review-info h4 {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.3;
}

.review-rating {
	color: var(--gold);
	font-size: 12px;
	margin-top: 4px;
}

.review-text {
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 18px;
	font-size: 14px;
}

.review-footer {
	display: flex;
	justify-content: flex-end;
}

.review-badge {
	padding: 5px 12px;
	background: color-mix(in srgb, var(--primary) 15%, transparent);
	color: var(--primary);
	font-size: 11px;
	font-weight: 600;
	border-radius: 3px;
}

.reviews-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.reviews-prev,
.reviews-next {
	width: 40px;
	height: 40px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	color: var(--text-dark);
}

.reviews-prev:hover,
.reviews-next:hover {
	border-color: var(--primary);
	background: var(--gradient-primary);
	color: var(--white);
}

.reviews-dots {
	display: flex;
	gap: 8px;
}

.reviews-dot {
	width: 8px;
	height: 8px;
	background: rgba(52, 73, 94, 0.3);
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
}

.reviews-dot.active {
	background: var(--gradient-primary);
	width: 20px;
	border-radius: 4px;
}

.google-rating {
	margin-top: 15px;
}

.rating-stars {
	font-size: 22px;
	color: var(--gold);
}

.rating-text {
	color: var(--text-light);
	font-size: 14px;
	margin-top: 8px;
}

/* ==========================================
   FAQ TOGGLE / ACCORDION
   ========================================== */
.faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: var(--white);
	border-radius: 5px;
	margin-bottom: 15px;
	box-shadow: 0 2px 15px var(--shadow);
	overflow: hidden;
	transition: var(--transition);
}

.faq-item.active {
	box-shadow: 0 5px 25px var(--shadow-strong);
}

.faq-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 25px;
	cursor: pointer;
	user-select: none;
	transition: background 0.3s ease;
	gap: 15px;
}

.faq-header:hover {
	background: var(--light);
}

.faq-question {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: 1;
}

.faq-question-icon {
	width: 40px;
	height: 40px;
	background: var(--gradient-primary);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 16px;
	flex-shrink: 0;
}

.faq-question-text {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.4;
}

.faq-toggle-icon {
	width: 30px;
	height: 30px;
	background: color-mix(in srgb, var(--primary) 15%, transparent);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 14px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
	transform: rotate(180deg);
	background: var(--primary);
	color: var(--white);
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-content-inner {
	padding: 0 25px 25px 80px;
	color: var(--text-light);
	line-height: 1.8;
	font-size: 15px;
}

.faq-content-inner strong {
	color: var(--text-dark);
	font-weight: 600;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-description {
	margin-top: 12px;
	color: var(--text-light);
}

.contact-items {
	margin-top: 35px;
}

.contact-item {
	display: flex;
	gap: 18px;
	margin-bottom: 25px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 18px;
	flex-shrink: 0;
}

.contact-details h4 {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 5px;
	line-height: 1.3;
}

.contact-details a {
	color: var(--primary);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}

.contact-note {
	display: block;
	color: var(--text-light);
	font-size: 13px;
	margin-top: 3px;
}

.contact-areas {
	margin-top: 30px;
	padding: 20px;
	background: var(--light);
	border-radius: 5px;
}

.contact-areas-section {
	display: flex;
	align-items: center;
}

.contact-areas-section .contact-areas {
	margin-top: 0;
	width: 100%;
}

.contact-areas h4 {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.3;
}

.contact-areas p {
	color: var(--text-light);
	line-height: 1.7;
	font-size: 14px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
	background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
	color: var(--white);
	padding: 70px 0 25px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.3fr;
	gap: 35px;
	margin-bottom: 40px;
}

.footer-about p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 14px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.footer-logo-text {
	display: flex;
	flex-direction: column;
}

.footer-logo img {
	width: 45px;
	height: 45px;
	object-fit: contain;
}

.footer-logo-title {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.footer-contact-item i {
	color: var(--primary);
}

.footer-contact-item a {
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.footer-links h4 {
	font-family: var(--font-heading);
	font-size: 16px;
	margin-bottom: 18px;
	line-height: 1.3;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--white);
	padding-left: 3px;
}

.footer-hours h4 {
	font-family: var(--font-heading);
	font-size: 16px;
	margin-bottom: 18px;
	line-height: 1.3;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 18px;
}

.footer-social a {
	width: 35px;
	height: 35px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: var(--transition);
	text-decoration: none;
	border: none;
	box-shadow: none;
}

.footer-social a:hover {
	background: var(--primary);
	transform: translateY(-2px);
}

.footer-bottom {
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
}

/* ==========================================
   SCROLL TOP & FLOATING BUTTONS
   ========================================== */
.scroll-top {
	position: fixed;
	bottom: 90px;
	right: 25px;
	width: 45px;
	height: 45px;
	background: var(--gradient-primary);
	border: none;
	border-radius: 3px;
	color: var(--white);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
	box-shadow: 0 5px 20px color-mix(in srgb, var(--primary) 30%, transparent);
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-top:hover {
	background: var(--accent);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.floating-call-button {
	position: fixed;
	bottom: 25px;
	right: 25px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	background: var(--gradient-secondary);
	color: var(--white);
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	border-radius: 50px;
	box-shadow: 0 8px 30px color-mix(in srgb, var(--primary) 50%, transparent);
	transition: var(--transition);
	z-index: 1000;
	animation: pulse 2s infinite;
}

.floating-call-button i {
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	flex-shrink: 0;
}

@keyframes pulse {
	0%   { box-shadow: 0 0 0 0px color-mix(in srgb, var(--primary) 70%, transparent); }
	70%  { box-shadow: 0 0 0 14px color-mix(in srgb, var(--primary) 0%, transparent); }
	100% { box-shadow: 0 0 0 0px color-mix(in srgb, var(--primary) 0%, transparent); }
}

.floating-call-button:hover {
	transform: translateY(-3px);
	background: var(--gradient-secondary);
	box-shadow: 0 12px 40px color-mix(in srgb, var(--primary) 60%, transparent);
	animation: none;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {

	body {
		padding-top: 0 !important;
	}
	.logo-title {
		font-size: 16px !important;
	}
	.logo-title span {
		display: block !important;
	}

	.features-grid,
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.reviews-slider {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Why Images Grid - Tablet */
	.why-images-grid img:nth-child(2) {
		display: none;
	}

	.formulaire {
		max-width: 600px;
		margin: 30px auto 0 auto;
		/* Centre le formulaire sous la colonne d'infos */
	}

	.nav-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		max-width: 280px;
		height: 100vh;
		background: var(--white);
		flex-direction: column;
		padding: 80px 25px;
		box-shadow: 0 0 50px var(--shadow-strong);
		transition: left 0.3s ease;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-cta {
		display: flex !important;
		margin-left: auto;
		margin-right: 12px;
	}
	.nav-cta .btn-call {
		padding: 6px 12px !important;
		border-radius: 4px !important;
		font-size: 11px !important;
		height: auto !important;
		white-space: nowrap !important;
	}
	.nav-cta .btn-call i {
		display: none !important;
	}
	.nav-cta .btn-call .desktop-phone-num {
		display: none !important;
	}
	.nav-cta .btn-call .mobile-phone-txt {
		display: inline !important;
	}

	.top-bar {
		display: none !important;
	}
	.mobile-stars-bar {
		display: flex !important;
		justify-content: center;
		align-items: center;
		gap: 8px;
		background-color: var(--primary);
		padding: 10px 0;
		width: 100%;
		position: relative !important; /* Repassé en flux normal comme sur WORK-SITE4-LIEGE */
		top: auto !important;
		margin-top: -1px !important; /* Chevauche très légèrement de 1px la navbar pour éviter le blanc */
		z-index: 99;
	}
	.mobile-stars-bar i {
		color: #FFD700 !important;
		font-size: 12px;
	}
}

@media (max-width: 768px) {
	.top-bar-content {
		flex-direction: column;
		text-align: center;
	}

	.top-bar-info {
		gap: 10px;
	}

	.info-item:not(:last-child),
	.top-bar-social {
		display: none;
	}

	.info-item:last-child {
		justify-content: center;
		font-size: 14px;
	}

	.info-item:last-child a {
		font-size: 16px;
		font-weight: 700;
	}

	.hero {
		padding-top: 0 !important; /* Réinitialisé à 0 comme sur WORK-SITE4-LIEGE */
		margin-top: 0 !important;
	}
	.hero-bg {
		top: -5px !important;
		height: calc(100% + 5px) !important;
	}
	.hero-content {
		padding-top: 0 !important; /* Réinitialisé à 0 comme sur WORK-SITE4-LIEGE */
	}

	.hero-title {
		font-size: 28px !important;
	}

	.hero-description {
		font-size: 14px !important;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.about-grid,
	.why-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.services-grid,
	.reviews-slider {
		grid-template-columns: 1fr;
	}

	.cta-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 28px;
	}

	.feature-content h3 {
		font-size: 22px;
	}

	/* CTA Box - Mobile */
	.cta-box {
		padding: 16px;
		gap: 12px;
	}

	.cta-icon {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.cta-phone {
		font-size: 18px;
	}

	.cta-label {
		font-size: 12px;
	}

	/* Floating Call Button - Mobile */
	.floating-call-button {
		padding: 12px 18px;
		font-size: 15px;
		bottom: 20px;
		right: 20px;
	}

	.floating-call-button span {
		display: none;
	}

	.floating-call-button i {
		width: 44px;
		height: 44px;
		font-size: 20px;
	}

	.scroll-top {
		bottom: 85px;
		right: 20px;
	}

	/* FAQ Toggle - Mobile */
	.faq-header {
		padding: 16px 18px;
	}

	.faq-question-icon {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}

	.faq-question-text {
		font-size: 15px;
	}

	.faq-toggle-icon {
		width: 26px;
		height: 26px;
		font-size: 12px;
	}

	.faq-content-inner {
		padding: 0 18px 20px 18px;
	}

	/* Why Images Grid - Mobile */
	.why-images-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.why-images-grid img {
		width: 100% !important;
		max-width: none !important;
	}
}

/* ── FORMULAIRE DE CONTACT ── */
.formulaire {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 32px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.formulaire h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 24px;
}

.champ-rangee {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

@media (max-width: 480px) {
	.champ-rangee {
		grid-template-columns: 1fr;
	}
}

.champ {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 14px;
}

.champ label {
	font-size: 0.8rem;
	font-weight: 600;
	color: #555;
	text-align: left;
}

.champ input,
.champ select,
.champ textarea {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 10px 12px;
	font-size: 0.875rem;
	font-family: inherit;
	color: #333;
	background: #fff;
	outline: none;
	transition: border-color 0.18s;
}

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
	border-color: var(--primary);
}

.champ textarea {
	resize: vertical;
	min-height: 100px;
}

.btn-envoyer {
	width: 100%;
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 13px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.18s;
}

.btn-envoyer:hover {
	background: var(--primary-dark);
}

.note-form {
	font-size: 0.75rem;
	color: #777;
	margin-top: 10px;
	text-align: center;
}

/* ── LOGO DE LA MARQUE ── */
.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-logo .logo-img {
	height: 60px;
	width: auto;
	object-fit: contain;
	transition: height 0.3s ease;
}

@media (max-width: 768px) {
	.nav-logo .logo-img {
		height: 50px;
		/* Taille réduite sur mobile pour s'intégrer harmonieusement */
	}
}

/* ── CITY PILLS POUR LA ZONE DE COUVERTURE ── */
.zone-cities {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
	margin-bottom: 15px;
}

.city-pill {
	background: var(--light);
	border: 1px solid var(--gray);
	color: var(--text-dark);
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 0.85rem;
	font-weight: 500;
	display: inline-block;
}

#btn-voir-plus {
	background: transparent;
	color: var(--primary);
	border: 1px solid var(--primary);
	padding: 8px 20px;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.3s ease;
	margin-top: 15px;
	margin-bottom: 25px;
	/* Ajoute l'espacement avec les avantages en dessous */
	display: inline-block;
	/* Aligne le bouton sur sa propre largeur */
	width: fit-content;
	/* Empêche l'étirement du bouton */
}

#btn-voir-plus:hover {
	background: var(--primary);
	color: var(--white);
}

/* CALLBACK POPUP */
.callback-popup {
  position: fixed;
  right: 20px;
  top: 150px;
  background: var(--white);
  border-right: 4px solid var(--primary);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border-radius: 0;
  padding: 20px;
  z-index: 1000;
  min-width: 260px;
  display: none;
}
.close-popup {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  color: #64748B;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}
.close-popup:hover { color: var(--primary); }
.callback-content h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: none;
}
.callback-content p {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 15px;
}
.callback-input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 14px;
  margin-bottom: 12px;
}
.callback-btn {
  width: 100%;
  padding: 10px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.callback-btn:hover { background: var(--primary-dark); }

@media (max-width: 992px) {
  .callback-popup {
    left: 10px;
    right: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
    min-width: auto;
    border-right: 4px solid var(--primary);
    border-left: none;
  }
}