/* =========================================================
   SUBMIT YOUR BUSINESS BANNER — ROTATING IMAGES
   ========================================================= */

.plocal-submit-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/*
  Keeps the existing banner content above the decorative
  photographs without changing its current layout.
*/
.plocal-submit-banner .container {
  position: relative;
  z-index: 3;
}

.plocal-submit-banner__content {
  position: relative;
  z-index: 2;
}

/* Decorative image layer */

.plocal-submit-banner__visuals {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* Shared image container */

.plocal-submit-banner__image-slot {
  --image-width: 170px;
  --image-height: 132px;
  --image-radius: 22px;
  --image-rotation: 0deg;
  --image-delay: 0s;
  --image-enter-x: 0px;
  --image-enter-y: 18px;

  position: absolute;
  width: var(--image-width);
  height: var(--image-height);
  margin: 0;
  overflow: hidden;

  background: var(--color-white);
  border: 3px solid
    color-mix(
      in srgb,
      var(--color-white) 82%,
      transparent
    );
  border-radius: var(--image-radius);
  box-shadow: var(--box-shadow2);

  opacity: 0;
  visibility: hidden;

  transform:
    translate3d(
      var(--image-enter-x),
      var(--image-enter-y),
      0
    )
    rotate(var(--image-rotation))
    scale(0.9);

  transform-origin: center;
  will-change: opacity, transform;

  animation:
    plocalSubmitBannerImageLoop 30s
    cubic-bezier(0.22, 1, 0.36, 1)
    infinite;

  animation-delay: var(--image-delay);
  animation-fill-mode: both;
}

.plocal-submit-banner__image-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Soft light overlay */

.plocal-submit-banner__image-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      145deg,
      color-mix(
        in srgb,
        var(--color-white) 18%,
        transparent
      ),
      transparent 48%
    );
  pointer-events: none;
}

/* =========================================================
   INDIVIDUAL IMAGE POSITIONS
   ========================================================= */

/* Upper left */
.plocal-submit-banner__image-slot--01 {
  --image-width: 150px;
  --image-height: 116px;
  --image-rotation: -6deg;
  --image-delay: 0s;
  --image-enter-x: -22px;
  --image-enter-y: -10px;

  top: -18px;
  left: 4%;
}

/* Lower right */
.plocal-submit-banner__image-slot--02 {
  --image-width: 158px;
  --image-height: 120px;
  --image-rotation: -7deg;
  --image-delay: 5s;
  --image-enter-x: 22px;
  --image-enter-y: 18px;

  right: 4%;
  bottom: -25px;
}

/* Upper right */
.plocal-submit-banner__image-slot--03 {
  --image-width: 142px;
  --image-height: 108px;
  --image-rotation: 7deg;
  --image-delay: 10s;
  --image-enter-x: 24px;
  --image-enter-y: -12px;

  top: 8%;
  right: -24px;
}

/* Lower left */
.plocal-submit-banner__image-slot--04 {
  --image-width: 150px;
  --image-height: 114px;
  --image-rotation: 6deg;
  --image-delay: 15s;
  --image-enter-x: -22px;
  --image-enter-y: 20px;

  left: -28px;
  bottom: 7%;
}

/* Middle-left edge */
.plocal-submit-banner__image-slot--05 {
  --image-width: 128px;
  --image-height: 100px;
  --image-rotation: -4deg;
  --image-delay: 20s;
  --image-enter-x: -20px;
  --image-enter-y: 0px;

  top: 40%;
  left: -64px;
}

/* Middle-right edge */
.plocal-submit-banner__image-slot--06 {
  --image-width: 132px;
  --image-height: 102px;
  --image-rotation: 5deg;
  --image-delay: 25s;
  --image-enter-x: 20px;
  --image-enter-y: 0px;

  top: 34%;
  right: -66px;
}

/* =========================================================
   IMAGE APPEAR / DISAPPEAR LOOP
   ========================================================= */

