/*
Theme Name: 5R Outdoor
Theme URI: https://5routdoor.com
Author: 5R Outdoor Advertising Corp.
Author URI: https://5routdoor.com
Description: Static HTML prototype for WordPress Block Theme migration.
Version: 0.3.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.1
License: Proprietary
Text Domain: fiver-outdoor
*/

/* ─── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
/*
 * WP preset tokens match the slugs defined in theme.json.
 * Short aliases let existing CSS continue to work unchanged
 * while the WP template layer uses the --wp--preset-- names.
 */
:root {
  /* WP color tokens */
  --wp--preset--color--primary:       #1754fc;
  --wp--preset--color--primary-dark:  #0e35a1;
  --wp--preset--color--dark:          #1d232b;
  --wp--preset--color--nav-bg:        #e5e5e5;
  --wp--preset--color--gray-bg:       #F7F7F7;
  --wp--preset--color--footer-bg:     #ececec;
  --wp--preset--color--text:          #282828;
  --wp--preset--color--muted:         #606060;
  --wp--preset--color--border:        #8a8a8a;
  --wp--preset--color--border-light:  #e5e5e5;

  /* Short aliases */
  --blue:      var(--wp--preset--color--primary);
  --blue-dk:   var(--wp--preset--color--primary-dark);
  --dark:      var(--wp--preset--color--dark);
  --nav-bg:    var(--wp--preset--color--nav-bg);
  --gray-bg:   var(--wp--preset--color--gray-bg);
  --footer-bg: var(--wp--preset--color--footer-bg);
  --text:      var(--wp--preset--color--text);
  --muted:     var(--wp--preset--color--muted);
  --border:    var(--wp--preset--color--border);
  --border-lt: var(--wp--preset--color--border-light);

  /* WP font-size tokens */
  --wp--preset--font-size--small:    0.875rem;
  --wp--preset--font-size--medium:   1rem;
  --wp--preset--font-size--large:    1.25rem;
  --wp--preset--font-size--x-large:  1.5rem;

  /* Misc shared tokens */
  --radius:    20px;
  --radius-sm: 9px;
  --trans:     .3s ease;
  --shadow:    0 4px 21px 1px rgba(0, 0, 0, .45);
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
}

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container {
  max-width: 1373px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Section header pattern */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.section-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
  letter-spacing: 0;
  line-height: 1.9;
}

.section-underline {
  width: 96px;
  height: 4px;
  background: var(--blue);
}

.section-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #000;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 48px;
}

.section-title span {
  color: var(--blue);
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-hero,
.btn-hero-outline {
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: .875rem;
  font-weight: 500;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 1.8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--trans), border-color var(--trans), transform var(--trans);
  white-space: nowrap;
  line-height: 1;
  border: none;
}

.btn-hero svg,
.btn-hero-outline svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-hero {
  background: var(--blue);
  color: #e5e5e5;
  border: 2px solid var(--blue);
}

.btn-hero:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: #e5e5e5;
  border: 1px solid #e5e5e5;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-talktous {
  background: var(--blue);
  color: #e5e5e5;
  border: none;
  padding: 8px 24px;
  border-radius: 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .6px;
  cursor: pointer;
  transition: background-color var(--trans);
  display: inline-flex;
  align-items: center;
}

.btn-talktous:hover {
  background: var(--blue-dk);
}

.btn-primary {
  background: var(--blue);
  color: #e5e5e5;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1.8px;
  cursor: pointer;
  transition: background-color var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--blue-dk);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1.8px;
  cursor: pointer;
  transition: background-color var(--trans), color var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
}

.btn-cta-fill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--blue);
  color: #e5e5e5;
  border: 1px solid var(--blue);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1.8px;
  cursor: pointer;
  transition: background-color var(--trans);
  box-shadow: 0 0 10px rgba(0, 242, 255, .3), inset 0 0 10px 1px rgba(0, 242, 255, .3);
}

