/* ======================= contact.css (FULL FILE) ======================= */

/* Active nav highlight */
.nav-link.is-active{
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
}

/* ===== HERO (half height image banner) ===== */
.hero--contact{ min-height:48vh; height:48vh; }
@media (min-width:1024px){
  .hero--contact{min-height:52vh;height:52vh;}
}
@media (max-width:980px){
  .hero--contact{min-height:42vh;height:42vh;}
}
@media (max-width:560px){
  .hero--contact{min-height:40vh;height:40vh;}
}

.hero-media--contact{
  position:absolute;
  inset:0;
  z-index:0;
  /* Replace image */
  background:url("../img/contact-hero.jpg") center/cover no-repeat;
  filter:saturate(1.05) contrast(1.05);
}

.hero--contact .hero-overlay{
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.76) 0%,
    rgba(0,0,0,.48) 55%,
    rgba(0,0,0,.18) 100%
  );
}

.hero-content--contact{
  padding-top:90px;
  padding-bottom:34px;
  max-width:760px;
}
@media (max-width:980px){ .hero-content--contact{ padding-top:74px; } }
@media (max-width:560px){ .hero-content--contact{ padding-top:66px; padding-bottom:26px; } }

/* ===== PAGE ===== */
.contact-page{
  background:#ffece4;
}

/* Alert */
.form-alert{
  border-radius:18px;
  padding:12px 14px;
  font-weight:800;
  margin-bottom:14px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.92);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.form-alert.success{
  border-color:rgba(16,119,42,.35);
  background:rgba(16,119,42,.10);
}
.form-alert.error{
  border-color:rgba(231,29,54,.35);
  background:rgba(231,29,54,.10);
}

/* Layout grid */
.contact-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:22px;
  align-items:start;
}

/* Cards */
.contact-card,
.form-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:26px;
  padding:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Info list */
.info-list{
  margin-top:10px;
  display:grid;
  gap:12px;
}
.info-item{
  border-radius:18px;
  padding:12px 12px;
  background:rgba(231,29,54,.06);
  border:1px solid rgba(231,29,54,.12);
}
.info-label{
  font-weight:900;
  color:rgba(20,20,20,.86);
  margin-bottom:4px;
}
.info-value{
  color:rgba(20,20,20,.78);
  font-weight:700;
}
.info-link{
  color:rgba(20,20,20,.88);
  font-weight:900;
  text-decoration:none;
  border-bottom:2px solid rgba(231,29,54,.35);
}
.info-link:hover{
  border-bottom-color:rgba(231,29,54,.7);
}

/* Quick buttons */
.contact-quick{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}
.contact-note{
  margin-top:14px;
  color:rgba(20,20,20,.70);
  font-weight:700;
}

/* Form */
.contact-form{
  margin-top:10px;
  display:grid;
  gap:12px;
}
.field label{
  display:block;
  font-weight:900;
  margin-bottom:6px;
  color:rgba(20,20,20,.86);
}
.field input,
.field textarea{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.95);
  padding:12px 12px;
  font-weight:700;
  color:rgba(20,20,20,.86);
  outline:none;
}
.field textarea{
  resize:vertical;
  min-height:140px;
}

.field input:focus,
.field textarea:focus{
  border-color:rgba(231,29,54,.55);
  box-shadow:0 0 0 3px rgba(231,29,54,.18);
}

.form-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:6px;
}
.form-fine{
  margin:0;
  color:rgba(20,20,20,.62);
  font-weight:700;
  font-size:.95rem;
}

/* Help line */
.form-help{
  margin-top:14px;
  display:grid;
  gap:8px;
  color:rgba(20,20,20,.70);
  font-weight:800;
}
.help-item{
  display:flex;
  align-items:center;
  gap:10px;
}
.help-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#e71d36;
  box-shadow:0 0 0 4px rgba(231,29,54,.12);
}

/* Honeypot hidden */
.hp{
  position:absolute !important;
  left:-9999px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

/* Responsive */
@media (max-width:980px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:560px){
  .contact-quick .btn{
    width:100%;
  }
}