/* ============================================
   VISIT OUR OFFICE — v3 immersive map design
   ============================================ */

#voo-section {
  background: #f4f4f6;
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Header */
.voo-header {
  text-align: center;
  margin-bottom: 52px;
}

.voo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e55400;
  margin-bottom: 14px;
}

.voo-eyebrow i { font-size: 12px; }

.voo-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.6px;
  margin: 0 0 12px;
  line-height: 1.1;
}

.voo-title span { color: #e55400; }

.voo-desc {
  font-size: 15px;
  color: #aaa;
  margin: 0;
}

/* ---- Main layout ---- */
.voo-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: stretch;
}

/* ============ MAP SIDE ============ */
.voo-map-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 540px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.voo-map-inner {
  position: absolute;
  inset: 0;
}

.voo-map-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none; /* prevent scroll hijack */
}

/* Clickable overlay — covers map, opens Google Maps on click */
.voo-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
  display: block;
}

/* Top-left badge on map */
.voo-map-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  border-radius: 50px;
  padding: 8px 16px 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  z-index: 10;
  font-size: 13px;
  font-weight: 600;
  color: #111;
}

.voo-map-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e55400;
  box-shadow: 0 0 0 3px rgba(229,84,0,0.2);
  animation: voo-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes voo-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(229,84,0,0.2); }
  50%       { box-shadow: 0 0 0 7px rgba(229,84,0,0.08); }
}

/* Bottom floating address card */
.voo-pin-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 10;
}

.voo-pin-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #fff5f0;
  border: 1px solid #fde0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #e55400;
  flex-shrink: 0;
}

.voo-pin-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}

.voo-pin-card span {
  font-size: 12.5px;
  color: #888;
  line-height: 1.4;
}

.voo-pin-dir {
  margin-left: auto;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #e55400;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.voo-pin-dir:hover {
  background: #c94a00;
  transform: scale(1.08);
  color: #fff;
}

/* ============ INFO SIDE ============ */
.voo-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Stat row at top */
.voo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.voo-stat {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
}

.voo-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #e55400;
  line-height: 1;
  margin-bottom: 5px;
}

.voo-stat span {
  font-size: 11.5px;
  color: #aaa;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact cards */
.voo-card {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 18px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.22s, transform 0.22s;
  text-decoration: none;
  color: inherit;
}

.voo-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.voo-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #fff5f0;
  border: 1px solid #fde0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #e55400;
  flex-shrink: 0;
}

.voo-card-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.voo-card-body span {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

/* Hours card */
.voo-hours-card {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 18px;
  padding: 20px 18px;
  flex: 1;
}

.voo-hours-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.voo-hours-label i {
  font-size: 16px;
  color: #e55400;
}

.voo-hours-label strong {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.voo-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.voo-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fafafa;
}

.voo-hours-row span:first-child { color: #666; }

.voo-hours-row span:last-child {
  font-weight: 600;
  color: #333;
}

.voo-hours-row.voo-today {
  background: #fff5f0;
  border: 1px solid #fde0d0;
}

.voo-hours-row.voo-today span { color: #e55400 !important; }

.voo-hours-row.voo-closed span { color: #ccc !important; }

/* Responsive */
@media (max-width: 960px) {
  .voo-grid { grid-template-columns: 1fr; }
  .voo-map-wrap { min-height: 460px; }
}

/* Tablet: slightly shorter map */
@media (max-width: 991px) and (min-width: 541px) {
  .voo-map-wrap { min-height: 420px; }
  .voo-info { flex-direction: row; flex-wrap: wrap; }
  .voo-stats { flex: 0 0 100%; }
  .voo-hours-card { flex: 1 1 calc(50% - 7px); }
}

@media (max-width: 540px) {
  #voo-section { padding: 64px 0; }
  .voo-map-wrap { min-height: 320px; }
  .voo-stats { grid-template-columns: 1fr 1fr; }
}