@keyframes plocalSubmitBannerImageLoop {
  /*
    Each image has a five-second visual window inside
    the complete thirty-second loop.
  */

  0% {
    opacity: 0;
    visibility: hidden;

    transform:
      translate3d(
        var(--image-enter-x),
        var(--image-enter-y),
        0
      )
      rotate(var(--image-rotation))
      scale(0.9);
  }

  2% {
    visibility: visible;
  }

  5% {
    opacity: 1;
    visibility: visible;

    transform:
      translate3d(0, 0, 0)
      rotate(var(--image-rotation))
      scale(1);
  }

  12% {
    opacity: 1;
    visibility: visible;

    transform:
      translate3d(0, -5px, 0)
      rotate(var(--image-rotation))
      scale(1);
  }

  16% {
    opacity: 0;
    visibility: visible;

    transform:
      translate3d(
        calc(var(--image-enter-x) * -0.35),
        -15px,
        0
      )
      rotate(var(--image-rotation))
      scale(0.96);
  }

  17%,
  100% {
    opacity: 0;
    visibility: hidden;

    transform:
      translate3d(
        var(--image-enter-x),
        var(--image-enter-y),
        0
      )
      rotate(var(--image-rotation))
      scale(0.9);
  }
}

/* =========================================================
   OPTIONAL AMBIENT EFFECTS
   ========================================================= */

.plocal-submit-banner__visuals::before,
.plocal-submit-banner__visuals::after {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}

.plocal-submit-banner__visuals::before {
  top: -150px;
  left: 3%;

  background:
    radial-gradient(
      circle,
      color-mix(
        in srgb,
        var(--theme-color) 28%,
        transparent
      ),
      transparent 70%
    );
}

.plocal-submit-banner__visuals::after {
  right: 0;
  bottom: -170px;

  background:
    radial-gradient(
      circle,
      color-mix(
        in srgb,
        var(--color-skyblue) 24%,
        transparent
      ),
      transparent 70%
    );
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {
  .plocal-submit-banner__image-slot--01 {
    left: 1%;
  }

  .plocal-submit-banner__image-slot--02 {
    right: 1%;
  }

  .plocal-submit-banner__image-slot--05,
  .plocal-submit-banner__image-slot--06 {
    display: none;
  }
}

@media (max-width: 991px) {
  .plocal-submit-banner__image-slot {
    --image-width: 122px;
    --image-height: 94px;
  }

  .plocal-submit-banner__image-slot--01 {
    top: -10px;
    left: -20px;
  }

  .plocal-submit-banner__image-slot--02 {
    right: -22px;
    bottom: -12px;
  }

  .plocal-submit-banner__image-slot--03 {
    right: -52px;
  }

  .plocal-submit-banner__image-slot--04 {
    left: -52px;
  }
}

@media (max-width: 767px) {
  /*
    On mobile, only two safe corner images remain.
    They stay away from the H1 and breadcrumb.
  */

  .plocal-submit-banner__image-slot--03,
  .plocal-submit-banner__image-slot--04,
  .plocal-submit-banner__image-slot--05,
  .plocal-submit-banner__image-slot--06 {
    display: none;
  }

  .plocal-submit-banner__image-slot--01,
  .plocal-submit-banner__image-slot--02 {
    --image-width: 94px;
    --image-height: 72px;
    --image-radius: 16px;

    opacity: 0.32;
  }

  .plocal-submit-banner__image-slot--01 {
    top: -8px;
    left: -32px;
  }

  .plocal-submit-banner__image-slot--02 {
    right: -30px;
    bottom: -14px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .plocal-submit-banner__image-slot {
    display: none;
    animation: none;
  }

  /*
    Leave one static decorative image visible.
  */
  .plocal-submit-banner__image-slot--01 {
    display: block;
    opacity: 0.35;
    visibility: visible;

    transform:
      translate3d(0, 0, 0)
      rotate(var(--image-rotation))
      scale(1);
  }
}

/* =========================================================
   STATE HERO — MAP VISUAL
========================================================= */

.state-hero__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
}


/* =========================================================
   MAP WRAPPER
   No card / no background / no border
========================================================= */

.state-hero__map-wrap {
    left: 131px;

    position: relative;

    width: min(100%, 650px);

    margin: 0 auto;
}


/* =========================================================
   MAP IMAGE
========================================================= */

.state-hero__map-image {
    position: relative;
    z-index: 1;

    display: block;

    width: 58%;
    height: auto;

    object-fit: contain;

    opacity: 0.55;

    filter:
        drop-shadow(
            0 24px 32px rgba(0, 0, 0, 0.18)
        );

    transition:
        transform 0.6s ease,
        filter 0.6s ease,
        opacity 0.6s ease;
}


.state-hero__visual:hover
.state-hero__map-image {
    transform:
        translateY(-4px)
        scale(1.01);

    filter:
        drop-shadow(
            0 30px 38px rgba(0, 0, 0, 0.22)
        );
}


/* =========================================================
   STATE META
========================================================= */

.state-hero__map-meta {
    position: absolute;

    top: 10px;
    right: 5px;

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 3px;

    text-align: right;
}


.state-hero__map-meta strong {
    color: var(--theme-color);

    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.08em;
}


.state-hero__map-meta span,
.state-hero__map-meta small {
    color: rgba(255, 255, 255, 0.55);

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.11em;
}


/* =========================================================
   CITY LOCATIONS
========================================================= */

.state-hero__location {
    position: absolute;
    z-index: 4;

    display: flex;
    align-items: center;

    gap: 9px;

    pointer-events: none;
}


/*
   IMPORTANT:
   Adjust these percentages slightly depending
   on the exact whitespace inside usa-ca.svg.
*/

.state-hero__location--sf {
    top: 41%;
    left: 5%;
}


.state-hero__location--la {
    top: 78%;
    left: 27%;
}


.state-hero__location--sd {
    top: 92%;
    left: 35%;
}


/* =========================================================
   CITY DOT / RADAR
========================================================= */

.state-hero__location-pulse {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: rgba(36, 189, 199, 0.16);

    box-shadow:
        0 0 0 1px rgba(36, 189, 199, 0.22);
}


.state-hero__location-pulse::before,
.state-hero__location-pulse::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(36, 189, 199, 0.34);
    border-radius: 50%;
}


