/* ==========================================
   AUTOPURE INTERIOR 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%);
}

/* Spacing for price info blocks (moved from inline styles) */
.price-info { margin-bottom: 1.5rem; }

/* Remove default padding for full-screen experience */
.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;
}

.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);
}

.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;
}

@media (max-width: 768px) {
	.hero-features {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	
	.hero-feature {
		width: 100%;
		max-width: 250px;
		justify-content: center;
	}
	
	.service-hero {
		min-height: 50vh;
		margin: var(--space-sm);
		padding: var(--space-lg);
	}
}

/* ==========================================
   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
   ========================================== */
/* ==========================================
   ENHANCED FLIP CARDS - PROFESSIONAL DESIGN
   ========================================== */

.flip-card-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: var(--space-3xl);
	padding: 0 1rem;
}

.flip-card {
	perspective: 1000px;
	width: 100%;
	height: 220px;
	border-radius: var(--radius-lg);
	transition: transform 0.3s ease;
}

.flip-card:hover {
	transform: translateY(-4px);
}

.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 rgba(0, 0, 0, 0.05);
	overflow: hidden;
	box-sizing: border-box;
	box-shadow: 
		0 4px 20px rgba(0, 0, 0, 0.08),
		0 1px 0 rgba(255, 255, 255, 0.2) inset;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	will-change: transform;
}

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

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

.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 */
.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(280px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
	position: relative;
	z-index: 2;
	justify-items: center;
	align-items: stretch;
}

.price-card {
	position: relative;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	box-shadow: 
		0 1px 3px rgba(0, 0, 0, 0.1),
		0 1px 2px rgba(0, 0, 0, 0.06);
	margin: 0;
	z-index: 3;
	width: 100%;
	max-width: 360px;
	height: 100%;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.price-card.premium-card {
	border: 2px solid rgba(229, 62, 62, 0.3);
	background: linear-gradient(135deg, 
		rgba(255, 255, 255, 0.98) 0%, 
		rgba(254, 242, 242, 0.95) 100%);
	min-height: 640px;
	position: relative;
	overflow: hidden;
	transform: scale(1.05);
	box-shadow: 
		0 12px 40px rgba(229, 62, 62, 0.15),
		0 4px 16px rgba(0, 0, 0, 0.1),
		0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.price-card.premium-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 20%, rgba(229, 62, 62, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(229, 62, 62, 0.05) 0%, transparent 50%);
	pointer-events: none;
	border-radius: 16px;
}

.price-card.premium-card:hover {
	transform: translateY(-6px) scale(1.05);
	box-shadow: 
		0 16px 48px rgba(229, 62, 62, 0.2),
		0 6px 20px rgba(0, 0, 0, 0.15),
		0 1px 0 rgba(255, 255, 255, 0.5) inset;
	border-color: rgba(229, 62, 62, 0.5);
}

/* Standard cards hover effect */
.price-card:hover {
	transform: translateY(-4px);
	box-shadow: 
		0 10px 25px rgba(0, 0, 0, 0.15),
		0 5px 10px rgba(0, 0, 0, 0.05);
	border-color: rgba(229, 62, 62, 0.3);
}

/* Express Card Styling - Same colors as other cards */
.price-card.express-card {
	border-left: 4px solid var(--primary-charcoal);
	background: rgba(255, 255, 255, 0.9);
}

.express-card .price-amount {
	color: var(--primary-charcoal);
}

.express-card .btn-reservation {
	background: linear-gradient(135deg, var(--primary-charcoal) 0%, var(--primary-slate) 100%);
	border: 2px solid var(--primary-charcoal);
	color: white;
}

.express-card .btn-reservation:hover {
	background: linear-gradient(135deg, var(--primary-slate) 0%, var(--primary-charcoal) 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(45, 55, 72, 0.25);
}

/* Enhanced Popular Badge */
.popular-badge {
	position: absolute;
	top: -1px;
	right: -1px;
	background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
	color: white;
	padding: 8px 16px;
	border-radius: 0 16px 0 16px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 10;
	box-shadow: 
		0 4px 16px rgba(229, 62, 62, 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);
	animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.popular-badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(255, 255, 255, 0.3) 50%, 
		transparent 100%);
	transition: left 0.6s ease;
}

.premium-card:hover .popular-badge::before {
	left: 100%;
}

/* Price Display */
.price-display {
	text-align: center;
	margin: 1.5rem 0;
	position: relative;
}

.price-amount {
	display: block;
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--primary-charcoal);
	line-height: 0.9;
	margin-bottom: 0.5rem;
	letter-spacing: -2px;
}

