:root {
  --gold-50: #FEFAEC;
  --gold-100: #FCF0C8;
  --gold-200: #F9E29C;
  --gold-300: #F8D468;
  --gold-400: #F6C23A;
  --gold-500: #E0A81D;
  --gold-600: #B98712;
  --gold-700: #8A5A0A;
  --gold-800: #5E3D07;
  --gold-900: #3A2504;
  --ink: #1F1A12;
  --ink-2: #2A2018;
  --ink-3: #352B1C;
  --slate: #5C4F3A;
  --muted: #7A6B52;
  --line: #E8DEC8;
  --paper: #FCF9F2;
  --surface: #FFFFFF;
  --warm-2: #F7F1E3;
  --warm-3: #EFE6D0;
  --ok: #0F8A5F;
  --ok-bg: #EAF7F1;
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 64px;
  --s9: 96px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;
  --shadow-card: 0 2px 8px rgba(31, 26, 18, .08), 0 8px 32px rgba(31, 26, 18, .07);
  --shadow-hover: 0 8px 32px rgba(31, 26, 18, .14), 0 24px 64px rgba(31, 26, 18, .10);
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 500
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: var(--r-sm);
  padding: 13px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s
}

.btn-gold {
  background: var(--gold-700);
  color: #fff
}

.btn-gold:hover {
  background: var(--gold-800);
	color: #fff;
  box-shadow: 0 4px 20px rgba(138, 90, 10, .3)
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(246, 194, 58, .4)
}

.btn-outline:hover {
  background: rgba(246, 194, 58, .1);
	color: #fff;
  border-color: var(--gold-400)
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.ph-bg {
  position: absolute;
  inset: 0
}

.ph-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #060810 0%, #0a1220 35%, #0e1830 55%, #0a1018 80%)
}

.ph-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 68% 35%, rgba(246, 194, 58, .16), transparent 52%)
}

.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 6, 12, .92) 0%, rgba(4, 6, 12, .55) 55%, rgba(4, 6, 12, .18) 100%)
}

/* decorative building pattern right side */
.ph-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 52%;
  overflow: hidden;
  opacity: .42
}

.ph-wm {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: 'Playfair Display';
  font-style: italic;
  font-size: 200px;
  font-weight: 700;
  color: rgba(246, 194, 58, .028);
  line-height: 1;
  pointer-events: none
}

.ph-inner {
  position: relative;
  z-index: 2;
  padding: var(--s8) 0 var(--s9)
}

.bc {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--s5)
}

.bc a,
.bc span {
  font-family: 'JetBrains Mono';
  font-size: 11.5px;
  letter-spacing: .06em;
  text-decoration: none;
  color: rgba(255, 255, 255, .32);
  transition: .15s
}

.bc a:hover {
  color: rgba(246, 194, 58, .7)
}

.bc .sep {
  color: rgba(255, 255, 255, .15)
}

.bc .cur {
  color: rgba(246, 194, 58, .7)
}

.ph-inner h1 {
  font-family: 'Playfair Display';
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 600px;
  margin-bottom: var(--s4)
}

.ph-inner h1 em {
  font-style: italic;
  color: var(--gold-400)
}

.ph-inner .sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  max-width: 480px;
  line-height: 1.75
}

/* quick contact pills */
.ph-pills {
  display: flex;
  gap: var(--s3);
  margin-top: var(--s6);
  flex-wrap: wrap
}

.ph-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(246, 194, 58, .1);
  border: 1px solid rgba(246, 194, 58, .25);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  cursor: pointer;
  transition: .2s;
  text-decoration: none
}

.ph-pill:hover {
  background: rgba(246, 194, 58, .18);
  border-color: rgba(246, 194, 58, .5)
}

.ph-pill svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none
}

.ph-pill .pp-label {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .06em;
  margin-bottom: 1px;
  display: block
}

.ph-pill .pp-val {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: block
}

/* ===== MAIN CONTACT LAYOUT ===== */
.contact-wrap {
  padding: var(--s8) 0 var(--s9);
  background: var(--paper)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: var(--s8);
  align-items: start
}

/* ===== LEFT: INFO + MAP ===== */
.left-col {
  display: flex;
  flex-direction: column;
  gap: var(--s6)
}
.map-card p {
    margin-bottom: 0;
}
/* Contact info card */
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card)
}

.info-card-head {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 60%, #3a2a0e 100%);
  padding: var(--s5) var(--s6);
  position: relative;
  overflow: hidden
}

.info-card-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 10%, rgba(246, 194, 58, .22), transparent 55%)
}

.info-card-head h3 {
  font-family: 'Playfair Display';
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1
}

.info-card-head p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  position: relative;
  z-index: 1;
  margin-top: 3px
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: .15s
}

.info-item:last-child {
  border-bottom: none
}

