/* Hero Section Moderne */
.auto-hero-section {
	background: linear-gradient(135deg, #051922 0%, #012738 100%);
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
	margin-top: 80px;
}

.auto-hero-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: 0.3;
}

.auto-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: white;
}

.auto-hero-content .subtitle {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: white;
	opacity: 0.9;
	margin-bottom: 15px;
	display: inline-block;
	padding: 8px 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	backdrop-filter: blur(10px);
}

.auto-hero-content h1 {
	font-size: 56px;
	font-weight: 700;
	color: white;
	margin: 0;
	line-height: 1.2;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.auto-hero-content .description {
	font-size: 18px;
	color: white;
	margin-top: 20px;
	opacity: 0.95;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Section Cartes */
.auto-cards-section {
	padding: 100px 0 80px;
	background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 36px;
	font-weight: 700;
	color: #2C3E50;
	margin-bottom: 15px;
}

.section-title p {
	font-size: 18px;
	color: #6c757d;
	max-width: 600px;
	margin: 0 auto;
}

/* Cartes Modernes */
.insurance-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 30px rgba(0, 0, 0, 0.08);
	height: 100%;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	margin-bottom: 40px;
}

.insurance-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 50px rgba(139, 21, 56, 0.2);
}

.insurance-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;
}

.insurance-card:hover::before {
	transform: scaleX(1);
}

.card-image-wrapper {
	position: relative;
	height: 160px;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.card-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.insurance-card:hover .card-image-wrapper img {
	transform: scale(1.1);
}

.card-icon {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #8B1538;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.insurance-card:hover .card-icon {
	transform: rotate(15deg) scale(1.1);
	background: #8B1538;
	color: white;
}

.card-content {
	padding: 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.card-content h3 {
	font-size: 20px;
	font-weight: 700;
	color: #2C3E50;
	margin-bottom: 12px;
	transition: color 0.3s ease;
}

.insurance-card:hover .card-content h3 {
	color: #8B1538;
}

.card-content p {
	font-size: 14px;
	color: #6c757d;
	line-height: 1.6;
	margin-bottom: 15px;
	flex: 1;
}

.card-features {
	list-style: none;
	padding: 0;
	margin: 0 0 15px 0;
}

.card-features li {
	padding: 5px 0;
	color: #495057;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.card-features li::before {
	content: '✓';
	color: #8B1538;
	font-weight: bold;
	font-size: 18px;
}

.card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	background: linear-gradient(135deg, #8B1538 0%, #A91D4A 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(139, 21, 56, 0.3);
	border: none;
	cursor: pointer;
}

.card-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
	color: white;
}

.card-btn i {
	transition: transform 0.3s ease;
}

.card-btn:hover i {
	transform: translateX(5px);
}

/* Badges */
.card-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(139, 21, 56, 0.95);
	backdrop-filter: blur(10px);
	color: white;
	padding: 6px 12px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
	.insurance-card {
		margin-bottom: 25px;
	}

	.card-content h3 {
		font-size: 22px;
	}
}

@media (max-width: 992px) {
	.auto-hero-section {
		padding: 100px 0 60px;
		margin-top: 70px;
	}

	.auto-hero-content h1 {
		font-size: 42px;
	}

	.auto-hero-content .subtitle {
		font-size: 14px;
	}

	.auto-cards-section {
		padding: 60px 0;
	}

	.section-title {
		margin-bottom: 40px;
	}

	.section-title h2 {
		font-size: 32px;
	}

	.insurance-card {
		margin-bottom: 30px;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}

	.card-image-wrapper {
		height: 250px;
	}

	.card-content {
		padding: 25px;
	}
}

@media (max-width: 768px) {
	.auto-hero-section {
		padding: 80px 0 50px;
		margin-top: 60px;
	}

	.auto-hero-content h1 {
		font-size: 32px;
		padding: 0 15px;
	}

	.auto-hero-content .subtitle {
		font-size: 12px;
		padding: 6px 15px;
	}

	.auto-hero-content .description {
		font-size: 15px;
		padding: 0 20px;
	}

	.auto-cards-section {
		padding: 50px 0;
	}

	.auto-cards-section .row {
		margin-left: -10px;
		margin-right: -10px;
	}

	.auto-cards-section .col-lg-4,
	.auto-cards-section .col-md-6 {
		padding-left: 10px;
		padding-right: 10px;
	}

	.section-title h2 {
		font-size: 28px;
		padding: 0 15px;
	}

	.section-title p {
		font-size: 16px;
		padding: 0 15px;
	}

	.insurance-card {
		border-radius: 15px;
		margin-bottom: 25px;
	}

	.card-image-wrapper {
		height: 220px;
	}

	.card-content {
		padding: 20px;
	}

	.card-content h3 {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.card-content p {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.card-features {
		margin-bottom: 20px;
	}

	.card-features li {
		font-size: 13px;
		padding: 6px 0;
	}

	.card-btn {
		padding: 12px 25px;
		font-size: 14px;
		width: 100%;
	}

	.card-icon {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	.card-badge {
		font-size: 11px;
		padding: 6px 12px;
	}

	.insurance-card:hover {
		transform: translateY(-8px);
	}
}

@media (max-width: 576px) {
	.auto-hero-section {
		padding: 70px 0 40px;
		margin-top: 60px;
	}

	.auto-hero-content h1 {
		font-size: 26px;
		line-height: 1.3;
	}

	.auto-hero-content .subtitle {
		font-size: 11px;
		letter-spacing: 1px;
	}

	.auto-hero-content .description {
		font-size: 14px;
		line-height: 1.6;
	}

	.auto-cards-section {
		padding: 40px 15px;
	}

	.auto-cards-section .row {
		margin-left: 0;
		margin-right: 0;
	}

	.auto-cards-section .col-lg-4,
	.auto-cards-section .col-md-6 {
		padding-left: 0;
		padding-right: 0;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h2 {
		font-size: 24px;
	}

	.section-title p {
		font-size: 15px;
	}

	.insurance-card {
		border-radius: 12px;
		margin-bottom: 20px;
	}

	.card-image-wrapper {
		height: 200px;
	}

	.card-content {
		padding: 18px;
	}

	.card-content h3 {
		font-size: 18px;
	}

	.card-content p {
		font-size: 13px;
		line-height: 1.6;
	}

	.card-features li {
		font-size: 12px;
		padding: 5px 0;
	}

	.card-features li::before {
		font-size: 16px;
	}

	.card-btn {
		padding: 10px 20px;
		font-size: 13px;
	}

	.card-icon {
		width: 45px;
		height: 45px;
		font-size: 20px;
		top: 15px;
		right: 15px;
	}

	.card-badge {
		font-size: 10px;
		padding: 5px 10px;
		top: 15px;
		left: 15px;
	}

	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 400px) {
	.auto-hero-content h1 {
		font-size: 22px;
	}

	.section-title h2 {
		font-size: 20px;
	}

	.card-image-wrapper {
		height: 180px;
	}

	.card-icon {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.insurance-card {
	animation: fadeInUp 0.6s ease forwards;
}

.insurance-card:nth-child(1) {
	animation-delay: 0.1s;
}

.insurance-card:nth-child(2) {
	animation-delay: 0.2s;
}

.insurance-card:nth-child(3) {
	animation-delay: 0.3s;
}
