
.dawa-map-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #152219;
  line-height: 0;
}


/* =====================================================
   MAP IMAGE
   The image determines the size of the container
   ===================================================== */

.dawa-map-image {
  display: block;
  width: 100%;
  height: auto;

  position: relative;
  z-index: 1;
}


/* =====================================================
   SVG OVERLAY
   Completely transparent
   ===================================================== */

.dawa-map-overlay {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  z-index: 2;

  background: transparent;

  display: block;
  overflow: hidden;
}


/* =====================================================
   ALL PLOTS

   IMPORTANT:
   No fill normally.

   This allows the aerial image to remain completely
   visible through every plot.
   ===================================================== */

.dawa-plot {
  fill: transparent;

  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 2;

  vector-effect: non-scaling-stroke;

  cursor: pointer;

  transition:
    fill 0.16s ease,
    stroke 0.16s ease,
    stroke-width 0.16s ease;
}


/* =====================================================
   AVAILABLE PLOTS

   No green background until hover/selection
   ===================================================== */

.dawa-plot.available {
  fill: transparent;
}


/* =====================================================
   MODEL PLOTS

   No gold background until hover/selection
   ===================================================== */

.dawa-plot.model {
  fill: transparent;
}


/* =====================================================
   GENERAL HOVER / FOCUS / SELECTED BORDER
   ===================================================== */

.dawa-plot:hover,
.dawa-plot:focus,
.dawa-plot.is-selected {
  stroke: #ffffff;
  stroke-width: 4;
  outline: none;
}


/* =====================================================
   AVAILABLE PLOT HOVER

   Green appears only while hovering
   ===================================================== */

.dawa-plot.available:hover,
.dawa-plot.available:focus {
  fill: rgba(48, 163, 74, 0.35);
}


/* Keep selected Available plot highlighted */

.dawa-plot.available.is-selected {
  fill: rgba(48, 163, 74, 0.42);
}


/* =====================================================
   MODEL PLOT HOVER

   Gold appears only while hovering
   ===================================================== */

.dawa-plot.model:hover,
.dawa-plot.model:focus {
  fill: rgba(214, 157, 35, 0.38);
}


/* Keep selected Model plot highlighted */

.dawa-plot.model.is-selected {
  fill: rgba(214, 157, 35, 0.45);
}


/* =====================================================
   PLOT CARD
   ===================================================== */

.dawa-plot-card {
  position: absolute;

  left: 18px;
  bottom: 18px;

  min-width: 190px;

  padding: 12px 14px;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.94);

  color: #172018;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.22);

  pointer-events: none;

  z-index: 5;
}


.dawa-plot-card-kicker {
  font-size: 11px;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  opacity: 0.65;

  margin-bottom: 2px;
}


.dawa-plot-card-title {
  font-weight: 800;
  font-size: 20px;
}


.dawa-plot-card-status {
  font-size: 13px;
  margin-top: 2px;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 700px) {

  .dawa-plot-card {
    left: 10px;
    bottom: 10px;

    min-width: 155px;

    padding: 9px 11px;
  }


  .dawa-plot-card-title {
    font-size: 17px;
  }

}

/* =========================================================
   DAWA MAP - FINAL OVERRIDES
   Transparent plots with RED borders only
   ========================================================= */

.dawa-map-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;

    opacity: 1 !important;
    filter: none !important;

    position: relative !important;
    z-index: 1 !important;
}


/* SVG remains completely transparent */

#planSvg.dawa-map-overlay {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background: transparent !important;

    opacity: 1 !important;

    z-index: 2 !important;
}


/* =========================================================
   NORMAL PLOTS
   Transparent inside + RED border
   ========================================================= */

#planSvg .dawa-plot polygon {

    fill: transparent !important;

    stroke: #ffffff !important;
    stroke-width: 2.5 !important;

    vector-effect: non-scaling-stroke;

    opacity: 1 !important;

    cursor: pointer !important;

    pointer-events: all !important;

    transition:
        fill 0.18s ease,
        stroke 0.18s ease,
        stroke-width 0.18s ease !important;
}


/* Do NOT apply fill/stroke to the <g> itself */

#planSvg .dawa-plot {
    fill: none !important;
    stroke: none !important;

    cursor: pointer !important;

    outline: none !important;
}


/* =========================================================
   AVAILABLE - HOVER
   ========================================================= */

#planSvg .dawa-plot.available:hover polygon,
#planSvg .dawa-plot.available:focus polygon {

    fill: rgba(48, 163, 74, 0.30) !important;

    stroke: #ffffff !important;
    stroke-width: 3.5 !important;
}


/* AVAILABLE - SELECTED */

#planSvg .dawa-plot.available.is-selected polygon {

    fill: rgba(48, 163, 74, 0.36) !important;

    stroke: #ffffff !important;
    stroke-width: 3.5 !important;
}


/* =========================================================
   MODEL - HOVER
   ========================================================= */

#planSvg .dawa-plot.model:hover polygon,
#planSvg .dawa-plot.model:focus polygon {

    fill: rgba(119, 35, 214, 0.32) !important;

    stroke: #ffffff !important;
    stroke-width: 3.5 !important;
}


/* MODEL - SELECTED */

#planSvg .dawa-plot.model.is-selected polygon {

    fill: rgba(119, 35, 214, 0.32) !important;

    stroke: #ffffff !important;
    stroke-width: 3.5 !important;
}


/* Remove any pseudo-element overlays */

.dawa-map-wrap::before,
.dawa-map-wrap::after,
.dawa-map-overlay::before,
.dawa-map-overlay::after {

    content: none !important;

    background: transparent !important;

    opacity: 0 !important;
}

/* =========================================================
   DAWA BACKGROUND VIDEO
   Overrides PlainsView background image
   ========================================================= */

/* =========================================================
   DAWA FULL-PAGE BACKGROUND VIDEO
   ========================================================= */

.lux-siteplan-page {
    position: relative !important;
    min-height: 100vh !important;
    overflow: hidden !important;

    /* remove PlainsView background image */
    background: #000 !important;
    background-image: none !important;
}


/* Background video fills the entire section */

.dawa-bg-video {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    z-index: 0 !important;

    display: block !important;

    pointer-events: none !important;
}


/* Dark overlay above video */

.lux-hero-overlay {
    position: absolute !important;
    inset: 0 !important;

    z-index: 1 !important;

    background:
        linear-gradient(
            120deg,
            rgba(8,7,5,.68),
            rgba(8,7,5,.30) 42%,
            rgba(8,7,5,.58)
        ) !important;

    pointer-events: none !important;
}


/* All page content above video */

.lux-wrap {
    position: relative !important;
    z-index: 2 !important;
}

/* =========================================================
   DAWA PLOT TOOLTIP
   ========================================================= */

#plotTip.plotTip {
    position: absolute;
    z-index: 20;

    width: 220px;
    max-width: calc(100% - 20px);

    padding: 12px 14px;

    background: rgba(16, 16, 15, 0.95);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,.35);

    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;

    white-space: normal !important;

    pointer-events: none;
}


.dawa-tip-title {
    display: block;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 21px;
    font-weight: 700;

    margin-bottom: 7px;

    color: #ffffff;
}


.dawa-tip-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 14px;

    width: 100%;

    padding: 3px 0;

    white-space: normal;
}


.dawa-tip-row span {
    flex: 0 0 auto;

    color: rgba(255,255,255,.65);

    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}


.dawa-tip-row strong {
    flex: 1;

    text-align: right;

    color: #ffffff;
    font-weight: 600;

    overflow-wrap: anywhere;
}