/* =========================================================
   CONTACT PAGE (STACKED: Contact top, Locations below)
========================================================= */

.contact-page{
  padding: 0 0 18px;
  background: #fff; /* keep base clean */
}

/* Hero wrapper holds the glow like other pages */
.contact-hero{
  padding: 34px 0 40px; /* keep your spacing */
  background:
    radial-gradient(1000px 560px at 10% 0%, rgba(16,24,40,.08), transparent 60%),
    radial-gradient(1000px 560px at 90% 0%, rgba(255,80,100,.12), transparent 60%);
}

.contact-stack{
  display: grid;
  gap: 18px;
}

/* Shared card look */
.contact-card{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(231,235,243,.95);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 24px 50px rgba(11,18,32,.08);
}

/* =========================
   CONTACT (TOP)
========================= */

.contact-top{
  max-width: 640px;
  margin: 0 auto 12px;
  background: rgba(245,247,251,.95);  
}

.contact-title{
  margin: 0 0 8px;
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -0.8px;
  color: var(--ink);
}

.contact-sub{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.contact-form{
  margin-top: 14px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr;   /* single column */
  gap: 12px;                    /* more breathing room */
}

.form-row{
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.form-row label{
  font-weight: 800;
  color: var(--ink-2);
  font-size: 13px;
}

.form-row input,
.form-row textarea{
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(11,42,91,.20);
  background: #ffffff;                 /* white fields */
  font-size: 15px;
  outline: none;
  transition: border .15s ease, box-shadow .15s ease;
}

.form-row input:focus,
.form-row textarea:focus{
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(11,42,91,.12);
}

.form-row--full{
  grid-column: 1 / -1;
}

.btn--full{ width:100%; }

.contact-confirm{
  display: none;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
  text-align: center;
  background: rgba(11,42,91,.08);
  color: var(--navy);
  border: 1px solid rgba(11,42,91,.15);
}

/* =========================
   LOCATIONS (BELOW)
========================= */

.locs-wrap{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(231,235,243,.95);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 24px 50px rgba(11,18,32,.06);
}

.locs-head{
  text-align:center;
  margin-bottom: 16px;
}

.locs-title{
  margin: 0;
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -0.8px;
  color: var(--ink);
}

.locs-rule{
  width: 92px;
  height: 4px;
  background: var(--navy);
  border-radius: 999px;
  margin: 10px auto 12px;
}

.locs-sub{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.locs-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

/* Location card */
.loc-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(231,235,243,.95);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(11,18,32,.10);
  display:flex;
  flex-direction:column;
  text-align:center;
}

.loc-img{
  padding: 12px 12px 0;
}

.loc-img img{
  width: 100%;
  height: 170px;          /* banner feel like reference image */
  object-fit: cover;
  border-radius: 14px;
  display:block;
  box-shadow: 0 12px 26px rgba(11,18,32,.10);
}

.loc-body{
  padding: 14px;
}

.loc-city{
  margin: 6px 0 4px;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.3px;
  color: var(--navy);
}

.loc-pin{
  font-size: 18px;
  margin: 0 0 8px;
  opacity: .9;
}

.loc-addr{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
}

/* Phone bar */
.loc-phone{
  margin: 0 auto 16px;     /* center it */
  width: 100%;
  max-width: 300px;        /* reasonable button width (tweak 280–320) */
  background: var(--navy);
  color:#fff;
  text-decoration:none;
  border-radius: 12px;
  padding: 12px 12px;
  font-weight: 950;
  font-size: 22px;
  letter-spacing: .4px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  box-shadow: 0 16px 34px rgba(11,42,91,.18);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.loc-phone:hover{
  transform: translateY(-1px);
  background: var(--navy-2);
  box-shadow: 0 18px 44px rgba(11,42,91,.22);
}


/* Bottom strip */
.locs-strip{
  margin-top: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(231,235,243,.95);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(11,18,32,.06);
  display:grid;
  grid-template-columns: 1fr 1px 1fr auto;
  align-items:center;
  overflow:hidden;
}

.strip-item{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 16px 18px;
}

.strip-icon{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(11,42,91,.08);
  border: 1px solid rgba(11,42,91,.14);
  font-size: 22px;
}

.strip-copy{
  color: var(--ink);
  font-weight: 800;
}

.strip-copy a{
  color: var(--navy);
  text-decoration:none;
  font-weight: 950;
}

.strip-copy a:hover{
  text-decoration: underline;
}

.strip-divider{
  width: 1px;
  height: 70%;
  background: rgba(231,235,243,.95);
}

.strip-action{
  padding: 14px 14px;
}

.strip-btn{
  display:flex;
  align-items:center;
  gap: 12px;
  background: var(--navy);
  color:#fff;
  text-decoration:none;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(11,42,91,.18);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.strip-btn:hover{
  transform: translateY(-1px);
  background: var(--navy-2);
  box-shadow: 0 18px 44px rgba(11,42,91,.22);
}

.strip-btn__icon{
  font-size: 22px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){
  .form-grid{
    grid-template-columns: 1fr 1fr;
  }

  .locs-grid{
    grid-template-columns: 1fr;
  }

  .loc-img img{
    height: 190px;
  }

  .locs-strip{
    grid-template-columns: 1fr;
  }

  .strip-divider{
    display:none;
  }

  .strip-btn{
    width: 100%;
    justify-content:center;
  }
}

@media (max-width: 640px){
  .form-grid{
    grid-template-columns: 1fr;
  }

  .contact-title,
  .locs-title{
    font-size: 34px;
  }

  .loc-city{
    font-size: 24px;
  }

  .loc-phone{
    font-size: 20px;
  }
}
