/* ===================================================================
   CSS pour la carte Google Maps - maps.php
   Profile Agency - Octobre 2025
   =================================================================== */

/* Forcer la section map à prendre 100% de la largeur */
#map {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
}

/* Conteneur de la carte en pleine largeur */
.map-full-width-container {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}

/* Forcer l'iframe à occuper toute la largeur */
#map iframe {
	width: 100% !important;
	max-width: 100% !important;
	height: 720px !important;
	border: 0 !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Responsive - hauteur adaptée sur mobile */
@media (max-width: 768px) {
	#map iframe {
		height: 450px !important;
	}
}

@media (max-width: 480px) {
	#map iframe {
		height: 350px !important;
	}
}