.state-hero__location-pulse::before {
    width: 25px;
    height: 25px;
}


.state-hero__location-pulse::after {
    width: 35px;
    height: 35px;

    opacity: 0.45;
}


.state-hero__location-pulse i {
    position: relative;
    z-index: 2;

    display: block;

    width: 7px;
    height: 7px;

    border: 2px solid var(--theme-color);
    border-radius: 50%;

    background: var(--theme-color2);

    box-shadow:
        0 0 12px rgba(36, 189, 199, 0.8);
}


/* =========================================================
   CITY NAME
========================================================= */

.state-hero__location-name {
    color: var(--color-white);

    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    white-space: nowrap;

    text-shadow:
        0 2px 8px rgba(8, 29, 77, 0.8);
}


/* Los Angeles is the current active market */

.state-hero__location--active
.state-hero__location-name {
    color: var(--theme-color);
}


/* =========================================================
   SMALL CONNECTOR LINE
========================================================= */

.state-hero__location::after {
    content: "";

    width: 22px;
    height: 1px;

    margin-left: 3px;

    background:
        linear-gradient(
            90deg,
            var(--theme-color),
            transparent
        );

    opacity: 0.55;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.state-hero__location-accessible {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip: rect(0 0 0 0);
    clip-path: inset(50%);

    white-space: nowrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .state-hero__visual {
        margin-top: 35px;
    }


    .state-hero__map-wrap {
        width: min(90%, 620px);
    }


    .state-hero__map-meta {
        right: 3%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .state-hero__map-wrap {
        width: 100%;
        max-width: 520px;
    }


    .state-hero__location-name {
        font-size: 8px;
    }


    .state-hero__location-pulse {
        width: 14px;
        height: 14px;
    }


    .state-hero__location-pulse::before {
        width: 21px;
        height: 21px;
    }


    .state-hero__location-pulse::after {
        width: 29px;
        height: 29px;
    }


    .state-hero__location-pulse i {
        width: 6px;
        height: 6px;
    }


    .state-hero__location::after {
        display: none;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .state-hero__map-meta {
        display: none;
    }


    .state-hero__location-name {
        font-size: 7px;

        letter-spacing: 0.04em;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .state-hero__map-image {
        transition: none;
    }


    .state-hero__visual:hover
    .state-hero__map-image {
        transform: none;
    }

}

/* =========================================================
   PLOCAL
   CITY HERO — LOS ANGELES
========================================================= */

.city-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 700px;

    padding: 120px 0 0;

    background:
        radial-gradient(
            circle at 82% 40%,
            rgba(36, 189, 199, 0.14),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            var(--color-dark) 0%,
            var(--theme-color2) 100%
        );
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.city-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -2;

    opacity: 0.11;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    pointer-events: none;
}


/* Large city lettering */

.city-hero::after {
    content: attr(data-city-label);

    position: absolute;

    left: 2%;
    bottom: -70px;

    z-index: -1;

    color: rgba(255, 255, 255, 0.035);

    font-family: var(--heading-font);
    font-size: clamp(110px, 16vw, 245px);
    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    pointer-events: none;
}


/* =========================================================
   CONTAINER / LAYOUT
========================================================= */

.city-hero__container {
    position: relative;
    z-index: 2;
}


.city-hero__layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(420px, 0.98fr);

    align-items: center;

    gap: clamp(45px, 6vw, 90px);

    min-height: 500px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.city-hero__content {
    position: relative;
    z-index: 3;

    max-width: 660px;
}


/* =========================================================
   EYEBROW
========================================================= */

.city-hero__eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 22px;

    color: var(--theme-color);

    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.14em;
}


.city-hero__eyebrow::before {
    content: "";

    width: 34px;
    height: 1px;

    margin-right: 4px;

    background: var(--theme-color);
}


/* =========================================================
   TITLE
========================================================= */

.city-hero__title {
    max-width: 660px;

    margin: 0;

    color: var(--color-white);

    font-family: var(--heading-font);
    font-size: var(--font-size-h1);
    font-weight: var(--heading-weight);

    line-height: 1.03;
    letter-spacing: var(--heading-letter-spacing);
}


.city-hero__title span {
    color: var(--theme-color);
}


/* =========================================================
   COPY
========================================================= */

.city-hero__copy-block {
    max-width: 590px;

    margin-top: 28px;
}


.city-hero__copy {
    margin: 0 0 28px;

    color: var(--footer-text-color);

    font-family: var(--body-font);
    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   CTA
========================================================= */

.city-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 12px 21px;

    border: 1px solid var(--border-white-color);

    background: rgba(255, 255, 255, 0.05);

    color: var(--color-white);

    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;

    transition: var(--transition2);
}


.city-hero__cta i {
    color: var(--theme-color);

    transition: transform 0.3s ease;
}


.city-hero__cta:hover {
    border-color: var(--theme-color);

    background: var(--theme-color);

    color: var(--theme-color2);
}


.city-hero__cta:hover i {
    color: var(--theme-color2);

    transform: translateY(4px);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.city-hero__visual {
    position: relative;

    min-width: 0;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   CITY IMAGE AREA
   IMPORTANT:
   NO CARD
   NO BORDER
   NO FRAME
   NO BACKGROUND
========================================================= */

.city-hero__image-area {
    bottom: 43px;
    left: -51px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 470px;

    overflow: visible;

    pointer-events: none;
}


.city-hero__image {
    display: block;

    width: min(92%, 620px);
    height: auto;

    max-height: 579px;

    object-fit: contain;

    opacity: 0.58;

    filter:
        drop-shadow(
            0 28px 40px rgba(8, 29, 77, 0.28)
        );

    transition:
        transform 0.6s ease,
        opacity 0.6s ease,
        filter 0.6s ease;
}


/* Slight hover only */

.city-hero__visual:hover
.city-hero__image {
    opacity: 0.70;

    transform:
        translateY(-4px)
        scale(1.015);
}


/* =========================================================
   COORDINATES
========================================================= */

.city-hero__code {
    position: absolute;

    top: 10px;
    right: 0;

    z-index: 5;

    color: rgba(255, 255, 255, 0.52);

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 600;

    line-height: 1.7;

    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}


/* =========================================================
   LA / CA NODE
========================================================= */

.city-hero__node {
    position: absolute;

    z-index: 6;

    top: 39%;
    left: 34%;

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--color-white);

    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;
}


/* Outer radar */

.city-hero__node::before {
    content: "";

    position: absolute;

    left: -6px;

    width: 24px;
    height: 24px;

    border: 1px solid rgba(36, 189, 199, 0.25);
    border-radius: 50%;

    background: rgba(36, 189, 199, 0.08);
}


/* Dot */

.city-hero__node-dot {
    position: relative;
    z-index: 2;

    display: block;

    width: 9px;
    height: 9px;

    border: 2px solid var(--theme-color);
    border-radius: 50%;

    background: var(--theme-color2);

    box-shadow:
        0 0 15px rgba(36, 189, 199, 0.85);
}


/* =========================================================
   CITY META
========================================================= */

.city-hero__meta {
    position: absolute;

    z-index: 6;

    right: 0;
    bottom: 70px;

    display: grid;

    grid-template-columns:
        auto
        minmax(120px, auto);

    align-items: center;

    column-gap: 28px;
    row-gap: 0;

    min-width: 270px;

    border-top: 1px solid var(--border-white-color);
}


/* Each row separator */

.city-hero__meta span,
.city-hero__meta strong {
    padding: 10px 0;

    border-bottom: 1px solid var(--border-white-color2);
}


.city-hero__meta span {
    color: rgba(255, 255, 255, 0.48);

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.city-hero__meta strong {
    color: var(--color-white);

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* =========================================================
   OPTIONAL IMAGE INTEGRATION GLOW
========================================================= */

.city-hero__visual::before {
    content: "";

    position: absolute;

    z-index: -1;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.10),
            transparent 68%
        );

    pointer-events: none;
}


/* Small technical line */

.city-hero__visual::after {
    content: "";

    position: absolute;

    top: 29%;
    left: 7%;

    z-index: 2;

    width: 78%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(36, 189, 199, 0.46),
            transparent
        );

    transform: rotate(-21deg);

    pointer-events: none;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.city-hero__breadcrumb {
    position: relative;
    z-index: 10;

    margin-top: 55px;

    padding: 18px 0;

    border-top: 1px solid var(--border-white-color2);

    background: rgba(8, 29, 77, 0.10);
}


.city-hero__breadcrumb .plocal-breadcrumb {
    margin: 0;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .city-hero {
        padding-top: 110px;
    }


    .city-hero__layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 0.9fr);

        gap: 40px;
    }


    .city-hero__image {
        width: min(90%, 560px);
    }


    .city-hero__meta {
        right: 10px;

        min-width: 245px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .city-hero {
        padding-top: 100px;
    }


    .city-hero__layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .city-hero__content {
        max-width: 720px;
    }


    .city-hero__visual {
        min-height: 480px;
    }


    .city-hero__image-area {
        height: 450px;
    }


    .city-hero__image {
        width: min(82%, 620px);
    }


    .city-hero__code {
        right: 4%;
    }


    .city-hero__meta {
        right: 5%;
        bottom: 40px;
    }


    .city-hero__node {
        left: 31%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .city-hero {
        min-height: auto;

        padding-top: 85px;
    }


    .city-hero__layout {
        gap: 30px;
    }


    .city-hero__copy {
        font-size: 15px;
    }


    .city-hero__visual {
        min-height: 430px;
    }


    .city-hero__image-area {
        height: 380px;
    }


    .city-hero__image {
        width: 92%;

        max-height: 360px;

        opacity: 0.48;
    }


    .city-hero__code {
        top: 0;
        right: 0;
    }


    .city-hero__node {
        top: 35%;
        left: 18%;
    }


    .city-hero__meta {
        right: 0;
        bottom: 10px;

        min-width: 235px;

        column-gap: 18px;
    }


    .city-hero__breadcrumb {
        margin-top: 35px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .city-hero__visual {
        min-height: 420px;
    }


    .city-hero__image-area {
        height: 340px;
    }


    .city-hero__code {
        font-size: 8px;
    }


    .city-hero__node {
        left: 12%;
    }


    .city-hero__meta {
        left: 0;
        right: auto;
        bottom: 0;

        width: 100%;
    }


    .city-hero__cta {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .city-hero__image,
    .city-hero__cta,
    .city-hero__cta i {
        transition: none;
    }


    .city-hero__visual:hover
    .city-hero__image {
        transform: none;
    }

}

/* =========================================================
   TEXAS STATE HERO — MAP IMAGE
========================================================= */

.state-hero__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
    min-height: 500px;
}


/* =========================================================
   MAP WRAPPER
   No card
   No background
   No border
========================================================= */

.state-hero__map-wrap {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: min(100%, 650px);

    margin: 0 auto;
}


/* =========================================================
   TEXAS IMAGE
========================================================= */

.state-hero__map-image {
    right: 105px;
    position: relative;
    z-index: 1;

    display: block;

    width: 59%;
    height: auto;

    object-fit: contain;

    opacity: 0.62;

    filter:
        drop-shadow(
            0 24px 34px rgba(8, 29, 77, 0.20)
        );

    transition:
        transform 0.6s ease,
        opacity 0.6s ease,
        filter 0.6s ease;
}


/* Slight interaction */

.state-hero__visual:hover
.state-hero__map-image {
    opacity: 0.76;

    transform:
        translateY(-5px)
        scale(1.012);

    filter:
        drop-shadow(
            0 30px 42px rgba(8, 29, 77, 0.26)
        );
}


/* =========================================================
   TEXAS META
========================================================= */

.state-hero__map-meta {
    position: absolute;

    top: 8%;
    right: 2%;

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 4px;

    text-align: right;
}


.state-hero__map-meta strong {
    color: var(--theme-color);

    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;

    line-height: 1;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.state-hero__map-meta span {
    color: rgba(255, 255, 255, 0.52);

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* =========================================================
   DALLAS LOCATION
========================================================= */

.state-hero__location {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;

    gap: 9px;

    pointer-events: none;
}


/*
   Dallas is in north-central Texas.

   You can make tiny adjustments to these percentages
   depending on the exact whitespace of your image.
*/

.state-hero__location--dallas {
    top: 34%;
    left: 57%;
}


/* =========================================================
   DALLAS RADAR POINT
========================================================= */

.state-hero__location-pulse {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: rgba(36, 189, 199, 0.14);

    box-shadow:
        0 0 0 1px rgba(36, 189, 199, 0.20);
}


/* First radar ring */

.state-hero__location-pulse::before {
    content: "";

    position: absolute;

    width: 28px;
    height: 28px;

    border: 1px solid rgba(36, 189, 199, 0.36);
    border-radius: 50%;
}


/* Second radar ring */

.state-hero__location-pulse::after {
    content: "";

    position: absolute;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(36, 189, 199, 0.18);
    border-radius: 50%;
}


/* Center */

.state-hero__location-pulse i {
    position: relative;
    z-index: 2;

    display: block;

    width: 7px;
    height: 7px;

    border: 2px solid var(--theme-color);
    border-radius: 50%;

    background: var(--theme-color2);

    box-shadow:
        0 0 14px rgba(36, 189, 199, 0.85);
}


/* =========================================================
   DALLAS NAME
========================================================= */

.state-hero__location-name {
    color: var(--color-white);

    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 700;

    line-height: 1;

    text-transform: uppercase;
    letter-spacing: 0.09em;

    white-space: nowrap;

    text-shadow:
        0 2px 8px rgba(8, 29, 77, 0.90);
}


/* Small technical connector */

.state-hero__location::after {
    content: "";

    width: 28px;
    height: 1px;

    margin-left: 3px;

    background:
        linear-gradient(
            90deg,
            var(--theme-color),
            transparent
        );

    opacity: 0.55;
}


/* =========================================================
   SUBTLE GLOW BEHIND MAP
========================================================= */

.state-hero__visual::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.10),
            transparent 68%
        );

    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .state-hero__visual {
        min-height: 470px;

        margin-top: 30px;
    }


    .state-hero__map-wrap {
        width: min(92%, 620px);
    }


    .state-hero__map-image {
        width: 76%;
    }


    .state-hero__map-meta {
        right: 5%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .state-hero__visual {
        min-height: 410px;
    }


    .state-hero__map-wrap {
        width: 100%;
        max-width: 520px;
    }


    .state-hero__map-image {
        width: 82%;

        opacity: 0.55;
    }


    .state-hero__location--dallas {
        top: 34%;
        left: 56%;
    }


    .state-hero__location-name {
        font-size: 8px;
    }


    .state-hero__location-pulse {
        width: 15px;
        height: 15px;
    }


    .state-hero__location-pulse::before {
        width: 23px;
        height: 23px;
    }


    .state-hero__location-pulse::after {
        width: 33px;
        height: 33px;
    }


    .state-hero__location::after {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .state-hero__visual {
        min-height: 350px;
    }


    .state-hero__map-image {
        width: 90%;
    }


    .state-hero__map-meta {
        top: 0;
        right: 0;
    }


    .state-hero__map-meta span {
        font-size: 8px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .state-hero__map-image {
        transition: none;
    }


    .state-hero__visual:hover
    .state-hero__map-image {
        transform: none;
    }

}

/* =========================================================
   PLOCAL
   CITY HERO — DALLAS IMAGE VERSION
========================================================= */


/* =========================================================
   HERO
========================================================= */

.city-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 700px;

    padding: 120px 0 0;

    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(36, 189, 199, 0.13),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            var(--color-dark) 0%,
            var(--theme-color2) 100%
        );
}


/* Background technical grid */

.city-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -2;

    opacity: 0.11;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    pointer-events: none;
}


/* Giant DALLAS typography */

.city-hero::after {
    content: attr(data-city-label);

    position: absolute;

    left: 2%;
    bottom: -70px;

    z-index: -1;

    color: rgba(255, 255, 255, 0.035);

    font-family: var(--heading-font);
    font-size: clamp(110px, 16vw, 245px);
    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.city-hero__container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   TWO COLUMN LAYOUT
========================================================= */

.city-hero__layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(420px, 0.98fr);

    align-items: center;

    gap: clamp(45px, 6vw, 90px);

    min-height: 500px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.city-hero__content {
    position: relative;
    z-index: 3;

    max-width: 660px;
}


/* =========================================================
   EYEBROW
========================================================= */

.city-hero__eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 22px;

    color: var(--theme-color);

    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.14em;
}


.city-hero__eyebrow::before {
    content: "";

    width: 34px;
    height: 1px;

    margin-right: 4px;

    background: var(--theme-color);
}


/* =========================================================
   TITLE
========================================================= */

.city-hero__title {
    max-width: 660px;

    margin: 0;

    color: var(--color-white);

    font-family: var(--heading-font);
    font-size: var(--font-size-h1);
    font-weight: var(--heading-weight);

    line-height: 1.03;
    letter-spacing: var(--heading-letter-spacing);
}


.city-hero__title span {
    color: var(--theme-color);
}


/* =========================================================
   COPY
========================================================= */

.city-hero__copy-block {
    max-width: 590px;

    margin-top: 28px;
}


.city-hero__copy {
    margin: 0 0 28px;

    color: var(--footer-text-color);

    font-family: var(--body-font);
    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   CTA
========================================================= */

.city-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 12px 21px;

    border: 1px solid var(--border-white-color);

    background: rgba(255, 255, 255, 0.05);

    color: var(--color-white);

    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;

    transition: var(--transition2);
}


.city-hero__cta i {
    color: var(--theme-color);

    transition: transform 0.3s ease;
}


.city-hero__cta:hover {
    border-color: var(--theme-color);

    background: var(--theme-color);

    color: var(--theme-color2);
}


.city-hero__cta:hover i {
    color: var(--theme-color2);

    transform: translateY(4px);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.city-hero__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
    min-height: 500px;
}


/* Soft glow behind map */

.city-hero__visual::before {
    content: "";

    position: absolute;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(36, 189, 199, 0.10),
            transparent 68%
        );

    pointer-events: none;
}


/* Technical diagonal line */

.city-hero__visual::after {
    content: "";

    position: absolute;

    top: 30%;
    left: 7%;

    z-index: 2;

    width: 78%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(36, 189, 199, 0.42),
            transparent
        );

    transform: rotate(-20deg);

    pointer-events: none;
}


/* =========================================================
   IMAGE AREA
   No box / no border / no card
========================================================= */

.city-hero__image-area {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 470px;

    overflow: visible;

    pointer-events: none;
}


/* =========================================================
   DALLAS IMAGE
========================================================= */

.city-hero__image {
    position: relative;
    z-index: 1;

    display: block;

    width: min(92%, 680px);
    height: auto;

    max-height: 655px;

    object-fit: contain;

    /*
       Slight transparency helps the cyan map
       integrate with the dark hero.
    */
    opacity: 0.56;

    filter:
        drop-shadow(
            0 26px 38px rgba(8, 29, 77, 0.24)
        );

    transition:
        transform 0.6s ease,
        opacity 0.6s ease,
        filter 0.6s ease;
}


.city-hero__visual:hover
.city-hero__image {
    opacity: 0.70;

    transform:
        translateY(-5px)
        scale(1.015);

    filter:
        drop-shadow(
            0 32px 44px rgba(8, 29, 77, 0.30)
        );
}


/* =========================================================
   MARKET CODE / COORDINATES
========================================================= */

.city-hero__code {
    position: absolute;

    top: 10px;
    right: 0;

    z-index: 6;

    color: rgba(255, 255, 255, 0.50);

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 600;

    line-height: 1.7;

    text-align: right;
    text-transform: uppercase;

    letter-spacing: 0.11em;
}


/* =========================================================
   DAL / TX NODE
========================================================= */

.city-hero__node {
    position: absolute;

    z-index: 7;

    top: 39%;
    left: 34%;

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--color-white);

    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.08em;
}