.price-detail {
	font-size: 1rem;
	color: var(--secondary-grey);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.duration-badge {
	display: inline-block;
	background: #F7FAFC;
	color: var(--secondary-grey);
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 500;
	margin-top: 0.8rem;
	border: 1px solid #E2E8F0;
}

.price-info {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--glass-grey);
}

.price-info small {
	color: var(--secondary-grey);
	font-size: 0.9rem;
	font-weight: 500;
}

.price-card.premium-card .price-info {
	margin-top: 2rem;
	padding-top: 2rem;
}

.price-card h3 {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--primary-charcoal);
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 2;
	text-align: center;
	letter-spacing: -0.5px;
}

.price-card ul {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	position: relative;
	z-index: 2;
	flex-grow: 1;
	display: grid;
	gap: 0.8rem;
}

.price-card li {
	display: grid;
	grid-template-columns: 20px 1fr;
	align-items: start;
	color: var(--primary-slate);
	font-size: 0.95rem;
	line-height: 1.6;
	font-weight: 500;
	gap: 1rem;
	min-height: 24px;
	padding: 0.1rem 0;
}

.price-card li .check {
	color: #10B981;
	font-weight: 700;
	font-size: 1rem;
	text-align: center;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Suppression du pseudo-élément ::before */

/* ==========================================
   ENHANCED PRICING CARDS - PROFESSIONAL DESIGN
   ========================================== */

/* Enhanced card hover effects */
.price-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, 
		rgba(255, 255, 255, 0.1) 0%, 
		rgba(255, 255, 255, 0.05) 50%,
		rgba(0, 0, 0, 0.02) 100%);
	border-radius: 16px;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

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

/* Premium card special styling */
.price-card.premium-card {
	border: 2px solid rgba(229, 62, 62, 0.2);
	background: linear-gradient(135deg, 
		rgba(255, 255, 255, 0.98) 0%, 
		rgba(254, 242, 242, 0.95) 100%);
	position: relative;
	overflow: hidden;
}

.price-card.premium-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 20%, rgba(229, 62, 62, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(229, 62, 62, 0.03) 0%, transparent 50%);
	pointer-events: none;
	border-radius: 16px;
}

/* Express card enhanced styling */
.price-card.express-card {
	border-left: 4px solid var(--primary-charcoal);
	background: linear-gradient(135deg, 
		rgba(255, 255, 255, 0.95) 0%, 
		rgba(247, 250, 252, 0.9) 100%);
	position: relative;
}

.price-card.express-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 10% 10%, rgba(45, 55, 72, 0.03) 0%, transparent 50%);
	pointer-events: none;
	border-radius: 16px;
}

/* Enhanced button styling */
.btn-reservation {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem 2.5rem;
	background: linear-gradient(135deg, var(--primary-charcoal) 0%, var(--primary-slate) 100%);
	border: 2px solid transparent;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	color: white;
	transition: all 0.3s var(--ease-out-quart);
	min-width: 220px;
	z-index: 2;
	font-family: var(--font-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 
		0 4px 16px rgba(45, 55, 72, 0.2),
		0 1px 0 rgba(255, 255, 255, 0.1) inset;
	overflow: hidden;
}

.btn-reservation::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 ease;
}

.btn-reservation:hover::before {
	left: 100%;
}

.btn-reservation:hover {
	background: linear-gradient(135deg, var(--primary-slate) 0%, var(--accent-red) 100%);
	transform: translateY(-2px) scale(1.02);
	box-shadow: 
		0 8px 32px rgba(45, 55, 72, 0.3),
		0 2px 0 rgba(255, 255, 255, 0.1) inset;
	text-decoration: none;
	color: white;
	border-color: rgba(255, 255, 255, 0.2);
}

/* Premium button special styling */
.premium-card .btn-reservation {
	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;
}

.premium-card .btn-reservation:hover {
	background: linear-gradient(135deg, var(--accent-red-dark) 0%, var(--primary-charcoal) 100%);
	box-shadow: 
		0 8px 32px rgba(229, 62, 62, 0.4),
		0 2px 0 rgba(255, 255, 255, 0.2) inset;
}

/* Enhanced price amount styling */
.price-amount {
	display: block;
	font-family: var(--font-display);
	font-size: 3.8rem;
	font-weight: 800;
	color: var(--primary-charcoal);
	line-height: 0.9;
	margin-bottom: 0.5rem;
	letter-spacing: -3px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	background: linear-gradient(135deg, var(--primary-charcoal) 0%, var(--accent-red) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Enhanced title styling */
.price-card h3 {
	font-family: var(--font-display);
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--primary-charcoal);
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 2;
	text-align: center;
	letter-spacing: -0.8px;
	text-transform: uppercase;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   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;
}

/* ==========================================
   PRICING INFO SECTION
   ========================================== */
.pricing-info-section {
	margin-top: 4rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1rem;
}

.pricing-note {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	box-shadow: 
		0 1px 3px rgba(0, 0, 0, 0.1),
		0 1px 2px rgba(0, 0, 0, 0.06);
	transition: all 0.2s ease;
}

.pricing-note:hover {
	box-shadow: 
		0 4px 12px rgba(0, 0, 0, 0.15),
		0 2px 4px rgba(0, 0, 0, 0.06);
	transform: translateY(-1px);
}

.info-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: var(--accent-red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.1rem;
}

.info-content {
	flex: 1;
	text-align: center;
}

.info-content h4 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary-charcoal);
	margin: 0 0 1rem 0;
	letter-spacing: -0.3px;
	text-align: center;
}

