/* ================= CONTACT HERO ================= */
.contact-hero{
  background: radial-gradient(circle at 20% 10%, rgba(212,175,55,.12), transparent 55%),
              radial-gradient(circle at 85% 0%, rgba(212,175,55,.08), transparent 60%),
              #0b0b0b;
  padding: 70px 0 40px;
  border-bottom: 1px solid var(--border-gold);
}

.contact-hero-inner{ max-width: 850px; }

.contact-kicker{
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 12px;
  color: #d6ce62;
}

.contact-title{
  color: var(--nav-white);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 800;
  margin: 10px 0 10px;
}

.contact-desc{
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ================= CONTACT SECTION ================= */
.contact-sec{
  background: #0b0b0b;
  padding: 28px 0 70px;
}

/* cards */
.contact-card,
.form-card,
.map-card{
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
  overflow: hidden;
}

.contact-card{ padding: 18px; }
.map-card{ padding: 14px; margin-top: 14px; }

.contact-card-title,
.map-title{
  font-weight: 800;
  color: var(--nav-white);
  margin-bottom: 12px;
  letter-spacing: .3px;
}

/* contact items */
.contact-item{
  display: flex;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.contact-item:hover{
  transform: translateY(-2px);
  border-color: rgba(212,175,55,.45);
  background: rgba(212,175,55,.04);
}

.c-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,.10);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  flex: 0 0 auto;
}

.c-label{
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}
.c-val{
  display: block;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  line-height: 1.3;
}

/* map */
.map-embed{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.18);
}

/* form card */
.form-card{ padding: 18px; }
.form-head{
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,.12);
  margin-bottom: 14px;
}
.form-title{
  font-weight: 900;
  color: var(--nav-white);
  font-size: 20px;
}
.form-sub{
  color: rgba(255,255,255,.55);
  font-size: 13px;
  margin-top: 4px;
}

/* inputs */
.contact-label{
  color: rgba(240, 238, 238, 0.7);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
}

.contact-input{
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(212,175,55,.18) !important;
  color: var(--nav-white) !important;
  border-radius: 12px !important;
  padding: 12px 14px;
}

.contact-input:focus{
  box-shadow: 0 0 0 3px rgba(212,175,55,.18) !important;
  border-color: rgba(212,175,55,.45) !important;
}

/* button */
.contact-btn{
  background: linear-gradient(180deg, var(--gold), var(--gold-black));
  border: 1px solid rgba(212,175,55,.55);
  color: var(--black);
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 12px;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.contact-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 18px 38px rgba(212,175,55,.16);
}

/* ================= Responsive ================= */
@media (max-width: 991.98px){
  .contact-hero{ padding: 56px 0 32px; }
  .contact-sec{ padding: 22px 0 60px; }
}
@media (max-width: 575.98px){
  .contact-card{ padding: 14px; }
  .form-card{ padding: 14px; }
}