.btn-cta-fill:hover {
  background: var(--blue-dk);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: rgba(255, 255, 255, .01);
  color: #e5e5e5;
  border: 1px solid var(--blue);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1.8px;
  cursor: pointer;
  transition: background-color var(--trans);
  box-shadow: 0 0 10px rgba(0, 242, 255, .3), inset 0 0 10px 1px rgba(0, 242, 255, .3);
}

.btn-cta-outline:hover {
  background: rgba(23, 84, 252, .15);
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
/*
 * backdrop-filter removed: --nav-bg (#e5e5e5) is fully opaque,
 * so the blur had no visual effect.
 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: var(--nav-bg);
  border-bottom: 2.5px solid #6b7280;
  transition: box-shadow var(--trans);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .15);
}

.navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 93px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.navbar__logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.navbar__nav,
nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-self: center;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0;
  line-height: 1.5;
  transition: color var(--trans);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link.current-menu-item,
.nav-link.active {
  font-weight: 700;
  color: var(--blue);
}

.navbar__cta {
  justify-self: end;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  justify-self: end;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.theme-toggle-btn{display:none}

/* ─── CONTACT FORM 7 ──────────────────────────────────────────────────── */
#inquiryFormWrap .wpcf7 form label .required {
    color: #dc3545;
    font-weight: 700;
    margin-left: 2px;
}
#inquiryFormWrap form.wpcf7-form p label {
    font-weight: 700;
    font-size: 0.9rem;
}
#inquiryFormWrap input.wpcf7-form-control.wpcf7-text,
#inquiryFormWrap textarea.wpcf7-form-control {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--text-dark);
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#inquiryFormWrap form.wpcf7-form > p {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#inquiryFormWrap form.wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
#inquiryFormWrap select.wpcf7-form-control.wpcf7-select {
    appearance:none;background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d6d6d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right 18px center;background-size:16px;padding-right:40px;
}
#inquiryFormWrap select.wpcf7-form-control.wpcf7-select {
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-dark);
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#inquiryFormWrap .inquiry-form-group.form-group-full p input[type="submit"] {
    background: var(--blue);
    color: #ffffff;
    border: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}
#inquiryFormWrap .wpcf7-response-output {
    grid-column: span 2;
}
/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 10, 20, .4) 0%, rgba(5, 10, 20, .55) 60%, rgba(5, 10, 20, .75) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__eyebrow {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 10px;
  color: #e1fdff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__eyebrow span {
  color: #e5e5e5;
}

.hero__logo-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 24px;
}

.hero__logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, .6));
}

.hero__tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #f8feff;
  font-size: 1.1rem;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── HERO CAROUSEL ─────────────────────────────────────────── */
.hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

/* Arrow buttons — solid dark circle */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.65);
  border: none;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero__arrow:hover {
  background: rgba(0, 0, 0, 0.88);
  transform: translateY(-50%) scale(1.08);
}

.hero__arrow--prev { left: 32px; }
.hero__arrow--next { right: 32px; }

/* Slide indicator dots */
.hero__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero__dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.hero__dot.is-active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* ─── CHAT WIDGET ───────────────────────────────────────────── */
.chat-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  width: 54px;
  height: 54px;
  background: var(--blue);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(23, 84, 252, .55);
  transition: transform var(--trans);
}

.chat-toggle:hover {
  transform: scale(1.1);
}

.chat-toggle__icon {
  width: 24px;
  height: 24px;
  position: absolute;
  transition: opacity .25s ease, transform .25s ease;
}

.chat-toggle__icon--open {
  opacity: 1;
  transform: scale(1);
}

.chat-toggle__icon--close {
  opacity: 0;
  transform: scale(.5);
}

.chat-toggle.active .chat-toggle__icon--open {
  opacity: 0;
  transform: scale(.5);
}

.chat-toggle.active .chat-toggle__icon--close {
  opacity: 1;
  transform: scale(1);
}

.chat-widget {
  position: fixed;
  bottom: 94px;
  right: 28px;
  z-index: 1999;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.chat-widget.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-widget__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--blue);
}

