/* ==========================================
   AUTOPURE EXTERIOR SERVICE - ULTRA-PREMIUM DESIGN
   Automotive-Inspired Apple-Style Design
   ========================================== */

/* CSS Custom Properties - Premium Color Palette (Charcoal/Grey/Red) */
:root {
	/* Primary Colors - Elegant Charcoal & Grey */
	--primary-charcoal: #2D3748;
	--primary-slate: #4A5568;
	--secondary-grey: #718096;
	--light-grey: #A0AEC0;
	--very-light-grey: #E2E8F0;
	--background-grey: #F7FAFC;
    
	/* Accent Colors - Premium Red */
	--accent-red: #E53E3E;
	--accent-red-light: #FC8181;
	--accent-red-dark: #C53030;
    
	/* Chrome & Metal Effects */
	--chrome-silver: #E2E8F0;
	--chrome-light: #F7FAFC;
	--chrome-dark: #CBD5E0;
    
	/* Glass & Transparency */
	--glass-white: rgba(255, 255, 255, 0.15);
	--glass-grey: rgba(226, 232, 240, 0.2);
	--glass-charcoal: rgba(45, 55, 72, 0.1);
    
	/* Typography */
	--font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	--font-text: 'SF Pro Text', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    
	/* Spacing Scale */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2rem;
	--space-xl: 3rem;
	--space-2xl: 4rem;
	--space-3xl: 6rem;
    
	/* Border Radius */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-2xl: 32px;
    
	/* Shadows - Premium Depth */
	--shadow-sm: 0 2px 4px rgba(45, 55, 72, 0.1);
	--shadow-md: 0 4px 12px rgba(45, 55, 72, 0.15);
	--shadow-lg: 0 8px 24px rgba(45, 55, 72, 0.2);
	--shadow-xl: 0 16px 48px rgba(45, 55, 72, 0.25);
    
	/* Animation Curves - Apple-inspired */
	--ease-in-out-cubic: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
	--ease-in-quart: cubic-bezier(0.5, 0, 0.75, 0);
	--ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
	/* Automotive Specific */
	--car-metallic: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 50%, #A0AEC0 100%);
	--automotive-shine: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
}

/* Remove default padding for full-screen experience - Updated */
.main-content {
	padding: 0 !important;
}

/* Service Detail Page Container */
.service-detail-page {
	position: relative;
	min-height: 100vh;
	background: linear-gradient(135deg, var(--background-grey) 0%, var(--very-light-grey) 100%);
	overflow-x: hidden;
	font-family: var(--font-text);
	width: 100%;
	max-width: none;
	margin: 0;
	padding-left: max(2vw, var(--space-lg));
	padding-right: max(2vw, var(--space-lg));
	padding-top: var(--space-xl);
	padding-bottom: var(--space-xl);
}

.service-detail-page * {
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.service-detail-page {
		max-width: none;
		padding-left: var(--space-md);
		padding-right: var(--space-md);
	}
}

/* ==========================================
   ULTRA-PREMIUM ANIMATED BACKGROUND
   ========================================== */
.service-detail-page::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	background: 
		radial-gradient(circle at 20% 80%, var(--glass-grey) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, var(--glass-white) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, var(--glass-charcoal) 0%, transparent 50%);
	animation: meshShift 30s ease-in-out infinite;
}

@keyframes meshShift {
	0%, 100% { transform: scale(1) rotate(0deg); }
	50% { transform: scale(1.1) rotate(2deg); }
}

/* ==========================================
   ENHANCED HERO SECTION PREMIUM
   ========================================== */
.service-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, 
		rgba(255, 255, 255, 0.95) 0%, 
		rgba(247, 250, 252, 0.9) 50%,
		rgba(226, 232, 240, 0.85) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-xl);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.1),
		0 1px 0 rgba(255, 255, 255, 0.3) inset;
	padding: var(--space-xl);
	margin: var(--space-lg);
	overflow: hidden;
}

.service-hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, 
		rgba(229, 62, 62, 0.1) 0%, 
		rgba(45, 55, 72, 0.05) 50%,
		transparent 100%);
	border-radius: 50%;
	z-index: 0;
	animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
	50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

.hero-content {
	position: relative;
	z-index: 2;
	margin-bottom: var(--space-lg);
}