/* Radar ring */

.city-hero__node::before {
    content: "";

    position: absolute;

    left: -6px;

    width: 24px;
    height: 24px;

    border: 1px solid rgba(36, 189, 199, 0.25);
    border-radius: 50%;

    background: rgba(36, 189, 199, 0.08);
}


/* Central point */

.city-hero__node-dot {
    position: relative;
    z-index: 2;

    display: block;

    width: 9px;
    height: 9px;

    border: 2px solid var(--theme-color);
    border-radius: 50%;

    background: var(--theme-color2);

    box-shadow:
        0 0 15px rgba(36, 189, 199, 0.85);
}


/* =========================================================
   CITY INFORMATION
========================================================= */

.city-hero__meta {
    position: absolute;

    z-index: 7;

    right: 0;
    bottom: 65px;

    display: grid;

    grid-template-columns:
        auto
        minmax(135px, auto);

    align-items: center;

    column-gap: 28px;

    min-width: 285px;

    border-top: 1px solid var(--border-white-color);
}


/* Rows */

.city-hero__meta span,
.city-hero__meta strong {
    padding: 10px 0;

    border-bottom: 1px solid var(--border-white-color2);
}


/* Labels */

.city-hero__meta span {
    color: rgba(255, 255, 255, 0.46);

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.10em;
}


