/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
  --white:       #FFFFFF;
  --steel:       #F4F5F7;
  --indigo:      #1A233E;
  --indigo-soft: #2c3655;
  --copper:      #BC7C56;
  --green:       #2D5A42;
  --wa:          #25D366;
  --text-mid:    #5a6275;
  --text-muted:  #9099b0;
  --border:      #e8eaee;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}


/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */
.kz-bc { background: var(--white); border-bottom: 1px solid var(--border); }
.kz-bc__list {
  list-style: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  max-width: 1240px; margin: 0 auto;
  padding: 0 56px !important;
  height: 40px; display: flex; align-items: center; gap: 0;
}
.kz-bc__item { display: flex; align-items: center; }
.kz-bc__item + .kz-bc__item::before {
  content: ''; display: inline-block;
  width: 4px; height: 4px;
  border-right: 1px solid var(--text-muted);
  border-top: 1px solid var(--text-muted);
  transform: rotate(45deg);
  margin: 0 10px; opacity: 0.5; flex-shrink: 0;
}
.kz-bc__item a { font-size: 11px; font-weight: 300; color: var(--text-muted); text-decoration: none; display: flex; align-items: center; transition: color 0.18s; }
.kz-bc__item a:hover { color: var(--indigo); }
.kz-bc__item[aria-current="page"] { font-size: 11px; font-weight: 400; color: var(--indigo); }
.kz-bc__item a .fa-home, .kz-bc__item a i.fa { font-size: 0; width: 13px; height: 13px; position: relative; }
.kz-bc__item a .fa-home::before, .kz-bc__item a i.fa::before {
  content: ''; display: block; width: 13px; height: 13px;
  background-color: var(--text-muted);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  transition: background-color 0.18s;
}
.kz-bc__item a:hover i.fa::before { background-color: var(--indigo); }

/* ══════════════════════════════════════
   OUTER WRAPPER
══════════════════════════════════════ */
.kz-contact { background: var(--steel); }

.kz-contact .kz-hero__text {
  margin: 0 auto;
  max-width: var(--container);
}

.kz-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.kz-contact .kz-hero {
  background: var(--indigo);
  position: relative;
  /* overflow: hidden; */
}
.kz-contact .kz-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px,
    transparent 1px, transparent 28px
  );
  pointer-events: none;
}
.kz-contact .kz-hero::after {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--copper);
}
.kz-contact .kz-hero__text {
  position: relative; z-index: 1;
  padding: 64px 56px 72px 72px;
}
.kz-contact .kz-kicker {
  display: block; font-size: 9px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--copper); margin-bottom: 16px; opacity: 0.9;
}
.kz-contact .kz-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400; color: var(--white);
  line-height: 1.0; margin-bottom: 14px;
}
.kz-contact .kz-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.42); margin-bottom: 36px;
}
.kz-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   SHARED BUTTONS  (.kz-btn)
══════════════════════════════════════ */
.kz-contact .kz-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; height: 44px; padding: 0 24px;
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: none; border-radius: 0 !important;
  transition: background 0.2s var(--ease), color 0.2s, gap 0.2s var(--ease), border-color 0.2s;
  white-space: nowrap;
  /* hide emoji kz-ico spans */
}
.kz-contact .kz-btn .kz-ico { font-size: 0; width: 0; /* overflow: hidden; */ line-height: 0; }

/* primary — indigo default, hover copper */
.kz-contact .kz-btn--primary { background: var(--indigo); color: var(--white); }
.kz-contact .kz-btn--primary:hover { background: var(--copper); }

/* ghost — context-sensitive */
.kz-contact .kz-hero__actions .kz-btn--ghost {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.22);
}
.kz-contact .kz-hero__actions .kz-btn--ghost:hover {
  background: rgba(255,255,255,0.08); color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.kz-cards .kz-btn--ghost {
  background: transparent; color: var(--indigo);
  border: 1px solid var(--border);
}
.kz-cards .kz-btn--ghost:hover { border-color: var(--indigo); background: var(--steel); }

/* soft */
.kz-contact .kz-btn--soft { background: var(--steel); color: var(--indigo); }
.kz-contact .kz-btn--soft:hover { background: var(--border); }

.kz-contact .kz-btn--block { width: 100%; }

/* WhatsApp card: first card primary button = green */
.kz-cards .kz-card:first-child .kz-btn--primary { background: var(--wa); }
.kz-cards .kz-card:first-child .kz-btn--primary:hover { background: #1fb857; }

/* ══════════════════════════════════════
   CHANNEL CARDS
══════════════════════════════════════ */
.kz-contact .kz-grid.kz-cards {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--border);
  border-bottom: 2px solid var(--copper);
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
}
.kz-contact .kz-card {
  background: var(--white);
  padding: 28px 24px 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: background 0.2s var(--ease);
}
.kz-contact .kz-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--copper);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s var(--ease);
}
.kz-contact .kz-card:hover::before { transform: scaleY(1); }
.kz-contact .kz-card:hover { background: var(--steel); }

.kz-card__head { display: flex; align-items: center; gap: 10px; }
.kz-contact .kz-card__icon {
  width: 36px; height: 36px;
  background: var(--steel);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 17px;
  transition: background 0.2s;
}
.kz-contact .kz-card:hover .kz-card__icon { background: var(--border); }
.kz-card__title { font-size: 13px; font-weight: 500; color: var(--indigo); line-height: 1.3; }
.kz-card__text  { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.7; flex: 1; }
.kz-card__hint  { font-size: 11px; font-weight: 300; color: var(--text-muted); }