.service-hero h1 {
	font-family: var(--font-display);
	font-size: clamp(2.8rem, 6vw, 4.5rem);
	font-weight: 800;
	margin-bottom: var(--space-md);
	line-height: 1.1;
	background: linear-gradient(135deg, 
		var(--primary-charcoal) 0%, 
		var(--primary-slate) 50%,
		var(--accent-red) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 2;
	letter-spacing: -2px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-intro {
	font-size: 1.4rem;
	color: var(--secondary-grey);
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: var(--space-xl);
	position: relative;
	z-index: 2;
	font-style: italic;
}

/* Hero Features */
.hero-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: var(--space-xl);
	margin-bottom: var(--space-lg);
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.8rem 1.5rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 50px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-feature:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	border-color: var(--accent-red);
}

.hero-feature i {
	color: var(--accent-red);
	font-size: 1.1rem;
}

.hero-feature span {
	font-weight: 600;
	color: var(--primary-charcoal);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ==========================================
   SERVICE CONTENT PREMIUM
   ========================================== */
.service-content {
	padding: var(--space-3xl) var(--space-xl);
	max-width: 1200px;
	margin: 0 auto;
}

.service-description {
	margin-bottom: var(--space-3xl);
	text-align: center;
	position: relative;
}

.description-header {
	background: linear-gradient(135deg, 
		rgba(255, 255, 255, 0.9) 0%, 
		rgba(247, 250, 252, 0.8) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	box-shadow: 
		0 4px 20px rgba(0, 0, 0, 0.08),
		0 1px 0 rgba(255, 255, 255, 0.3) inset;
	margin-bottom: var(--space-xl);
}

.service-description h2 {
	font-family: var(--font-display);
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--primary-charcoal);
	margin-bottom: var(--space-lg);
	letter-spacing: -1px;
	line-height: 1.2;
	background: linear-gradient(135deg, 
		var(--primary-charcoal) 0%, 
		var(--accent-red) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.description-subtitle p {
	font-size: 1.3rem;
	color: var(--secondary-grey);
	line-height: 1.8;
	margin: 0;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 400;
}

.service-description > p {
	font-size: 1.2rem;
	color: var(--secondary-grey);
	line-height: 1.6;
	margin-bottom: var(--space-2xl);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================
   PREMIUM FLIP CARDS - OPTIMIZED SPACING
   ========================================== */
.flip-card-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: var(--space-3xl);
	padding: 1rem 2rem;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	justify-items: center;
	align-items: start;
}

.flip-card {
	background: transparent;
	width: 100%;
	max-width: 320px;
	height: 280px;
	perspective: 1000px;
	cursor: pointer;
	margin: 0;
	position: relative;
	border-radius: var(--radius-lg);
	overflow: visible;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s var(--ease-out-quart);
	transform-style: preserve-3d;
	background: transparent;
	border-radius: var(--radius-lg);
	box-shadow: none;
	border: none;
	-webkit-transform-style: preserve-3d;
	will-change: transform;
	perspective: 1000px;
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--glass-grey);
	overflow: hidden;
	box-sizing: border-box;
	box-shadow: none;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	will-change: transform;
}

.flip-card-front {
	background: linear-gradient(135deg, 
		rgba(255, 255, 255, 0.95) 0%, 
		rgba(247, 250, 252, 0.9) 100%);
	backdrop-filter: blur(10px);
	color: var(--primary-charcoal);
	transform: rotateY(0deg);
}

.flip-card-back {
	background: linear-gradient(135deg, 
		var(--primary-charcoal) 0%, 
		var(--primary-slate) 50%,
		var(--accent-red) 100%);
	color: white;
	transform: rotateY(180deg);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: var(--space-sm);
	display: block;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
	background: var(--car-metallic);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-sm);
	border: 2px solid var(--chrome-silver);
}

/* Professional Icon Container for Exterior Services */
.feature-icon-professional {
	width: 70px;
	height: 70px;
	border-radius: 16px;
	background: linear-gradient(135deg, 
		var(--primary-charcoal) 0%, 
		var(--primary-slate) 50%,
		var(--accent-red) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-md);
	box-shadow: 
		0 8px 32px rgba(45, 55, 72, 0.15),
		0 1px 0 rgba(255, 255, 255, 0.1) inset,
		0 -1px 0 rgba(0, 0, 0, 0.1) inset;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	transition: all 0.4s var(--ease-out-quart);
}

.feature-icon-professional::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(255, 255, 255, 0.2) 50%, 
		transparent 100%);
	transition: left 0.6s var(--ease-out-quart);
}