.chat-widget__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
}

.chat-widget__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-widget__info {
  flex: 1;
}

.chat-widget__name {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
}

.chat-widget__status {
  font-size: .72rem;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.chat-widget__dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%,
  100% { opacity: 1; }
  50%   { opacity: .4; }
}

.chat-widget__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color var(--trans);
  flex-shrink: 0;
}

.chat-widget__close:hover {
  background: rgba(255, 255, 255, .15);
}

.chat-widget__close svg {
  width: 16px;
  height: 16px;
}

.chat-widget__body {
  padding: 20px 18px;
  background: #f8fafc;
}

.chat-widget__bubble {
  background: #fff;
  border-radius: 12px 12px 12px 4px;
  padding: 14px 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
}

.chat-widget__bubble p {
  font-size: .88rem;
  color: #374151;
  line-height: 1.65;
}

.chat-widget__footer {
  padding: 18px 18px 22px;
  background: #0d1117;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.chat-widget__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 14px;
}

.chat-widget__btns {
  display: flex;
  gap: 10px;
}

.chat-widget__btn {
  flex: 1;
  justify-content: center;
  padding: 11px 8px;
  font-size: .78rem;
  min-width: 0;
  letter-spacing: 1px;
}

/* ─── SERVICES ──────────────────────────────────────────────── */
.services {
  padding: 72px 0;
  background: var(--gray-bg);
}

.services__wrapper {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.service-card {
  flex: 1;
  padding: 40px 32px;
  border-right: 1px solid #d9d9d9;
  background: #fff;
  transition: box-shadow var(--trans);
  position: relative;
  cursor: pointer;
}

.service-card:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.service-card:last-child {
  border-right: none;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.service-card:hover {
  box-shadow: inset 0 0 0 2px var(--blue);
  z-index: 1;
}

.service-card--active {
  box-shadow: inset 0 0 0 5px var(--blue), 0 4px 21px 1px rgba(0, 0, 0, .45);
}

.service-card--active:first-child {
  border-radius: 19px 0 0 19px;
}

.service-card--active:last-child {
  border-radius: 0 19px 19px 0;
}

.service-card--active:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.service-card__icon {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 31px;
  height: 31px;
  stroke: var(--blue);
}

.service-card__icon img {
  width: 31px;
  height: 31px;
}

.service-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── BILLBOARD SOLUTIONS ───────────────────────────────────── */
.billboards {
  padding: 80px 0;
  background: #fff;
}

.billboards__header {
  margin-bottom: 40px;
}

.billboards__title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.billboards__sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1f1f1f;
}

.billboards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.billboard-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.billboard-card__img {
  width: 100%;
  height: 662px;
  background-size: cover;
  background-position: center;
  display: block;
  position: relative;
}

.billboard-card__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--blue);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .625rem;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-transform: uppercase;
  z-index: 2;
}

.billboard-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--blue);
  padding: 24px 32px 28px 24px;
  border-radius: 0 40px 0 0;
  max-width: 80%;
  width: 560px;
  z-index: 2;
}

.billboard-card__info h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.billboard-card__info p {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  max-width: 420px;
}

/* ─── LOCATIONS (home page section) ─────────────────────────── */
.locations {
  padding: 80px 0;
  background: var(--gray-bg);
}

.locations__container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.locations__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.locations__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.locations__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.locations__label {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.locations__heading {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #282828;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.locations__heading span {
  color: var(--blue);
}

.locations__content > p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #282828;
  line-height: 1.6;
  margin-bottom: 24px;
}

.locations__list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.locations__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #282828;
}

.locations__list svg {
  stroke: var(--blue);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

.locations__btn {
  align-self: flex-start;
}

/* ─── FEATURE SITES ─────────────────────────────────────────── */
.feature-sites {
  padding: 80px 0;
  background: #fff;
  border: 1px solid var(--border-lt);
}

.feature-sites__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.feature-sites__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
}

.site-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}