/* ══════════════════════════════════════
   MAIN CONTACT  (form + info)
══════════════════════════════════════ */
.kz-main-contact {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2px; background: var(--border);
  margin-top: 2px;
}
.kz-contact .kz-panel { background: var(--white); }
.kz-panel--form { border-top: 3px solid var(--copper); }
.kz-panel--info { border-top: 3px solid var(--indigo); position: sticky; top: 24px; align-self: start; }

.kz-panel__head { padding: 28px 28px 20px; border-bottom: 1px solid var(--border); }

.kz-contact .kz-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400; color: var(--indigo); margin-bottom: 6px;
}
.kz-contact .kz-muted { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.6; }

/* ── FORM ── */
.kz-contact .kz-form { padding: 28px; }

.kz-contact .kz-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
  margin-left: 0 !important; margin-right: 0 !important;
  float: none !important;
}
.kz-contact .kz-field {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 0 !important; padding-right: 0 !important;
  float: none !important; width: 100% !important;
}
.kz-contact .kz-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--indigo);
  display: flex; align-items: center; gap: 8px;
}
.kz-contact .kz-optional {
  font-size: 9px; font-weight: 400;
  letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase;
}
.kz-contact .kz-input {
  height: 44px;
  border: 1px solid var(--border) !important;
  background: var(--steel) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 300; color: var(--indigo);
  padding: 0 14px;
  outline: none; width: 100%;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: border-color 0.2s, background 0.2s;
  appearance: none; -webkit-appearance: none;
}
.kz-contact .kz-input:focus {
  border-color: var(--copper) !important;
  background: var(--white) !important;
}
.kz-contact .kz-input::placeholder { color: var(--text-muted); }

/* select arrow */
.kz-contact .kz-select {
  padding-right: 36px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239099b0'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 8px !important;
}
.kz-contact .kz-textarea { height: auto; resize: vertical; padding: 12px 14px; line-height: 1.7; }
.kz-contact .kz-error { font-size: 11px; color: #c0392b; min-height: 14px; }
.kz-contact .kz-help  { font-size: 11px; font-weight: 300; color: var(--text-muted); line-height: 1.5; }

.kz-form__actions { display: flex; align-items: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.kz-form__actions .kz-btn--primary { height: 48px; padding: 0 32px; gap: 10px; }
.kz-form__actions .kz-btn--primary:hover { gap: 14px; }

.kz-contact .kz-note { font-size: 12px; font-weight: 300; color: var(--text-muted); }
.kz-contact .kz-link { color: var(--copper); text-decoration: none; border-bottom: 1px solid rgba(188,124,86,0.3); transition: border-color 0.2s; }
.kz-contact .kz-link:hover { border-color: var(--copper); }

.kz-contact .kz-success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px;
  background: rgba(45,90,66,0.08);
  border-left: 3px solid var(--green);
  color: var(--green); font-size: 13px; font-weight: 500;
}
.kz-contact .kz-success[hidden] { display: none; }

/* ── INFO ASIDE ── */
.kz-contact .kz-info { padding: 20px; }
.kz-contact .kz-info__row {
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.kz-contact .kz-info__row:last-of-type { border-bottom: none; }
.kz-contact .kz-info__icon { font-size: 16px; width: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.kz-contact .kz-info__label { font-size: 9px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; min-height: 14px; }
.kz-contact .kz-info__value { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.7; }

.kz-location__actions { padding: 16px 0 4px; }
.kz-location__actions .kz-btn--primary { height: 40px; font-size: 10px; letter-spacing: 2px; }

/* ══════════════════════════════════════
   LOCATION / MAP
══════════════════════════════════════ */
.kz-contact .kz-location { background: var(--indigo); margin-top: 2px; }
.kz-location__head { padding: 28px 56px 0; }
.kz-contact .kz-location .kz-h2 { color: var(--white); }
.kz-contact .kz-location .kz-muted { color: rgba(255,255,255,0.35); }

.kz-location__grid { display: grid; grid-template-columns: 1fr; }

.kz-contact .kz-h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.kz-loc-meta { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.kz-loc-meta__row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }

.kz-contact .kz-map { height: 420px; /* overflow: hidden; */ }
.kz-contact .kz-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(15%) contrast(0.95); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .kz-contact .kz-grid.kz-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .kz-bc__list { padding: 0 20px !important; }
  .kz-contact .kz-hero__text { padding: 48px 20px 56px 28px; }
  .kz-main-contact { grid-template-columns: 1fr; }
  .kz-panel--info  { position: static; order: -1; }
  .kz-contact .kz-row { grid-template-columns: 1fr !important; gap: 0; }
  .kz-location__head { padding: 24px 20px 0; }
  .kz-contact .kz-map { height: 300px; }
}

@media (max-width: 600px) {
  .kz-contact .kz-grid.kz-cards { grid-template-columns: 1fr; }
  .kz-hero__actions { flex-direction: column; }
  .kz-hero__actions .kz-btn { width: 100%; }
  .kz-form__actions { flex-direction: column; align-items: flex-start; }
  .kz-form__actions .kz-btn--primary { width: 100%; justify-content: center; }
}

/* kz-loc-card / kz-loc-body (hidden by default in original via style="display:none") */
.kz-loc-card { background: var(--indigo); padding: 32px 56px; }
.kz-loc-body { display: flex; flex-direction: column; gap: 12px; }