/* Values */

.city-hero__meta strong {
    color: var(--color-white);

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.05em;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.city-hero__breadcrumb {
    position: relative;
    z-index: 10;

    margin-top: 55px;

    padding: 18px 0;

    border-top: 1px solid var(--border-white-color2);

    background: rgba(8, 29, 77, 0.10);
}


.city-hero__breadcrumb .plocal-breadcrumb {
    margin: 0;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .city-hero {
        padding-top: 110px;
    }


    .city-hero__layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 0.9fr);

        gap: 40px;
    }


    .city-hero__image {
        width: min(82%, 540px);
    }


    .city-hero__meta {
        min-width: 255px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .city-hero {
        padding-top: 100px;
    }


    .city-hero__layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .city-hero__content {
        max-width: 720px;
    }


    .city-hero__visual {
        min-height: 490px;
    }


    .city-hero__image-area {
        height: 450px;
    }


    .city-hero__image {
        width: min(72%, 580px);
    }


    .city-hero__code {
        right: 4%;
    }


    .city-hero__meta {
        right: 4%;
        bottom: 35px;
    }


    .city-hero__node {
        left: 31%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .city-hero {
        min-height: auto;

        padding-top: 85px;
    }


    .city-hero__layout {
        gap: 30px;
    }


    .city-hero__copy {
        font-size: 15px;
    }


    .city-hero__visual {
        min-height: 440px;
    }


    .city-hero__image-area {
        height: 365px;
    }


    .city-hero__image {
        width: 82%;

        max-height: 350px;

        opacity: 0.48;
    }


    .city-hero__node {
        top: 35%;
        left: 18%;
    }


    .city-hero__meta {
        right: 0;
        bottom: 5px;

        min-width: 240px;

        column-gap: 18px;
    }


    .city-hero__breadcrumb {
        margin-top: 35px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .city-hero__visual {
        min-height: 430px;
    }


    .city-hero__image {
        width: 92%;
    }


    .city-hero__code {
        top: 0;
        right: 0;

        font-size: 8px;
    }


    .city-hero__node {
        left: 10%;
    }


    .city-hero__meta {
        left: 0;
        right: auto;
        bottom: 0;

        width: 100%;

        min-width: 0;
    }


    .city-hero__cta {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .city-hero__image,
    .city-hero__cta,
    .city-hero__cta i {
        transition: none;
    }


    .city-hero__visual:hover
    .city-hero__image {
        transform: none;
    }

}

/* =========================================================
   TEXAS MAP — UNIQUE SIZE
========================================================= */

.state-hero__map-wrap
.state-hero__map-image.state-hero__map-image--texas {
    width: 93%;
    max-width: none;

    height: auto;

    transform: none;

    object-fit: contain;
}

/* Texas hover */

.state-hero__visual:hover
.state-hero__map-image--texas {
    transform: translateY(-5px);
}


/* =========================================================
   FLORIDA MAP — DESKTOP
========================================================= */

.state-hero__map-image--florida {
    display: block;

    width: 560px;
    max-width: none;
    height: auto;

    position: relative;

    top: 25px;
    left: -124px;
}


/* =========================================================
   FLORIDA MAP — TABLET
========================================================= */

@media (max-width: 991px) {

    .state-hero__map-image--florida {
        width: 620px;

        top: 10px;
        left: 0;
    }

}


/* =========================================================
   FLORIDA MAP — MOBILE
========================================================= */

@media (max-width: 575px) {

    .state-hero__map-image--florida {
        width: 420px;

        top: 0;
        left: 50%;

        transform: translateX(-50%);
    }

}

/* Desktop */
.state-hero__location--miami {
    position: absolute;

    top: 72%;
    left: 76%;

    transform: translate(-50%, -50%);
}


/* Tablet */
@media (max-width: 991px) {

    .state-hero__location--miami {
        top: 73%;
        left: 77%;
    }

}


/* Mobile */
@media (max-width: 575px) {

    .state-hero__location--miami {
        top: 75%;
        left: 79%;
    }

}