.find-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
}

.find-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
}

.find-section .section-title {
  text-align: left;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.find-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.find-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.find-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.find-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 165, 0, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.find-item:hover::before {
  left: 100%;
}

.find-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 165, 0, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.find-item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 165, 0, 0.1);
  border-radius: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.find-item:hover .find-item-icon {
  background: rgba(255, 165, 0, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.find-item-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.find-item-content {
  flex: 1;
  position: relative;
}

.find-item-content h3 {
  margin: 0 0 0.75rem 0;
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 600;
}

.find-item-content p {
  color: #333;
  line-height: 1.7;
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0;
}

.address-clickable {
  position: relative;
  transition: all 0.3s ease;
}

.address-clickable:hover {
  color: var(--primary-color);
}

.copy-feedback {
  display: inline-block;
  position: absolute;
  bottom: -25px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(240, 117, 90, 0.3);
}

.copy-feedback.show {
  opacity: 1;
  transform: translateY(0);
}

.copy-feedback::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--primary-color);
}

.horaires-dyn {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.horaire-ligne {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  gap: 1rem;
  transition: all 0.3s ease;
}

.horaire-ligne:last-child {
  border-bottom: none;
}

.horaire-ligne:hover {
  padding-left: 5px;
}

.horaire-ligne .jour {
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: capitalize;
  font-size: 0.95rem;
}

.horaire-ligne .horaire {
  font-weight: 500;
  color: #333;
  text-align: right;
  font-size: 0.95rem;
}

.find-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 450px;
}

.find-map:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.find-map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.find-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  border-radius: 20px;
}

.find-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 165, 0, 0.1);
}
