/*

.hero-section {
    background: linear-gradient(135deg, #111, #333);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.section-block {
    margin: 60px 0;
}

.section-block.alt {
    background: #f7f7f7;
    padding: 40px 20px;
    border-radius: 12px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.section-text {
    max-width: 800px;
    margin: auto;
    text-align: center;
    font-size: 1.1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.info-box, .contact-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    text-align: center;
}

.city-link {
    display: block;
    padding: 12px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.city-link:hover {
    background: #eee;
}
*/

/* ===================================
   PAGES VILLES - DESIGN ÉLÉGANT
   =================================== */

/* Ce fichier complète style.css pour les pages villes */

/* ================
   HERO SECTION VILLE
   ================ */

.hero-section {
	position: relative;
	background: linear-gradient(135deg,
			var(--primary) 0%,
			var(--primary-dark) 50%,
			var(--text-primary) 100%);
	color: white;
	padding: var(--space-3xl) var(--space-lg);
	border-radius: var(--radius-xl);
	margin-bottom: var(--space-2xl);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle,
			rgba(245, 158, 11, 0.15) 0%,
			transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.hero-section h1 {
	position: relative;
	z-index: 1;
	font-size: clamp(2rem, 5vw, var(--text-4xl));
	font-weight: 800;
	margin-bottom: var(--space-md);
	color: white;
	letter-spacing: -0.03em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-section p {
	position: relative;
	z-index: 1;
	font-size: clamp(1.125rem, 2vw, var(--text-xl));
	color: rgba(255, 255, 255, 0.95);
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
	font-weight: 400;
}

/* ================
   SECTION BLOCKS
   ================ */

.section-block {
	margin: var(--space-3xl) 0;
	padding: var(--space-2xl) 0;
}

.section-block.alt {
	background: var(--bg-secondary);
	padding: var(--space-3xl) var(--space-lg);
	border-radius: var(--radius-xl);
	position: relative;
	overflow: hidden;
}

.section-block.alt::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg,
			var(--primary) 0%,
			var(--accent) 50%,
			var(--primary) 100%);
}

/* ================
   SECTION TITLES & TEXT
   ================ */

.section-title {
	font-size: clamp(1.75rem, 4vw, var(--text-3xl));
	text-align: center;
	margin-bottom: var(--space-lg);
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.02em;
	position: relative;
	display: inline-block;
	width: 100%;
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	margin: var(--space-md) auto 0;
	border-radius: 2px;
}

.section-text {
	max-width: 800px;
	margin: 0 auto var(--space-xl);
	text-align: center;
	font-size: var(--text-lg);
	line-height: 1.8;
	color: var(--text-secondary);
}

.section-text strong {
	color: var(--text-primary);
	font-weight: 600;
}

/* ================
   CARDS GRID
   ================ */

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-lg);
	margin-top: var(--space-xl);
}

/* Card styles héritées de style.css mais avec ajustements */
.cards-grid .card {
	background: white;
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
	transition: all var(--transition-slow);
	position: relative;
	overflow: hidden;
}

.cards-grid .card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition-base);
}

.cards-grid .card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-light);
}

.cards-grid .card:hover::before {
	transform: scaleX(1);
}

/* ================
   CARD ICONS
   ================ */

.card-icon {
	font-size: 2.5rem;
	margin-bottom: var(--space-md);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(135deg, var(--primary-light), var(--primary));
	border-radius: var(--radius-md);
	color: white;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.card h3 {
	font-size: var(--text-xl);
	margin-bottom: var(--space-sm);
	color: var(--text-primary);
	font-weight: 700;
}

.card p {
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: var(--text-base);
}

/* ================
   INFO & CONTACT BOXES
   ================ */

.info-box,
.contact-box {
	background: white;
	padding: var(--space-2xl);
	border-radius: var(--radius-xl);
	max-width: 900px;
	margin: var(--space-xl) auto;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-light);
	position: relative;
}

.info-box::before,
.contact-box::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	border-radius: var(--radius-xl);
	z-index: -1;
	opacity: 0;
	transition: opacity var(--transition-base);
}

.info-box:hover::before,
.contact-box:hover::before {
	opacity: 0.1;
}

.info-box h2,
.contact-box h2 {
	font-size: var(--text-2xl);
	margin-bottom: var(--space-lg);
	color: var(--text-primary);
	font-weight: 700;
}

.info-box p,
.contact-box p {
	margin-bottom: var(--space-md);
	line-height: 1.7;
	color: var(--text-secondary);
}

.info-box ul,
.contact-box ul {
	list-style: none;
	padding: 0;
}

.info-box ul li,
.contact-box ul li {
	padding: var(--space-sm) 0;
	padding-left: var(--space-lg);
	position: relative;
	color: var(--text-secondary);
	line-height: 1.6;
}