.info-item:hover {
  background: var(--warm-2)
}

.ii-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  flex: none
}

.ii-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ii-icon.gold {
  background: var(--gold-50);
  border: 1px solid var(--gold-200)
}

.ii-icon.gold svg {
  stroke: var(--gold-700)
}

.ii-icon.green {
  background: var(--ok-bg);
}

.ii-icon.green svg {
  stroke: var(--ok)
}

.ii-icon.blue {
  background: rgba(10, 80, 180, .08);
}

.ii-icon.blue svg {
  stroke: #0a50b4
}

.ii-icon.purple {
  background: rgba(100, 30, 180, .08);
}

.ii-icon.purple svg {
  stroke: #5a1eb0
}

.ii-label {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 3px
}

.ii-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px
}

.ii-sub {
  font-size: 12.5px;
  color: var(--muted)
}

/* Business hours */
.hours-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--s5) var(--s6);
  box-shadow: var(--shadow-card)
}

.hours-title {
  font-family: 'Playfair Display';
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  gap: 10px
}

.hours-title svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-700);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--s2)
}

.h-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--line)
}

.h-row:last-child {
  border-bottom: none
}

.h-day {
  font-size: 13.5px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 8px
}

.h-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none
}

.h-dot.open {
  background: var(--ok)
}

.h-dot.closed {
  background: var(--muted)
}

.h-time {
  font-family: 'JetBrains Mono';
  font-size: 13px;
  color: var(--ink);
  font-weight: 500
}

.h-time.closed {
  color: var(--muted)
}

/* current time badge */
.now-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ok-bg);
  border: 1px solid rgba(15, 138, 95, .25);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  margin-top: var(--s3)
}

.now-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  flex: none
}

.now-badge span {
  font-family: 'JetBrains Mono';
  font-size: 11.5px;
  color: var(--ok);
  font-weight: 500
}

/* Social + Channel */
.social-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--s5) var(--s6);
  box-shadow: var(--shadow-card)
}

.social-title {
  font-family: 'Playfair Display';
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s4)
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3)
}

.social-item {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s3) var(--s4);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: .2s;
  text-decoration: none
}

.social-item:hover {
  border-color: var(--gold-300);
  background: var(--gold-50);
  transform: translateX(4px)
}

.si-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  flex: none
}

.si-icon.fb {
  background: #1877F2
}

.si-icon.zalo {
  background: #0068FF
}

.si-icon.yt {
  background: #FF0000
}

.si-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff
}

.si-info .si-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink)
}

.si-info .si-handle {
  font-family: 'JetBrains Mono';
  font-size: 11.5px;
  color: var(--muted)
}

.si-action {
  margin-left: auto;
  font-size: 12px;
  color: var(--gold-700);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px
}

.si-action svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* Map */
.map-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
  border: 1px solid var(--line)
}

.map-scene {
  height: 280px;
  position: relative;
  background: linear-gradient(175deg, #0a1020 0%, #0e1828 40%, #0c1420 100%)
}

/* CSS map with roads and blocks */
.map-road-h {
  position: absolute;
  height: 14px;
  background: rgba(40, 32, 16, .6);
  left: 0;
  right: 0
}

.map-road-v {
  position: absolute;
  width: 14px;
  background: rgba(40, 32, 16, .6);
  top: 0;
  bottom: 0
}

.map-block {
  position: absolute;
  border-radius: 3px;
  background: rgba(15, 20, 30, .5)
}

/* project marker pin */
.map-pin-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2
}

.map-pin-pulse {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(246, 194, 58, .15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .6
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: .15
  }
}

.map-pin-svg {
  position: relative;
  z-index: 1
}

.map-info-popup {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-20px) translateY(-100%);
  background: rgba(31, 26, 18, .92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(246, 194, 58, .3);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  z-index: 3
}

.map-info-popup .mp-name {
  font-family: 'Playfair Display';
  font-size: 13px;
  font-weight: 700;
  color: #fff
}

.map-info-popup .mp-addr {
  font-family: 'JetBrains Mono';
  font-size: 10px;
  color: rgba(246, 194, 58, .7);
  margin-top: 2px
}

/* distance pills */
.map-distances {
  position: absolute;
  bottom: var(--s4);
  left: var(--s4);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2
}

.dist {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(31, 26, 18, .8);
  backdrop-filter: blur(6px);
  border-radius: var(--r-sm);
  padding: 5px 10px;
  border: 1px solid rgba(246, 194, 58, .15)
}

.dist svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex: none
}

.dist span {
  font-family: 'JetBrains Mono';
  font-size: 10.5px;
  color: rgba(255, 255, 255, .75)
}

