/* Sidebar Styles - Panneau latéral et profil */

.side-panel {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  background-color: #fff;
  border-left: 4px solid #067F38;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 12px;
  box-sizing: border-box;
  height: fit-content;
  max-height: 75vh;
  overflow-y: auto;
  z-index: 80;
  display: block;
  width: 350px;
}

.profile-container {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 10px;
  margin-top: 10px;
  flex-wrap: nowrap;
}

.profile-image {
  height: 120px !important;
  width: auto;
  flex-shrink: 0;
  margin-right: 25px !important;
  margin-top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.profile-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.side-panel h3 {
  color: #067F38;
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 6px 0;
  text-align: center;
  width: 100%;
}

.profile-text {
  text-align: left;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.contact-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

.contact-button {
  display: inline-block;
  background-color: #067F38;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 28px;
  margin: 8px auto;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .contact-button {
    padding: 7px 16px;
    font-size: 0.97em;
    border-radius: 4px;
    min-width: 90px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: inline-flex;
  }
}

.contact-button:hover {
  background-color: #055d29;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.phone-hidden {
  display: none;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
  color: #444;
  text-align: center;
}

.side-separator {
  height: 1px;
  background: rgba(6, 127, 56, 0.15);
  margin: 20px 0;
  width: 100%;
}

.map-container {
  display: block;
  text-align: center;
}

.map-image {
  height: 180px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin: 12px 0;
  position: relative;
}

.map-image img {
  height: 100%;
  object-fit: contain;
  background-color: #f5f5f5;
}

.location-marker {
  position: absolute;
  left: 47%;
  top: 56%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #067F38;
  box-shadow: 0 0 0 3px rgba(6, 127, 56, 0.3);
  animation: pulse 2s infinite;
  transform: translate(-50%, -50%);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(6, 127, 56, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(6, 127, 56, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 127, 56, 0); }
}

.region-text {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.region-text p {
  margin: 0;
}

.region-text strong {
  color: #067F38;
  font-weight: 600;
}