.flip-card:hover .feature-icon-professional::before {
	left: 100%;
}

.feature-icon-professional i {
	font-size: 1.8rem;
	color: white;
	z-index: 2;
	position: relative;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.flip-card:hover .feature-icon-professional {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 
		0 12px 40px rgba(45, 55, 72, 0.25),
		0 1px 0 rgba(255, 255, 255, 0.1) inset,
		0 -1px 0 rgba(0, 0, 0, 0.1) inset;
}

.flip-card-front h3, .flip-card-back h3 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	margin: var(--space-sm) 0;
	text-align: center;
}

.flip-card-front h3 {
	color: var(--primary-charcoal);
}

.flip-card-back h3 {
	color: white;
	margin-bottom: var(--space-md);
}

.flip-card-back p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.4;
	font-size: 0.85rem;
	text-align: left;
	margin: 0;
	white-space: pre-line;
}

/* ==========================================
   PRICING SECTION PREMIUM - FIXED
   ========================================== */
.pricing-section {
	margin-bottom: var(--space-3xl);
	text-align: center;
	position: relative;
	z-index: 1;
}

.pricing-header {
	margin-bottom: var(--space-2xl);
	background: linear-gradient(135deg, 
		rgba(255, 255, 255, 0.9) 0%, 
		rgba(247, 250, 252, 0.8) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	box-shadow: 
		0 4px 20px rgba(0, 0, 0, 0.08),
		0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.pricing-header h2 {
	font-family: var(--font-display);
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--primary-charcoal);
	margin-bottom: var(--space-md);
	letter-spacing: -1px;
	background: linear-gradient(135deg, 
		var(--primary-charcoal) 0%, 
		var(--accent-red) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pricing-header p {
	font-size: 1.2rem;
	color: var(--secondary-grey);
	margin: 0;
	font-weight: 500;
}

.pricing-section h2 {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-charcoal);
	margin-bottom: var(--space-2xl);
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: var(--space-xl);
	max-width: 900px;
	margin: 0 auto;
	padding: var(--space-lg);
	position: relative;
	z-index: 2;
	justify-items: center;
}

.price-card {
	position: relative;
	background: linear-gradient(145deg, 
		rgba(255, 255, 255, 0.9) 0%, 
		rgba(247, 250, 252, 0.8) 100%);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-grey);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	transition: all 0.4s var(--ease-out-quart);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	margin: var(--space-sm) 0;
	z-index: 3;
	width: 100%;
	max-width: 380px;
	min-height: 320px;
}

.price-card:hover {
	transform: translateY(-5px) scale(1.01);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-red);
}

.price-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, 
		rgba(229, 62, 62, 0.05) 0%, 
		rgba(45, 55, 72, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.price-card:hover::before {
	opacity: 1;
}

.price-card h3 {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--primary-charcoal);
	margin-bottom: var(--space-lg);
	position: relative;
	z-index: 2;
}

.price-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--space-xl) 0;
	position: relative;
	z-index: 2;
}

.price-card li {
	display: flex;
	align-items: center;
	padding: var(--space-xs) 0;
	color: var(--primary-slate);
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Style révisé pour les badges et les prix */
.price-tag {
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	text-align: center;
}

.badge-container {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.unavailable-badge {
	background: linear-gradient(90deg, #9333ea 0%, #7e22ce 100%);
	color: white;
	padding: 0.35rem 0.85rem;
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(147, 51, 234, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: inline-block;
}

.price-card {
	border-radius: 12px;
	padding: 2rem;
	background: white;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(240, 242, 245, 1);
	position: relative;
	overflow: hidden;
}

.price-card.future-formule {
	background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
	border-color: #e5e7eb;
}

.price-card.future-formule::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #9333ea 0%, #7e22ce 100%);
}

.price-card h3 {
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
	color: #1f2937;
	font-size: 1.4rem;
	text-align: center;
	font-weight: 700;
}

/* ==========================================
   PREMIUM BUTTONS
   ========================================== */
.btn-reservation {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-md) var(--space-xl);
	background: transparent;
	border: 2px solid var(--accent-red);
	border-radius: var(--radius-lg);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s var(--ease-out-quart);
	overflow: hidden;
	color: var(--accent-red);
	min-width: 200px;
	z-index: 2;
}

.btn-reservation:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-red-dark);
	color: white;
	text-decoration: none;
}

