/* =========================================
   Contact — assets/css/pages/contact.css
   Prefix: top-
========================================= */

.top-contactHero{
  position: relative;
  padding: clamp(34px, 5vw, 72px) 0;
  background: #0f0f10;
  color: #fff;
  overflow: hidden;
}

/* bg image via CSS var */
.top-contactHero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 12% 18%, rgba(209,18,31,.22), transparent 58%),
    linear-gradient(180deg, rgba(0,0,0,.70), rgba(0,0,0,.55)),
    var(--top-hero-img);
  background-size: cover;
  background-position: center;
  filter: saturate(1.02) contrast(1.03);
  transform: scale(1.02);
}

.top-contactHero .top-container{
  position: relative;
  z-index: 2;
}

.top-contactHero__inner{
  width: min(var(--wrap, 1280px), 100%);
  margin: 0 auto;
  padding: 0 var(--pad, 24px);
  max-width: 980px;
}

.top-contactHero__eyebrow{
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.30);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
.top-contactHero__eyebrow i{ color: var(--top-accent, #d1121f); }

.top-contactHero__title{
  margin: 0 0 12px;
  font-size: clamp(30px, 3.2vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.top-contactHero__desc{
  color: rgba(255,255,255,.86);
  line-height: 1.7;
  font-size: 15px;
  max-width: 70ch;
}
.top-contactHero__desc p{ margin: 0 0 10px; }

.top-contactHero__actions{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Layout ===== */
.top-contact{
  background: #f6f6f7;
  padding: clamp(26px, 3.6vw, 44px) 0 clamp(56px, 7vw, 110px);
}

.top-contact__grid{
  width: min(var(--wrap, 1280px), 100%);
  margin: 0 auto;
  padding: 0 var(--pad, 24px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(16px, 2.6vw, 28px);
  align-items: start;
}

@media (max-width: 980px){
  .top-contact__grid{ grid-template-columns: 1fr; }
}

/* Surfaces */
.top-surface{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

/* Map */
.top-contact__map{ overflow: hidden; }
.top-contact__mapFrame{
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #eee;
}
.top-contact__mapFrame iframe{
  width: 100%;
  height: 100%;
  display: block;
}

/* Right side */
.top-contact__right{
  display: grid;
  gap: 14px;
}

/* Info grid */
.top-contact__infoGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 720px){
  .top-contact__infoGrid{ grid-template-columns: 1fr; }
}

.top-contactCard{
  padding: 14px 14px 12px;
}
.top-contactCard__k{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .02em;
  color: rgba(0,0,0,.70);
}
.top-contactCard__k i{ color: var(--top-accent, #d1121f); }
.top-contactCard__v{
  font-weight: 650;
  color: rgba(0,0,0,.88);
  line-height: 1.55;
  word-break: break-word;
}
.top-contactCard__link{
  color: rgba(0,0,0,.88);
  text-decoration: none;
}
.top-contactCard__link:hover{
  color: var(--top-accent, #d1121f);
  text-decoration: none;
}

/* Form */
.top-contact__form{
  padding: clamp(14px, 2vw, 18px);
}
.top-contact__formHead{
  padding: 4px 2px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin-bottom: 12px;
}
.top-contact__formTitle{
  margin: 0 0 6px;
  font-size: 18px;
}
.top-contact__formDesc{
  margin: 0;
  color: rgba(0,0,0,.70);
  font-size: 13px;
  line-height: 1.6;
}

/* Fluent Forms basic spacing fix */
.top-contact__formBody .ff-el-group{ margin-bottom: 12px; }
.top-contact__formBody .ff-btn{
  border-radius: 14px;
}