.site-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.site-card__img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}

.site-card__code {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0E35A2;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .625rem;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.no-img-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
}

.site-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-card__body h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin: 0;
}

.site-card__address {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

.site-card__meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 0;
  margin: 0;
}

.site-card__dim,
.site-card__traffic {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-card__dim span,
.site-card__traffic span {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-card__dim strong,
.site-card__traffic strong {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: .85rem;
  color: var(--text);
}

.site-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.site-card__tag {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.site-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 16px;
  border-radius: 0 0 16px 16px;
  transition: background-color var(--trans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.site-card__cta:hover {
  background: var(--blue-dk);
}

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  padding: 96px 0;
  background: var(--dark);
  border: 1px solid #8b8b8b;
  text-align: center;
}

.cta-banner__label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 1rem;
  letter-spacing: 6.4px;
  margin-bottom: 16px;
}

.cta-banner h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: #e5e5e5;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #e5e5e5;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

/* ─── COMMUNITY ─────────────────────────────────────────────── */
.community {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.community__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid #3a494b;
  backdrop-filter: blur(6px);
}

.news-card--white {
  background: #fff;
}

.news-card__date {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: .625rem;
  line-height: 1.5;
}

.news-card h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 1.4rem;
  line-height: 1.25;
}

.news-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #131313;
  line-height: 1.5;
  flex: 1;
}

.news-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: .6875rem;
  padding-top: 8px;
  transition: color var(--trans);
}

.news-card__link:hover {
  color: var(--blue-dk);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid #3a494b;
  padding: 20px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  color: #000;
  letter-spacing: 1.8px;
  transition: color var(--trans);
}

.footer__links a:hover {
  color: var(--blue);
}

.footer__copy {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--blue);
  font-size: .75rem;
  letter-spacing: 1.8px;
  text-align: right;
  margin-bottom:0
}


/* ==========================================================================
   Force WP Booking Calendar to Fill Parent Wrapper
   ========================================================================== */

/* 1. Stretch the main structural container blocks */
.wpbc_container,
.wpbc_calendar_wraper,
.wpbc_cal_container,
.hasDatepick {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* 2. Target the specific layout engines used by the datepick library */
.datepick-inline,
.datepick-one-month {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* 3. Force the internal table to expand gracefully and share space equally */
table.datepick.wpbc_calendar {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed; /* Crucial: ensures the 7 day-columns stay perfectly equal in width */
}

/* 4. Ensure cell structural boxes stretch perfectly inside the table cells */
table.datepick.wpbc_calendar td.datepick-days-cell,
table.datepick.wpbc_calendar th,
table.datepick.wpbc_calendar .wpbc-cell-box {
    width: 100% !important;
    box-sizing: border-box;
}

/* 5. [Optional] Control the vertical aspect ratio */
/* If the calendar gets wide, you might want the cells taller to look square */
table.datepick.wpbc_calendar .date-cell-content {
    padding-top: 15px !important;  /* Adjust these values to change height */
    padding-bottom: 15px !important;
    text-align: center;
}

section.basic {
    padding-top: 150px;
    padding-bottom: 100px;
}

section.basic ul {
    list-style: disc;
    padding-inline-start: 40px;
    margin-block-start: 1em;
    margin-block-end: 1em;
}

section.basic h2 {
    margin-top: 0.8em;
}


/* =========================
   5R Outdoor Media Kit Form
   ========================= */
.pum-content.popmake-content .wpcf7 form {
    max-width: 100%;
}

.pum-content.popmake-content .wpcf7 p {
    margin-bottom: 20px;
}

.pum-content.popmake-content .wpcf7 label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

/* Inputs & Selects */

.pum-content.popmake-content .wpcf7 input[type="text"],
.pum-content.popmake-content .wpcf7 input[type="email"],
.pum-content.popmake-content .wpcf7 input[type="tel"],
.pum-content.popmake-content .wpcf7 select {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    color: #111827;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.pum-content.popmake-content .wpcf7 select {
    cursor: pointer;
}

/* Placeholder */

.pum-content.popmake-content .wpcf7 input::placeholder {
    color: #9ca3af;
}

/* Focus State */

.pum-content.popmake-content .wpcf7 input:focus,
.pum-content.popmake-content .wpcf7 select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13,110,253,.15);
}

