/* ========== MAIN CONTENT ========== */
.mapblock {
    width: 80%;
    margin: auto;
    text-align: center;
}

.lmap-section {
    padding: 30px 0;
}

/* ========== MODAL STYLES ========== */
body.catch-modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.catch-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2147483647;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.catch-modal.show {
    display: flex;
    opacity: 1;
}

.catch-modal-content {
    position: relative;
    background: white;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    margin: 20px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: visible;
}

.catch-modal.show .catch-modal-content {
    transform: translateY(0);
}

.catch-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    color: #333;
    background: none;
    border: none;
    transition: all 0.2s ease;
	display:none;
}

.catch-modal-close:hover {
    color: #005CB5;
    transform: scale(1.1);
}

/* ========== MAP CONTAINER ========== */
.catch-map-container {
    position: relative !important;
    width: 100% !important;
    height: 400px !important;
    min-height: 400px;
    background: #f5f5f5;
    margin: 20px 0;
}

.catch-map {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}


/* ========== SEARCH BOX ========== */
.catch-search-container {
    position: relative;
    margin: 15px 0;
}

.catch-search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.catch-locate-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #005CB5;
    font-size: 20px;
    padding: 5px;
}

/* ========== CONFIRM BUTTON ========== */
.catch-confirm-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #005CB5;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.catch-confirm-btn:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ========== GOOGLE MAPS FIXES ========== */
.gm-style {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.gm-style > div {
    position: relative !important;
    z-index: 1 !important;
}

/* ========== ELEMENTOR OVERRIDES ========== */
.elementor-section, 
.elementor-column, 
.elementor-widget-wrap {
    position: static !important;
    z-index: auto !important;
    transform: none !important;
    overflow: visible !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .mapblock {
        width: 95%;
    }
    
    .catch-modal-content {
        padding: 20px;
        margin: 10px auto;
    }
    
    .catch-map-container {
        height: 300px;
    }
    
    .catch-search-input {
        padding: 10px 40px 10px 12px;
        font-size: 14px;
    }
    
    .catch-confirm-btn {
        padding: 12px;
        font-size: 15px;
    }
}


/* Styles du modal */
.catch-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2147483647;
    justify-content: center;
    align-items: center;
}

.catch-modal.show {
    display: flex;
}

.catch-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.catch-modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 1200px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.catch-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Styles de la carte */
.catch-map-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 20px 0;
    background: #f5f5f5;
}

.catch-map {
    width: 100%;
    height: 100%;
}

/* Styles des champs de recherche */
.catch-search-container {
    position: relative;
    margin-top: 15px;
}

.catch-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.catch-locate-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

/* Bouton de confirmation */
.catch-confirm-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #005CB5;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}

/* Corrections pour Elementor */
.elementor-section, 
.elementor-column, 
.elementor-widget-wrap {
    position: static !important;
    z-index: auto !important;
}

/* Responsive */
@media (max-width: 768px) {
    .mapblock {
        width: 90%;
    }
    
    .catch-modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .catch-map-container {
        height: 300px;
    }
}

/* Style pour l'autocomplétion */
.pac-container {
    z-index: 2147483647 !important;
    font-family: inherit;
    border-radius: 0 0 4px 4px;
    margin-top: -1px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    border: none;
}

.pac-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.pac-item:hover {
    background-color: #f5f5f5;
}

.pac-item-query {
    font-size: 14px;
    color: #333;
}

/* Champ de recherche */
#catch-search-container {
    position: relative;
    margin-bottom: 15px;
}

#pac-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Carte */
#catch_map_container {
    width: 100%;
    height: 400px;
    position: relative;
    margin: 15px 0;
}

#catch_map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}









  /* Modal styles */
  body.airport-modal-open {
    overflow: hidden;
    position: fixed;
    width: 100vw;
  }
  .airport-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.85);
    z-index: 9999999;
    justify-content: center;
    align-items: center;
  }
  .airport-modal.show {
    display: flex;
  }
  .airport-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 9999999;
  }
  .airport-modal-content {
    position: relative;
    background: white;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    
    z-index: 10000000;
  }
  #airport-list{
	  overflow-y: auto;
	  max-height: 48vh; 
  }
  .airport-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10000001;
  }
  .airport-modal-close:hover {
    color: #005CB5;
  }

  /* Liste radio */
  #airport-list label {
    display: block;
    padding: 12px 15px;
    margin: 8px 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    user-select: none;
  }
  #airport-list input[type="radio"] {
    display: none;
  }
  #airport-list span {
    display: inline-block;
    width: 100%;
  }
  #airport-list input[type="radio"]:checked + span {
    font-weight: 600;
    color: #005CB5;
    border-left: 5px solid #005CB5;
    padding-left: 10px;
    background-color: #e6f0ff;
  }

  /* Bouton confirmer */
  #airport-form button[type="submit"] {
    margin-top: 20px;
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #005CB5;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
  }
  #airport-form button[type="submit"]:hover {
    background-color: #004494;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .airport-modal-content {
      padding: 20px;
      width: 95%;
    }
    #airport-list label {
      font-size: 14px;
    }
    #airport-form button[type="submit"] {
      font-size: 14px;
      padding: 12px;
    }
  }
  
  
  .blockhomepage{
  display: flex;
  flex-direction: row !important;
  }
  
  


  #catch-back-btn {
    background-color: #ccc;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
  }

  #catch-back-btn:hover {
    background-color: #bbb;
  }
  
    .blockdelpick{
width: 50%;
  float: left;
  }


.location-maps-section{
	background: #fff;
	border-radius: 30px;
	padding: 20px 0;
}
.location-maps-section .ova-icon-box{
	box-shadow: none !important;
	text-align: left;
}

.location-maps-section .ova-icon-box .button-readmore{
	justify-content: center !important;
}

.location-maps-section .ova-icon-box .button-readmore .text-button{
	line-height: 3;
}

.location-maps-section .ova-icon-box .iconbox{
	border-radius: 0 !important;
	padding: 0 !important;
}
.bthree{
	padding: 0 30px;
}
.location-maps-section .ova-icon-box .title{
	font-size: 15px !important;
	margin:0 !important;
}


.icoflex {
  display: flex !important;
  align-items: center; /* centrer verticalement */
  gap: 1rem; /* espace entre l'icône et le texte */
}

.location-maps-section  .ova-icon-box .button-readmore{
	background-color: transparent !important;
	padding: 0 !important;
}
.location-maps-section .ova-icon-box .iconbox .icon{
	margin:0 !important;
}

.location-maps-section .ova-icon-box:hover .button-readmore .text-button {
  color: #000 !important;
}

.location-maps-section .button-readmore{
	display: block !important;
}
.location-maps-section .icoflex{
	cursor:pointer;
}

@media (max-width: 768px) {
	    .blockdelpick{
			width: 100%;
			clear: both;
		  }
}