.info-content p {
	color: var(--secondary-grey);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0.8rem 0;
	font-weight: 500;
	text-align: center;
}

.bonus-info {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 12px;
	padding: 1rem 1.5rem;
	margin-top: 1.5rem !important;
	color: #065f46 !important;
	font-weight: 600 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	text-align: center;
}

.bonus-info i {
	color: #10b981;
	margin-right: 0.8rem;
	font-size: 1.1rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* ==========================================
   RESPONSIVE DESIGN - OPTIMIZED SPACING
   ========================================== */
@media (max-width: 768px) {
	.flip-card-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1rem;
		margin-bottom: var(--space-2xl);
	}
    
	.pricing-cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1rem;
	}
    
	.flip-card {
		max-width: 100%;
		margin: 0;
	}
    
	.price-card {
		max-width: 100%;
		margin: 0;
		min-height: 350px;
		height: auto;
	}
    
	.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: 1rem;
		padding: 0.5rem;
	}
    
	.pricing-cards {
		gap: 1rem;
		padding: 0.5rem;
	}
    
	.price-card {
		padding: 1rem;
		margin: 0;
		min-height: 320px;
		height: auto;
	}
    
	.flip-card {
		height: 250px;
		margin: 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;
}

/* ==========================================
   CORRECTIONS RESPONSIVE FORCES POUR CONTRER RESPONSIVE-FIXES-CLEAN.CSS
   ========================================== */

/* Corrections spécifiques pour la page de service intérieur */
@media (max-width: 768px) {
	/* Force le bon comportement du main-content pour les pages de services */
	body .main-content {
		padding-left: 0 !important;
		padding-right: 0 !important;
		width: 100% !important;
		max-width: 100vw !important;
	}
    
	/* Force le bon comportement de service-detail-page */
	.service-detail-page {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
		margin: 0 !important;
		width: 100% !important;
		max-width: 100vw !important;
		box-sizing: border-box !important;
	}
    
	/* Corrections spécifiques pour pricing-info-section */
	.pricing-info-section {
		margin-top: 2rem !important;
		padding: 0 0.5rem !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
    
	/* Force le comportement colonne pour pricing-note */
	.pricing-note {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		gap: 1rem !important;
		padding: 1.5rem !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
    
	/* Centrage et ajustement de l'icône */
	.pricing-note .info-icon {
		flex-shrink: 0 !important;
		margin-bottom: 0 !important;
	}
    
	/* Force le centrage du contenu */
	.pricing-note .info-content {
		text-align: center !important;
		width: 100% !important;
	}
    
	.pricing-note .info-content h4 {
		text-align: center !important;
		margin-bottom: 1rem !important;
	}
    
	.pricing-note .info-content p {
		text-align: center !important;
		font-size: 0.95rem !important;
		line-height: 1.5 !important;
	}
    
	/* Force le comportement du bonus-info */
	.bonus-info {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		text-align: center !important;
		gap: 0.5rem !important;
		padding: 0.8rem 1rem !important;
		font-size: 0.9rem !important;
	}
    
	.bonus-info i {
		margin-right: 0 !important;
		margin-bottom: 0 !important;
	}
}

@media (max-width: 480px) {
	/* Ajustements pour très petits écrans */
	.service-detail-page {
		padding-left: 0.5rem !important;
		padding-right: 0.5rem !important;
	}
    
	.pricing-info-section {
		padding: 0 0.25rem !important;
		margin-top: 1.5rem !important;
	}
    
	.pricing-note {
		padding: 1rem !important;
		border-radius: 12px !important;
	}
    
	.pricing-note .info-icon {
		width: 36px !important;
		height: 36px !important;
		font-size: 0.9rem !important;
	}
    
	.pricing-note .info-content h4 {
		font-size: 1rem !important;
		margin-bottom: 0.8rem !important;
	}
    
	.pricing-note .info-content p {
		font-size: 0.85rem !important;
		line-height: 1.4 !important;
	}
    
	.bonus-info {
		padding: 0.6rem 0.8rem !important;
		font-size: 0.8rem !important;
		border-radius: 10px !important;
	}
}