/* Hover State */

.pum-content.popmake-content .wpcf7 input:hover,
.pum-content.popmake-content .wpcf7 select:hover {
    border-color: #9ca3af;
}

/* Submit Button */

.wpcf7-submit {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 12px;
    background: #0d6efd;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .3px;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 8px 24px rgba(13,110,253,.25);
}

.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13,110,253,.35);
}

.wpcf7-submit:active {
    transform: translateY(0);
}

/* Validation Errors */

.wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
}

/* Success Message */

.wpcf7-response-output {
    margin-top: 20px !important;
    border-radius: 10px;
    padding: 14px 18px !important;
    font-size: 14px;
}

/* Loading Spinner */

.wpcf7-spinner {
    margin-left: 12px;
}

/* Form Container */

.media-kit-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow:
        0 4px 10px rgba(0,0,0,.04),
        0 20px 40px rgba(0,0,0,.06);
}

/* Optional Form Header */

.media-kit-form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.media-kit-form-subtitle {
    color: #6b7280;
    margin-bottom: 30px;
}

/* Mobile */

@media (max-width: 768px) {

    .media-kit-form {
        padding: 24px;
        border-radius: 16px;
    }

    .pum-content.popmake-content .wpcf7 input[type="text"],
    .pum-content.popmake-content .wpcf7 input[type="email"],
    .pum-content.popmake-content .wpcf7 input[type="tel"],
    .pum-content.popmake-content .wpcf7 select {
        height: 50px;
        font-size: 14px;
    }

    .wpcf7-submit {
        height: 54px;
        font-size: 15px;
    }
}

@media (min-width: 992px){

    .pum-content.popmake-content .wpcf7 form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 20px;
    }
    .pum-content.popmake-content .wpcf7 form p.full, .pum-content.popmake-content .wpcf7 form .wpcf7-response-output {
        grid-column: 1 / -1;
    }
    .pum-content.popmake-content .wpcf7 form p:last-of-type {
        grid-column: 1 / -1;
    }
}

.pum-theme-1110 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
    padding: 0 16px !important;
}

.pum-container.popmake h2 {
    margin-bottom: 20px;
}
.wpcf7 form span.required {
    color: red;
}
.wpcf7 form span.required {
    color: red;
}
.wpcf7-spinner {
    position: relative;
    margin-top: -10px;
}

/* ─── IMAGE VIDEO ─────────────────────────────────────────────── */
.thumbnail-box.itemvideo {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.thumbnail-box.itemvideo img {
    display: block;
    width: 100%;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Dark overlay */
.thumbnail-box.itemvideo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
    transition: background 0.3s ease;
    z-index: 1;
}

/* Play button */
.thumbnail-box.itemvideo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 40px solid #fff;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Hover effects */
.thumbnail-box.itemvideo:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.thumbnail-box.itemvideo:hover::before {
    background: rgba(0,0,0,.4);
}

.thumbnail-box.itemvideo:hover::after {
    transform: translate(-40%, -50%) scale(1.15);
}

.hidden {display: none}

.top-btn {margin-bottom: 8px}


/* ─── CLUSTER ─────────────────────────────────────────────── */
.custom-cluster {
    background: transparent;
    border: none;
}

.cluster-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;

    background: #0055cc;
    color: white;

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

    font-size: 14px;
    font-weight: 700;

    border: 3px solid white;

    box-shadow: 0 3px 8px rgba(0,0,0,.25);
}
.cluster-pin {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: #23679c;

    color: white;

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

    font-weight: 700;

    border: 4px solid white;

    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.cluster-icon.small {
    width: 40px;
    height: 40px;
}

.cluster-icon.medium {
    width: 50px;
    height: 50px;
}

.cluster-icon.large {
    width: 60px;
    height: 60px;
}
.billboard-tooltip {
    background: #23679c;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(0,0,0,.2);
}

.billboard-tooltip:before {
    border-top-color: #23679c;
}

/* ─── MENU ─────────────────────────────────────────────── */
.header-search {
    position: absolute;
    right: 24px;
    display: inline-block;
    width: 43px;
}

.header-search .search-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #fff;
    padding: 8px;
}