.map-zoom {
  position: absolute;
  bottom: var(--s4);
  right: var(--s4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2
}

.mz-btn {
  width: 32px;
  height: 32px;
  background: rgba(31, 26, 18, .8);
  border: 1px solid rgba(246, 194, 58, .2);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  color: rgba(255, 255, 255, .7)
}

.map-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s3) var(--s5);
  background: linear-gradient(0deg, rgba(10, 8, 4, .85), transparent);
  font-family: 'JetBrains Mono';
  font-size: 11px;
  color: rgba(246, 194, 58, .7);
  letter-spacing: .08em;
  text-transform: uppercase
}

/* ===== RIGHT: FORM ===== */
.form-col {
  display: flex;
  flex-direction: column;
  gap: var(--s5)
}
.pkg-combobox-list {
  display: none;
  max-height: 260px;
  overflow-y: auto;
}
.pkg-combobox-list.open {
  display: block;
}
button#pkg-submit-btn {
    margin-top: 1rem;
}
/* Main form card */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card)
}

.form-head {
  padding: var(--s6) var(--s7);
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 60%, #3a2a0e 100%);
  position: relative;
  overflow: hidden
}

.form-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 88% 15%, rgba(246, 194, 58, .22), transparent 55%)
}

.form-head .title-form-contact {
  font-family: 'Playfair Display';
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 5px
}

.form-head p {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  position: relative;
  z-index: 1
}

.form-head .fh-badges {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s4);
  position: relative;
  z-index: 1;
  flex-wrap: wrap
}

.fh-badge {
  background: rgba(246, 194, 58, .12);
  border: 1px solid rgba(246, 194, 58, .25);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-family: 'JetBrains Mono';
  font-size: 10.5px;
  color: var(--gold-300)
}

.form-body {
  padding: var(--s6) var(--s7)
}

/* form grid */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4)
}

.form-row.full {
  grid-template-columns: 1fr
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--s4)
}

.field:last-child {
  margin-bottom: 0
}

.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 4px
}

.req {
  color: var(--gold-600);
  font-size: 12px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: 'Inter';
  font-size: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--warm-2);
  color: var(--ink);
  transition: .15s;
  outline: none
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-400);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(246, 194, 58, .18)
}

.field input::placeholder,
.field textarea::placeholder {
  color: #B0A284
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%237A6B52' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px
}

.field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6
}

/* topic chips */
.topic-chips {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  margin-bottom: var(--s4)
}

.tc {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--warm-2);
  border: 1.5px solid var(--line);
  color: var(--slate);
  cursor: pointer;
  transition: .15s
}

.tc.active {
  background: var(--gold-100);
  border-color: var(--gold-400);
  color: var(--gold-800)
}

.tc:hover:not(.active) {
  border-color: var(--gold-300);
  color: var(--gold-700)
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px
}

.field-label-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate)
}

.field-label-row span {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  color: var(--muted)
}

/* submit button */
.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--r-md);
  background: var(--gold-700);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: .2s;
  font-family: 'Inter';
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.submit-btn:hover {
  background: var(--gold-800);
  box-shadow: 0 6px 24px rgba(138, 90, 10, .35)
}

.submit-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s3)
}

.form-note svg {
  width: 14px;
  height: 14px;
  stroke: var(--ok);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex: none
}

.form-note span {
  font-size: 12.5px;
  color: var(--muted)
}

/* Quick response cards */
.quick-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3)
}

.qc {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s4);
  cursor: pointer;
  transition: .2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--s2)
}

.qc:hover {
  border-color: var(--gold-400);
  background: var(--gold-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card)
}

.qc .qc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center
}

.qc .qc-icon svg {
  width: 20px;
  height: 20px
}

.qc .qc-label {
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono';
  letter-spacing: .06em;
  text-transform: uppercase
}

.qc .qc-val {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink)
}

.qc.call .qc-icon {
  background: var(--ok-bg)
}

.qc.call .qc-icon svg {
  stroke: var(--ok);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.qc.zalo .qc-icon {
  background: rgba(0, 104, 255, .1)
}

.qc.zalo .qc-icon svg {
  fill: #0068FF
}

.qc.email .qc-icon {
  background: var(--gold-50)
}

.qc.email .qc-icon svg {
  stroke: var(--gold-700);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.qc.fb .qc-icon {
  background: rgba(24, 119, 242, .1)
}

.qc.fb .qc-icon svg {
  fill: #1877F2
}

/* Success state preview */
.success-preview {
  background: var(--ok-bg);
  border: 1.5px solid rgba(15, 138, 95, .25);
  border-radius: var(--r-xl);
  padding: var(--s5) var(--s6);
  display: flex;
  align-items: flex-start;
  gap: var(--s4)
}

.sp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ok);
  display: grid;
  place-items: center;
  flex: none
}

.sp-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sp-body h4 {
  font-family: 'Playfair Display';
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px
}

