/* Choix Assurance Santé - Design Moderne */

/* Container principal */
.choix-sante-section {
	padding: 100px 0 80px;
	background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
	min-height: 70vh;
}

/* Section titre */
.choix-sante-header {
	text-align: center;
	margin-bottom: 60px;
	animation: fadeInUp 0.6s ease;
}

.choix-sante-header h2 {
	font-size: 42px;
	font-weight: 700;
	color: #2C3E50;
	margin-bottom: 20px;
}

.choix-sante-header p {
	font-size: 18px;
	color: #6c757d;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Cartes de choix modernes */
.sante-choice-card {
	position: relative;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	height: 100%;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	margin-bottom: 30px;
}

.sante-choice-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 60px rgba(5, 25, 34, 0.2);
}

.sante-choice-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #8B1538 0%, #A91D4A 100%);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.sante-choice-card:hover::before {
	transform: scaleX(1);
}

/* Image de la carte */
.sante-card-image {
	position: relative;
	height: 300px;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sante-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sante-choice-card:hover .sante-card-image img {
	transform: scale(1.1);
}

/* Badge sur l'image */
.sante-card-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(139, 21, 56, 0.95);
	backdrop-filter: blur(10px);
	color: white;
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	z-index: 2;
}

/* Icône sur l'image */
.sante-card-icon {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	z-index: 2;
}

.sante-choice-card:hover .sante-card-icon {
	transform: rotate(15deg) scale(1.1);
	background: #8B1538;
	color: white;
}

/* Contenu de la carte */
.sante-card-content {
	padding: 35px;
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.sante-card-content h3 {
	font-size: 28px;
	font-weight: 700;
	color: #2C3E50;
	margin-bottom: 20px;
	transition: color 0.3s ease;
}

.sante-choice-card:hover .sante-card-content h3 {
	color: #8B1538;
}

.sante-card-content p {
	font-size: 16px;
	color: #6c757d;
	line-height: 1.8;
	margin-bottom: 25px;
	flex: 1;
}

/* Liste des caractéristiques */
.sante-card-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	text-align: left;
}

.sante-card-features li {
	padding: 12px 0;
	color: #495057;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid #f0f0f0;
}

.sante-card-features li:last-child {
	border-bottom: none;
}

.sante-card-features li::before {
	content: '✓';
	color: #8B1538;
	font-weight: bold;
	font-size: 20px;
	flex-shrink: 0;
}

/* Bouton CTA */
.sante-card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 35px;
	background: linear-gradient(135deg, #8B1538 0%, #A91D4A 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(139, 21, 56, 0.3);
	border: none;
	cursor: pointer;
	width: 100%;
	margin-top: auto;
}

.sante-card-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(139, 21, 56, 0.4);
	color: white;
	text-decoration: none;
}

.sante-card-btn i {
	transition: transform 0.3s ease;
	font-size: 18px;
}

.sante-card-btn:hover i {
	transform: translateX(5px);
}

/* Animation de pulsation pour le badge populaire */
@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.sante-card-badge.popular {
	animation: pulse 2s infinite;
	background: linear-gradient(135deg, #8B1538 0%, #A91D4A 100%);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.sante-choice-card {
	animation: fadeInUp 0.6s ease forwards;
	opacity: 0;
}

.sante-choice-card:nth-child(1) {
	animation-delay: 0.1s;
}

.sante-choice-card:nth-child(2) {
	animation-delay: 0.2s;
}

/* Section info complémentaire */
.sante-info-section {
	margin-top: 80px;
	padding: 50px;
	background: linear-gradient(135deg, #8B1538 0%, #A91D4A 100%);
	border-radius: 20px;
	text-align: center;
	color: white;
	box-shadow: 0 20px 60px rgba(139, 21, 56, 0.3);
	position: relative;
	overflow: hidden;
}

.sante-info-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 1;
}

.sante-info-section h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.sante-info-section p {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.95;
	position: relative;
	z-index: 1;
}

.sante-info-section a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 40px;
	background: white;
	color: #8B1538;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
	position: relative;
	z-index: 1;
}

.sante-info-section a:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
	color: #8B1538;
}

/* Responsive */
@media (max-width: 992px) {
	.choix-sante-section {
		padding: 80px 0 60px;
	}

	.choix-sante-header h2 {
		font-size: 36px;
	}

	.sante-card-image {
		height: 280px;
	}

	.sante-card-content h3 {
		font-size: 26px;
	}
}

@media (max-width: 768px) {
	.choix-sante-section {
		padding: 60px 0 50px;
	}

	.choix-sante-header {
		margin-bottom: 40px;
	}

	.choix-sante-header h2 {
		font-size: 32px;
	}

	.choix-sante-header p {
		font-size: 16px;
	}

	.sante-choice-card {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}

	.sante-card-image {
		height: 260px;
	}

	.sante-card-icon {
		width: 60px;
		height: 60px;
		font-size: 28px;
		top: 15px;
		left: 15px;
	}

	.sante-card-badge {
		font-size: 12px;
		padding: 8px 16px;
		top: 15px;
		right: 15px;
	}

	.sante-card-content {
		padding: 30px 25px;
	}

	.sante-card-content h3 {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.sante-card-content p {
		font-size: 15px;
	}

	.sante-card-features li {
		font-size: 14px;
		padding: 10px 0;
	}

	.sante-info-section {
		margin-top: 60px;
		padding: 40px 30px;
	}

	.sante-info-section h3 {
		font-size: 26px;
	}

	.sante-info-section p {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.choix-sante-section {
		padding: 50px 0 40px;
	}

	.choix-sante-header h2 {
		font-size: 28px;
	}

	.choix-sante-header p {
		font-size: 15px;
		padding: 0 15px;
	}

	.sante-choice-card {
		border-radius: 15px;
		margin-bottom: 30px;
	}

	.sante-card-image {
		height: 240px;
	}

	.sante-card-icon {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	.sante-card-badge {
		font-size: 11px;
		padding: 6px 12px;
	}

	.sante-card-content {
		padding: 25px 20px;
	}

	.sante-card-content h3 {
		font-size: 22px;
	}

	.sante-card-content p {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.sante-card-features {
		margin-bottom: 25px;
	}

	.sante-card-features li {
		font-size: 13px;
		padding: 8px 0;
	}

	.sante-card-btn {
		padding: 14px 30px;
		font-size: 15px;
	}

	.sante-info-section {
		margin-top: 50px;
		padding: 30px 20px;
		border-radius: 15px;
	}

	.sante-info-section h3 {
		font-size: 22px;
	}

	.sante-info-section p {
		font-size: 15px;
	}

	.sante-info-section a {
		padding: 12px 30px;
		font-size: 15px;
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 400px) {
	.sante-card-image {
		height: 200px;
	}

	.sante-card-content h3 {
		font-size: 20px;
	}
}
