:root {
  --bg: #f6f8fc;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --brand: #0b3a6f;
  --accent: #f6b01e;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --radius: 16px;
  --radius-mobile: 6px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.desktop-only {
  display: none;
}
.mobile-only {
  display: flex;
}

@media (min-width: 980px) {
  .desktop-only {
    display: block;
  }
  .mobile-only {
    display: none;
  }
}

.site-main {
  padding-top: 0px;
}
@media (min-width: 980px) {
  .site-main {
    padding-top: 0;
  }
}

/* Header */
.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}
.topbar {
  background: #edf3ff;
  border-bottom: 1px solid var(--border);
}
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.chip.link:hover {
  border-color: rgba(11, 58, 111, 0.25);
}

.header-main {
  height: 72px;
  display: flex;
  align-items: center;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #0b3a6f10;
}
.brand-name {
  font-weight: 800;
  color: var(--brand);
  font-size: 20px;
  letter-spacing: 0.2px;
}
.brand-tagline {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.icon-btn:hover {
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.08);
}

.nav-under {
  background: linear-gradient(90deg, #0b3a6f, #0b3a6fdd);
  color: #fff;
}
.nav-row {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  flex-wrap: wrap;
}
.nav-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 600;
  font-size: 14px;
}
.nav-pill:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  border-color: transparent;
  color: #1f2937;
}
.btn-primary:hover {
  filter: brightness(0.97);
}
.btn-ghost {
  background: #fff;
}
.btn-ghost:hover {
  filter: brightness(0.97);
}
.btn-wa {
  background: #1f8f4b;
  color: #fff;
  border-color: transparent;
  padding: 6px 14px;
  border-radius: 12px;
}
.btn-wa:hover {
  filter: brightness(0.96);
}

/* Hero */
.hero {
  background: radial-gradient(1200px 500px at 20% 0%, #0b3a6f22, transparent), radial-gradient(900px 480px at 80% 10%, #f6b01e1c, transparent);
  padding: 28px 0 18px;
}
.hero-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }
}
.hero h1 {
  font-size: 34px;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}
.hero-cta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.trustbar {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
}
.hero-art {
  display: grid;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
  min-height: 140px;
}

/* Sections */
.section {
  padding: 26px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.section-head h2 {
  margin: 0;
  font-size: 22px;
}
.muted {
  color: var(--muted);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
/* @media (min-width: 980px) {
  .cards-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 979px) {
  .cards-5 {
    grid-template-columns: repeat(2, 1fr);
  }
} */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.05);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.1);
  border-color: rgba(11, 58, 111, 0.25);
}

    
@media (max-width: 460px) {
  .cards{
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 420px) {
  .cards{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 260px;
  }
}



.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
@media (max-width: 580px) {
  .card {
    font-size: 13px;
    border-radius: var(--radius-mobile);
  }
  .card-img {
    height: 120px;
  }
  .card-body {
    .card-sub {
      display: none;
    }
  }
}
.card-body {
  padding: 12px;
}
.card-title {
  font-weight: 800;
}
.card-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.card-empty {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 170px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0b3a6f0f;
  color: var(--brand);
  border: 1px solid rgba(11, 58, 111, 0.18);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
}

/* Forms */
.form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.form-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 980px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .field-full {
    grid-column: 1 / -1;
  }
}
.field label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  outline: none;
  font-size: 14px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(11, 58, 111, 0.35);
  box-shadow: 0 0 0 4px rgba(11, 58, 111, 0.1);
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.alert {
  padding: 12px 14px;
  border-radius: 14px;
  margin: 0 0 14px;
  border: 1px solid var(--border);
  background: #fff;
}
.alert-ok {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.08);
}
.alert-bad {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 60;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 90vw;
  max-width: 420px;
  background: linear-gradient(180deg, #0b3a6f, #0b3a6fe6);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 70;
  padding: 14px;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px 14px;
}
.drawer-title {
  font-weight: 900;
  letter-spacing: 0.8px;
}
.drawer-section {
  padding: 12px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.drawer-section-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  font-weight: 800;
}
.drawer-link {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 700;
}
.drawer-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.drawer-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}
.drawer-open .drawer {
  transform: translateX(0);
}