.header-search .search-toggle:hover {
    opacity: .8;
}

.header-search .search-overlay {

    position: absolute;

    top: 100%;
    right: 0;

    width: 380px;

    background: #fff;

    padding: 15px;

    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all .25s ease;

    z-index: 9999;
}

.header-search .search-overlay.active {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);

}

.header-search .search-overlay form {

    display: flex;
    gap: 10px;

}

.header-search .search-overlay input, form#searchform input[type="text"] {
    flex: 1;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
    font-size: 14px;
}

.header-search .search-overlay button, form#searchform input[type="submit"] {
    background: var(--blue);
    color: white;
    border: 0;
    border-radius: var(--radius-sm);
    padding: 12px 32px;
    cursor: pointer;
}

.header-search .search-overlay button:hover{
    background: var(--blue-dk);
}

.header-search .search-toggle:hover svg {
    stroke: var(--blue);
}

input#searchsubmit {
    margin-top: 1em;
}

form#searchform fieldset {
    border: none;
    margin-top: 20px;
}

.detail-hero__code span {
    color: red;
}

@media (max-width: 1100px) {
    .header-search .header-search {
        right: 0;
    }
}

@media (max-width: 768px) {

    .header-search .search-overlay {

        width: calc(100vw - 40px);

        right: -10px;

    }

}

@media (max-width: 480px) {
    .header-search .header-search {
        right: 60px;
    }
}

.navbar__inner {position: relative;}
.search-results main, .search-no-results main {
    margin-top: 120px;
    margin-bottom: 50px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .container {
    padding: 0 40px;
  }

  .feature-sites__grid {
    grid-template-columns: 1fr 1fr;
  }

  .community__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .billboards__grid {
    grid-template-columns: 1fr;
  }

  .locations__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .locations__image {
    height: auto;
  }

  .services__wrapper {
    flex-direction: column;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .service-card--active {
    border-radius: 19px 19px 0 0;
  }

  .feature-sites__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar__inner {
    display: flex;
    justify-content: space-between;
  }

  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 93px;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    border-top: 1px solid #3a494b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    padding: 16px 40px;
    gap: 4px;
    z-index: 999;
  }

  .hamburger {
    display: flex;
  }

  .hero__content {
    padding: 0 24px;
  }

  .community__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__copy {
    text-align: center;
  }

  #inquiryFormWrap form.wpcf7-form > p {
    grid-column: span 2;
  }

  .form-group-full {
      grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 24px;
  }

  .community__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .billboards__grid {
    grid-template-columns: 1fr;
  }
}


.search-results-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(320px, 1fr));

    gap: 30px;

    margin-top: 40px;
}

.billboard-card {

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);

    transition: .25s ease;
}

.billboard-card:hover {

    transform: translateY(-5px);
}

.billboard-card a {

    display: block;

    color: inherit;

    text-decoration: none;
}

.billboard-card-image img {

    width: 100%;

    height: 220px;

    object-fit: cover;
}

.billboard-card-content {

    padding: 20px;
}

.billboard-code {

    display: inline-block;

    margin-bottom: 10px;

    color: #23679c;

    font-weight: 700;

    font-size: 13px;
}

.billboard-card h3 {

    margin-bottom: 10px;

    font-size: 20px;
}

.billboard-location {

    color: #666;

    margin-bottom: 15px;
}

.view-location-btn {

    color: #23679c;

    font-weight: 700;
}

.search .feature-sites__grid {
    margin-top: 20px;
}