.info-box ul li::before,
.contact-box ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
	font-size: 1.2em;
}

/* ================
   CITIES GRID
   ================ */

.cities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: var(--space-md);
	margin-top: var(--space-xl);
}

.city-link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-md);
	background: white;
	border-radius: var(--radius-md);
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 500;
	font-size: var(--text-sm);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
	transition: all var(--transition-base);
	position: relative;
	overflow: hidden;
    z-index: 0;
}

.city-link::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary-light), var(--primary));
	opacity: 0;
	transition: opacity var(--transition-base);
    z-index: 0;
}

.city-link span {
	position: relative;
	z-index: 1;
	transition: color var(--transition-base);
}

.city-link:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: var(--primary);
}

.city-link:hover::before {
	opacity: 1;
}

.city-link:hover span {
	color: white;
}

/* ================
   SERVICES LIST
   ================ */

.services ul {
	max-width: 800px;
	margin: var(--space-xl) auto;
	list-style: none;
	padding: 0;
	display: grid;
	gap: var(--space-md);
}

.services ul li {
	background: white;
	padding: var(--space-md) var(--space-lg);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	border-left: 4px solid var(--primary);
	transition: all var(--transition-base);
	color: var(--text-secondary);
	font-size: var(--text-base);
}

.services ul li:hover {
	transform: translateX(8px);
	box-shadow: var(--shadow-md);
	background: var(--bg-secondary);
	border-left-color: var(--accent);
}

/* ================
   CONTACT SECTION
   ================ */

.contact-section {
	background: var(--bg-secondary);
	padding: var(--space-3xl) var(--space-lg);
	border-radius: var(--radius-xl);
	margin: var(--space-3xl) 0;
    max-width: 100%;
}

.contact-section .section-title {
	color: var(--text-primary);
}

.contact-section .section-subtitle {
	color: var(--text-secondary);
	margin-bottom: var(--space-2xl);
}

/* Form styles (héritent de style.css) */
.contact-section .contact-form {
	max-width: 700px;
	margin: 0 auto;
	background: white;
	padding: var(--space-2xl);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

/* ================
   POINTS D'INTÉRÊT
   ================ */

.points-interet {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	justify-content: center;
	margin-top: var(--space-lg);
}

.points-interet span {
	display: inline-block;
	padding: var(--space-xs) var(--space-md);
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	font-size: var(--text-sm);
	color: var(--text-secondary);
	transition: all var(--transition-fast);
}

.points-interet span:hover {
	background: var(--primary-light);
	color: white;
	border-color: var(--primary);
	transform: scale(1.05);
}

/* ================
   RESPONSIVE
   ================ */

@media (max-width: 768px) {
	.hero-section {
		padding: var(--space-2xl) var(--space-md);
		border-radius: var(--radius-lg);
	}

	.hero-section h1 {
		font-size: 2rem;
	}

	.hero-section p {
		font-size: 1.125rem;
	}

	.cards-grid {
		grid-template-columns: 1fr;
		gap: var(--space-md);
	}

	.cities-grid {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
		gap: var(--space-sm);
	}

	.info-box,
	.contact-box {
		padding: var(--space-lg);
		border-radius: var(--radius-lg);
	}

	.section-block.alt {
		padding: var(--space-2xl) var(--space-md);
		border-radius: var(--radius-lg);
	}

	.contact-section {
		padding: var(--space-2xl) var(--space-md);
		border-radius: var(--radius-lg);
	}

	.contact-section .contact-form {
		padding: var(--space-lg);
	}

	.services ul {
		gap: var(--space-sm);
	}

	.services ul li {
		padding: var(--space-sm) var(--space-md);
	}
}

@media (max-width: 480px) {
	.hero-section h1 {
		font-size: 1.75rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.city-link {
		font-size: var(--text-xs);
		padding: var(--space-sm);
	}

	.card-icon {
		width: 56px;
		height: 56px;
		font-size: 2rem;
	}
}

/* ================
   ANIMATIONS SPÉCIFIQUES
   ================ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-section h1,
.hero-section p {
	animation: fadeInUp 0.8s ease-out;
}

.hero-section h1 {
	animation-delay: 0.1s;
}

.hero-section p {
	animation-delay: 0.2s;
}

/* ================
   PRINT STYLES
   ================ */

@media print {

	.hero-section,
	.section-block.alt {
		background: white;
		border: 1px solid #ddd;
	}

	.card,
	.info-box,
	.contact-box {
		box-shadow: none;
		border: 1px solid #ddd;
		page-break-inside: avoid;
	}

	.contact-form,
	.city-link {
		display: none;
	}
}