.sp-body p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.6
}

.sp-body .sp-time {
  font-family: 'JetBrains Mono';
  font-size: 11.5px;
  color: var(--ok);
  margin-top: var(--s2);
  display: flex;
  align-items: center;
  gap: 5px
}

.sp-body .sp-time svg {
  width: 12px;
  height: 12px;
  stroke: var(--ok);
  fill: none;
  stroke-width: 2
}

/* ===== BRANCH OFFICES ===== */
.branches {
  background: var(--warm-2);
  padding: var(--s8) 0
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-top: var(--s6)
}

.branch-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: .3s
}

.branch-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px)
}

.branch-card:hover .bc-img-inner {
  transform: scale(1.04)
}

.bc-img {
  height: 140px;
  overflow: hidden;
  position: relative
}

.bc-img-inner {
  width: 100%;
  height: 100%;
  transition: transform .5s
}

.bc-label {
  position: absolute;
  bottom: var(--s3);
  left: var(--s3)
}

.bc-label .bl-type {
  font-family: 'JetBrains Mono';
  font-size: 10px;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: .1em
}

.bc-body {
  padding: var(--s4) var(--s5)
}

.bc-city {
  font-family: 'Playfair Display';
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s3)
}

.bc-info {
  display: flex;
  flex-direction: column;
  gap: var(--s2)
}

.bc-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--slate)
}

.bc-row svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
  margin-top: 2px
}
.bc-img-inner {
  position: relative;
  overflow: hidden;
}
.bc-img-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===== FAQ ===== */
.faq {
  background: var(--paper);
  padding: var(--s8) 0
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
	 align-items:start;
  margin-top: var(--s6)
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: .2s
}

.faq-item:hover {
  border-color: var(--gold-300);
  background: var(--gold-50)
}

.faq-q {
  font-family: 'Playfair Display';
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: var(--s5);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s3)
}

.faq-q svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex: none;
  margin-top: 2px
}

.faq-a {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.7
}
.faq-q{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    transition:transform .3s ease;
    flex-shrink:0;
}

.faq-a{
    display:none;
}

.faq-item.is-open .faq-a{
    display:block;
	padding: 0px 24px 24px 24px;
}

.faq-item.is-open .faq-icon{
    transform:rotate(180deg);
}
.faq-item.is-open .faq-icon{
    transform:rotate(90deg);
}
/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 45%, #3a2a0e 100%);
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(246, 194, 58, .18), transparent 55%)
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
  position: relative;
  z-index: 1;
  padding: var(--s8) var(--s5)
}

.cta-inner .title-cta-contact-bottom {
  font-family: 'Playfair Display';
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  max-width: 480px
}

.cta-inner .title-cta-contact-bottom em {
  color: var(--gold-400);
  font-style: italic
}

.cta-actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  flex: none
}

/* scene helpers */
.scene {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden
}

.gold-win {
  background: rgba(246, 194, 58, .65);
  border-radius: 1px
}

.dim-win {
  background: rgba(246, 194, 58, .24);
  border-radius: 1px
}

.off-win {
  background: rgba(10, 14, 24, .7);
  border-radius: 1px
}

.pkg-combobox {
  position: relative;
}

.pkg-combobox input[type="text"] {
  width: 100%;
}

.pkg-combobox-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: var(--r-sm, 8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  z-index: 40;
}

.pkg-combobox-list.open {
  display: block;
}

.pkg-combobox-item {
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pkg-combobox-item:hover,
.pkg-combobox-item.active {
  background: rgba(246, 194, 58, .12);
}

.pkg-combobox-item.empty {
  color: var(--muted, #888);
  cursor: default;
}

.pkg-combobox-item.empty:hover {
  background: none;
}

@media(max-width:960px) {
  .contact-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .branches-grid {
    grid-template-columns: 1fr 1fr
  }

  .faq-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start
  }
}
@media(max-width:768px) {
	.page-hero {
		padding-left: 15px;
		padding-right: 15px;
	}
	.si-action {
		display: none;
	}
	.social-card {
		width: 100%;
		margin-right: -35px;
	}
	.now-badge span {
		font-size: 11px;
	}
	.ph-pill {
		width: 100%;
	}
	.btn {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	.cta-inner .title-cta-contact-bottom {
		max-width: 100%;
	}
	.cta-inner {
		text-align: center;
		align-items: center !important;
	}
	
}
@media(max-width:640px) {
  .quick-cards {
    grid-template-columns: 1fr 1fr
  }

  .branches-grid {
    grid-template-columns: 1fr
  }

  .nav-links,
  .nav-cta .btn-gold {
    display: none
  }

  .form-body {
    padding: var(--s5) var(--s5)
  }

  .form-head {
    padding: var(--s5) var(--s5)
  }
}

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