.btn-reservation::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--accent-red), var(--accent-red-dark));
	transition: left 0.3s ease;
	z-index: -1;
}

.btn-reservation:hover::before {
	left: 0;
}

.btn-reservation::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--automotive-shine);
	animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
	0% { left: -100%; }
	50% { left: 100%; }
	100% { left: 100%; }
}

/* ==========================================
   MESSAGES PREMIUM
   ========================================== */
.messages {
	position: fixed;
	top: var(--space-lg);
	right: var(--space-lg);
	z-index: 1000;
	max-width: 400px;
}

.alert {
	padding: var(--space-md);
	border-radius: var(--radius-md);
	margin-bottom: var(--space-sm);
	background: linear-gradient(145deg, var(--glass-white), var(--chrome-light));
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-grey);
	box-shadow: var(--shadow-lg);
	color: var(--primary-charcoal);
	animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.alert-success {
	border-left: 4px solid var(--accent-red);
}

.alert-error {
	border-left: 4px solid #E53E3E;
}

/* ==========================================
   RESPONSIVE DESIGN - IMPROVED SPACING
   ========================================== */
@media (max-width: 768px) {
	.flip-card-container {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
		padding: var(--space-md);
		margin-bottom: var(--space-2xl);
	}
    
	.pricing-cards {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
		padding: var(--space-md);
	}
    
	.flip-card {
		max-width: 100%;
		margin: var(--space-md) 0;
	}
    
	.price-card {
		max-width: 100%;
		margin: var(--space-md) 0;
		min-height: 280px;
	}
    
	.service-hero h1 {
		font-size: 2rem;
	}
    
	.service-description h2,
	.pricing-section h2 {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.service-detail-page {
		padding-left: var(--space-sm);
		padding-right: var(--space-sm);
	}
    
	.service-content {
		padding: var(--space-xl) var(--space-lg);
	}
    
	.flip-card-container {
		gap: var(--space-lg);
		padding: var(--space-sm);
	}
    
	.pricing-cards {
		gap: var(--space-lg);
		padding: var(--space-sm);
	}
    
	.price-card {
		padding: var(--space-lg);
		margin: var(--space-sm) 0;
		min-height: 260px;
	}
    
	.flip-card {
		height: 250px;
		margin: var(--space-sm) 0;
	}
    
	.flip-card-front, .flip-card-back {
		padding: var(--space-lg);
	}
}

/* ==========================================
   FIX FLIP CARD ARTIFACTS - NO BACKGROUND SQUARES
   ========================================== */
.flip-card,
.flip-card *,
.flip-card-inner,
.flip-card-inner *,
.flip-card-front,
.flip-card-back {
	outline: none !important;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

/* Prevent any pseudo-elements from creating background artifacts */
.flip-card::before,
.flip-card::after,
.flip-card-inner::before,
.flip-card-inner::after {
	display: none !important;
}

/* Ensure smooth transforms without background bleeding */
.flip-card-front,
.flip-card-back {
	-webkit-transform-origin: center center;
	transform-origin: center center;
	will-change: transform;
}

/* ==========================================
   ELIMINATE DOUBLE CARD EFFECT
   ========================================== */

/* Ensure only one face is visible at a time */
.flip-card-front {
	opacity: 1;
	visibility: visible;
}

.flip-card-back {
	opacity: 1;
	visibility: visible;
}

/* During flip transition, ensure smooth visibility */
.flip-card:hover .flip-card-front {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.flip-card:hover .flip-card-back {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease-in-out 0.3s, visibility 0.3s ease-in-out 0.3s;
}

/* Ensure clean rendering during transform */
.flip-card,
.flip-card-inner,
.flip-card-front,
.flip-card-back {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

/* Service Unavailable Styles - Enhanced Modern Design with Animation */
@keyframes banner-appear {
	0% { opacity: 0; transform: translateY(-20px) scale(0.96); }
	40% { opacity: 0.8; transform: translateY(5px) scale(1.01); }
	70% { transform: translateY(-3px) scale(1); }
	100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes soft-pulse {
	0% { box-shadow: 0 6px 32px rgba(80, 80, 120, 0.10); }
	50% { box-shadow: 0 8px 40px rgba(251, 191, 36, 0.18); }
	100% { box-shadow: 0 6px 32px rgba(80, 80, 120, 0.10); }
}

@keyframes icon-wave {
	0% { transform: rotate(0deg); }
	25% { transform: rotate(-8deg); }
	50% { transform: rotate(0deg); }
	75% { transform: rotate(8deg); }
	100% { transform: rotate(0deg); }
}

.service-unavailable {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background: linear-gradient(120deg, #fffbe6 40%, #fff1c9 70%, #e0e7ff 100%);
	border-left: 6px solid #fbbf24;
	box-shadow: 0 6px 32px rgba(80, 80, 120, 0.10);
	border-radius: 14px;
	padding: 2rem 2.5rem;
	margin: 2.5rem auto 2rem auto;
	max-width: 650px;
	transition: all 0.3s ease;
	opacity: 1 !important;
	visibility: visible !important;
	display: block !important;
	animation: banner-appear 0.8s ease-out, soft-pulse 4s infinite ease-in-out 2s;
}
.service-unavailable-icon {
	font-size: 3.2rem;
	color: #fbbf24;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(0 2px 8px #fbbf2433);
	animation: icon-wave 3s infinite ease-in-out 1s;
	position: relative;
}

.service-unavailable-icon::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0) 70%);
	border-radius: 50%;
	z-index: -1;
	animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
	0% { transform: scale(0.8); opacity: 0.4; }
	50% { transform: scale(1.2); opacity: 0.2; }
	100% { transform: scale(0.8); opacity: 0.4; }
}
.service-unavailable-content {
	flex: 1;
	text-align: left;
}
@keyframes text-appear {
	0% { opacity: 0; transform: translateX(10px); }
	100% { opacity: 1; transform: translateX(0); }
}

.service-unavailable-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #b45309;
	margin-bottom: 0.5rem;
	letter-spacing: 0.01em;
	animation: text-appear 0.5s ease-out 0.3s both;
	background: linear-gradient(90deg, #b45309, #d97706);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}

.service-unavailable p {
	margin: 0.3rem 0 0.7rem 0;
	color: #6b7280;
	font-size: 1.05rem;
	animation: text-appear 0.5s ease-out 0.5s both;
}

.service-unavailable p:nth-child(3) {
	animation-delay: 0.7s;
}
@keyframes button-appear {
	0% { opacity: 0; transform: translateY(10px); }
	60% { opacity: 1; transform: translateY(-5px); }
	80% { transform: translateY(2px); }
	100% { transform: translateY(0); }
}

.service-unavailable .btn-service {
	margin-top: 0.7rem;
	background: linear-gradient(90deg, #1d4ed8 20%, #3b82f6 70%, #60a5fa 100%);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 0.8rem 1.8rem;
	font-weight: 600;
	font-size: 1rem;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
	transition: all 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67);
	cursor: pointer;
	display: inline-block;
	position: relative;
	overflow: hidden;
	animation: button-appear 0.7s ease-out 0.9s both;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	z-index: 1;
}

.service-unavailable .btn-service::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.7s ease;
	z-index: -1;
}

.service-unavailable .btn-service:hover {
	background: linear-gradient(90deg, #2563eb 20%, #3b82f6 70%, #93c5fd 100%);
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
	transform: translateY(-3px) scale(1.03);
	letter-spacing: 0.03em;
}

.service-unavailable .btn-service:hover::before {
	left: 100%;
}
@media (max-width: 700px) {
	.service-unavailable {
		flex-direction: column;
		padding: 1.5rem 1.2rem;
		gap: 0.8rem;
		margin: 1.8rem 1rem;
	}
    
	.service-unavailable-content {
		text-align: center;
	}
    
	.service-unavailable-icon {
		font-size: 2.5rem;
		margin-bottom: 0.3rem;
	}
    
	.service-unavailable-title {
		font-size: 1.25rem;
	}
    
	.service-unavailable p {
		font-size: 1rem;
		margin: 0.2rem 0 0.5rem;
	}
    
	.service-unavailable .btn-service {
		padding: 0.7rem 1.6rem;
		width: 100%;
		margin-top: 0.5rem;
		transition: transform 0.3s, background-color 0.3s;
	}
    
	.service-unavailable .btn-service:active {
		transform: scale(0.98);
	}
}

/* Style spécial pour les prix non déterminés */
@keyframes price-pulse {
	0% { opacity: 0.85; }
	50% { opacity: 1; }
	100% { opacity: 0.85; }
}

.price-amount {
	font-size: 1.15rem;
	color: #6366f1;
	letter-spacing: 0.02em;
	font-style: italic;
	font-weight: 500;
	animation: price-pulse 2s infinite;
	position: relative;
	display: inline-block;
	background: linear-gradient(90deg, #4f46e5, #818cf8);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.5rem;
	padding: 0.2rem 0;
}

/* Style révisé pour les badges et les prix */
.price-tag {
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	text-align: center;
}

.badge-container {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.unavailable-badge {
	background: linear-gradient(90deg, #9333ea 0%, #7e22ce 100%);
	color: white;
	padding: 0.35rem 0.85rem;
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(147, 51, 234, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: inline-block;
}

.price-card {
	border-radius: 12px;
	padding: 2rem;
	background: white;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(240, 242, 245, 1);
	position: relative;
	overflow: hidden;
}

.price-card.future-formule {
	background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
	border-color: #e5e7eb;
}

.price-card.future-formule::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #9333ea 0%, #7e22ce 100%);
}

.price-card h3 {
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
	color: #1f2937;
	font-size: 1.4rem;
	text-align: center;
	font-weight: 700;
}


/* ==========================================
   ENHANCED STYLES FOR EXTERIOR SERVICES
   ========================================== */

/* New Coming Soon Badges */
.coming-soon-badge {
position: absolute;
top: -1px;
right: -1px;
background: linear-gradient(135deg, var(--primary-charcoal) 0%, var(--primary-slate) 100%);
color: white;
padding: 8px 16px;
border-radius: 0 12px 0 12px;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
z-index: 10;
box-shadow: 
0 4px 16px rgba(45, 55, 72, 0.3),
0 1px 0 rgba(255, 255, 255, 0.2) inset;
white-space: nowrap;
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}

.coming-soon-badge.premium {
background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
box-shadow: 
0 4px 16px rgba(229, 62, 62, 0.3),
0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

/* Enhanced Future Cards */
.price-card.premium-future {
border-color: rgba(229, 62, 62, 0.3) !important;
background: linear-gradient(135deg, 
rgba(255, 255, 255, 0.95) 0%, 
rgba(254, 242, 242, 0.9) 100%) !important;
}

.price-card.premium-future:hover {
border-color: rgba(229, 62, 62, 0.5) !important;
}

/* Enhanced Notice Section */
.notice-content {
background: linear-gradient(135deg, 
rgba(255, 255, 255, 0.9) 0%, 
rgba(247, 250, 252, 0.8) 100%);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: var(--radius-lg);
padding: var(--space-xl);
box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.08),
0 1px 0 rgba(255, 255, 255, 0.3) inset;
display: flex;
align-items: center;
gap: var(--space-lg);
text-align: left;
}

.notice-icon {
flex-shrink: 0;
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 
0 4px 16px rgba(229, 62, 62, 0.3),
0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.notice-icon i {
font-size: 1.5rem;
color: white;
}

.notice-text h4 {
font-family: var(--font-display);
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-charcoal);
margin-bottom: var(--space-sm);
}

.notice-text p {
color: var(--secondary-grey);
line-height: 1.6;
margin-bottom: var(--space-md);
}

.btn-notice {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.8rem 1.5rem;
background: linear-gradient(135deg, var(--primary-charcoal) 0%, var(--accent-red) 100%);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 16px rgba(45, 55, 72, 0.2);
}

.btn-notice:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(45, 55, 72, 0.3);
text-decoration: none;
color: white;
}

.service-unavailable-icon i {
font-size: 3rem;
color: var(--accent-red);
}