/* Service page */
.breadcrumb {
  color: var(--muted);
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.service-hero {
  display: grid;
  gap: 14px;
  align-items: center;
}
@media (min-width: 980px) {
  .service-hero {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.service-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 320px;
}
.grid-2 {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
@media (min-width: 980px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.05);
}
.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 900;
}
.faq-body {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

/* Footer */
.footer {
  background: #0b3a6f;
  color: #fff;
  margin-top: 26px;
}
.footer-grid {
  display: grid;
  gap: 18px;
  padding: 22px 0;
}
@media (min-width: 980px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
.footer-brand {
  font-weight: 900;
  font-size: 18px;
}
.footer-title {
  font-weight: 900;
  margin-bottom: 10px;
}
.footer-link {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.85);
}
.footer-link:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Pitch Rotator (Variant A: Ticker Glass) ===== */
.pitch-rotator {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
  backdrop-filter: blur(10px);
  padding: 6px;
  margin-top: 12px;
}

.pitch-rotator-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.pitch-rotator-title {
  font-weight: 900;
  letter-spacing: -0.2px;
  color: var(--text);
}

.pitch-rotator-hint {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.pitch-rotator-viewport {
  position: relative;
  min-height: 140px;
}

.pitch-rotator-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background:
    radial-gradient(700px 220px at 10% 10%, rgba(11, 58, 111, 0.1), transparent 60%), radial-gradient(600px 220px at 90% 0%, rgba(246, 176, 30, 0.12), transparent 60%), rgba(255, 255, 255, 0.95);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  height: 140px;
}

.pitch-rotator-card:hover {
  /* transform: translateY(-1px); */
  /* box-shadow: 0 5px 15px rgba(2,6,23,.10); */
  /* border-color: rgba(11,58,111,.25); */
}

.pr-media {
  width: 110px;
  min-width: 110px;
  height: 96px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.08);
}

.pr-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pr-title {
  font-weight: 700;
  color: var(--brand);
}
.pr-text {
  color: rgba(15, 23, 42, 0.82);
  font-weight: 400;
  line-height: 1.35;
  font-size: 14px;

  /* 3 sətirdən sonra kəs */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pr-cta {
  /* margin-top: auto; */
  font-weight: 600;
  color: rgba(11, 58, 111, 0.92);
  font-size: 13px;
}
.pr-cta:hover {
  color: rgba(240, 83, 48, 0.92);
}

/* Dots */
.pitch-rotator-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pr-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.22);
  background: rgba(15, 23, 42, 0.08);
  cursor: pointer;
}
.pr-dot.is-active {
  background: var(--accent);
  border-color: rgba(246, 176, 30, 0.65);
}

/* Animation states */
.pr-anim-enter {
  animation: prEnter 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.pr-anim-exit {
  animation: prExit 0.35s ease;
}

@keyframes prEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes prExit {
  from {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateY(-6px);
    filter: blur(6px);
  }
}

@media (max-width: 520px) {
  .pitch-rotator-card {
    flex-direction: column;
  }
  .pr-media {
    width: 100%;
    min-width: 100%;
    border: none;
  }
  .pitch-rotator {
    margin-inline: -16px;
  }
  .pitch-rotator-dots {
    justify-content: center;
  }
}

/* ===== Pitch Banner (Service Pages) ===== */
.pitch-banner {
  position: relative;
  padding: 18px 0 18px;
  background: var(--bg);
}

/* Background image layer */
/* .pitch-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pitch-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
  /* transform: scale(1.02); */
  opacity: 0.3; /* şəkil çox qabarıq olmasın */
} */

/* Dark overlay layer => text 100% readable */
.pitch-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(11, 58, 111, 0.55), rgba(11, 58, 111, 0.1) 60%, rgba(2, 6, 23, 0.5) 100%), linear-gradient(180deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.35));
  pointer-events: none;
}

.pitch-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  align-items: stretch;
}

@media (min-width: 980px) {
  .pitch-inner {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 18px;
  }
}

/* Main readable content panel */
.pitch-content {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 16px 16px;
  box-shadow: 0 6px 10px rgba(2, 6, 23, 0.08);
  /* backdrop-filter: blur(8px); */

  .screen{
    margin-block: 12px;
  }
}

@media (min-width: 980px) {
  .pitch-content {
    padding: 18px 18px;
  }
}

.pitch-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: rgba(11, 58, 111, 0.92);
  background: rgba(11, 58, 111, 0.08);
  border: 1px solid rgba(11, 58, 111, 0.16);
  padding: 8px 10px;
  border-radius: 999px;
}

.pitch-title {
  margin: 12px 0 10px;
  font-size: 24px;
  letter-spacing: -0.4px;
  color: var(--text);
}

@media (min-width: 980px) {
  .pitch-title {
    font-size: 28px;
  }
}

.pitch-text {
  margin: 0;
  color: rgba(15, 23, 42, 0.86);
  /* font-weight: 700; */
  line-height: 1.55;
  font-size: 15px;
}

.pitch-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pitch-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pitch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.78);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.1);
  cursor: no-drop;
}

/* Right side contact card on desktop */
/* .pitch-media {
  display: none;
}
@media (min-width: 980px) {
  .pitch-media {
    display: grid;
    align-items: stretch;
  }
} */

.pitch-media {
  display: grid;
  align-items: stretch;
}
 
.pitch-media-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 6px 10px rgba(2, 6, 23, 0.06);
  /* backdrop-filter: blur(10px); */
}
.pitch-media-title {
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
  font-size: 16px;
}
.pitch-media-line {
  color: rgba(15, 23, 42, 0.8);
  font-weight: 800;
  margin-top: 8px;
}

/* Optional: per-service accent tint (very subtle) */
.pitch--soyuducu-temiri .pitch-kicker {
  background: rgba(2, 132, 199, 0.1);
  border-color: rgba(2, 132, 199, 0.22);
  color: rgba(2, 132, 199, 0.95);
}
.pitch--kombi-temiri .pitch-kicker {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.28);
  color: rgba(161, 98, 7, 0.95);
}
.pitch--paltaryuyan-temiri .pitch-kicker {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.22);
  color: rgba(37, 99, 235, 0.95);
}
.pitch--kondisoner-temiri .pitch-kicker {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.24);
  color: rgba(5, 150, 105, 0.95);
}
.pitch--televizor-temiri .pitch-kicker {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.24);
  color: rgba(126, 34, 206, 0.95);
}



.mt-14{
  margin-top:14px
}
.hero-art-title{
  text-align: center;
  font-weight: 600;
  padding: 12px;
}




.filial-list, .filial {
    display: flex;
    flex-direction: column;
}
.filial {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin:2px;

    .map {
      height: 48px;
      border: none;
      background: transparent;
      img{
        width: 48px;
      }
    }
    .text {
      flex: 1;
      color: rgba(15, 23, 42, 0.82);
    }
}





/* ===== Map Icon ===== */
.map-trigger{
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
  border-radius: 18px;
}
.map-trigger img{
  display:block;
  width:48px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 3px 6px rgba(2,6,23,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.map-trigger:hover img{
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(2,6,23,.16);
}

/* ===== Map Modal ===== */
.map-overlay{
  position:fixed;
  inset:0;
  background: rgba(2,6,23,.60);
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
  z-index: 80;
}

.map-modal{
  position:fixed;
  left:50%;
  top:50%;
  transform: translate(-50%, -46%) scale(.98);
  width: min(980px, calc(100% - 24px));
  height: min(70vh, 560px);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(2,6,23,.28);
  backdrop-filter: blur(10px);
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 90;
  overflow:hidden;
}

.map-modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(15,23,42,.10);
}

.map-modal-title{
  font-weight: 900;
  color: var(--text);
}

.map-modal-body{
  height: calc(100% - 56px);
}

.map-modal iframe{
  width:100%;
  height:100%;
  border:0;
}

/* open state */
.map-open .map-overlay{
  opacity:1;
  pointer-events:auto;
}

.map-open .map-modal{
  opacity:1;
  pointer-events:auto;
  transform: translate(-50%, -50%) scale(1);
}



.map-modal iframe{
  width:100%;
  height:100%;
  border:0;
}


.sales-meta{ margin-top: 12px; }
.sales-panel{ margin-top: 14px; }
.sales-desc{ font-weight: 700; line-height: 1.7; }
.home-sales-more{ margin-top: 12px; }