/* =========================
   CONTACT.CSS (polished)
   Matches homepage vibe
   ========================= */

html { scroll-behavior: smooth; }

:root{
  --page-bg: #f6f6f6;
  --ink: #111;
  --muted: #000000;
  --card: #ffffff;
  --border: rgba(0,0,0,0.10);
  --shadow: 0 14px 32px rgba(0,0,0,0.06);
  --shadow-strong: 0 28px 60px rgba(0,0,0,0.22);
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #222;
  background: var(--page-bg);
}

a{ color: inherit; }

/* ---------- Header (consistent) ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo{
  height: 54px;     /* ✅ smaller + consistent */
  width: auto;
  display: block;
}

.nav-links a{
  color: #646464;
  text-decoration: none;
  margin-left: 16px;
  font-weight: 600;
}

.nav-links a:hover{ text-decoration: underline; }

.wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.page{
  padding-top: 90px; /* header space */
}

.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

/* ---------- Buttons (match your clean vibe) ---------- */
.btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);

  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 12px;
  cursor: pointer;

  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.btn-primary:hover{
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.btn-primary:active{
  transform: translateY(0px);
  box-shadow: 0 9px 18px rgba(0,0,0,0.14);
}

.btn-primary:focus-visible{
  outline: 3px solid rgba(20,184,184,0.55);
  outline-offset: 3px;
}

/* =========================
   1) HERO (homepage-like)
   ========================= */

.contact-hero{
  min-height: 70vh; /* change to 100vh if you want full-screen */
  display: grid;
  place-items: center;
  text-align: center;
  background: #6e1c1d;
  background-image: url("/assets/img/statecap.jpg"); /* ✅ your hero bg */
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-hero::after{
  content:"";
  position: absolute;
  inset: 0;
  background: #6e1c1d; /* ✅ readable like your home hero overlay */
}

.contact-hero-inner{
  position: relative;
  z-index: 1;
  padding: 28px 20px;
  max-width: 900px;
  color: #ffffff;
}

.contact-hero-inner h1{
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(38px, 5.2vw, 66px);
  letter-spacing: 0.01em;
}

.contact-hero-inner p{
  margin: 0;
  font-size: clamp(16px, 2vw, 22px);
  opacity: 0.95;
  line-height: 1.55;
}

/* =========================
   2) FORM SECTION
   ========================= */

.contact-form-section{
  background: #ffffff;
  padding: 70px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.form-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.form-copy h2{
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--ink);
}

.form-copy p{
  margin: 0 0 18px;
  line-height: 1.65;
  max-width: 70ch;
}

.mini-checklist{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}

.mini-item{
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: #1f2937;
}
.mini-item:last-child{ border-bottom: none; }

.contact-form{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.contact-form label{
  display: block;
  font-weight: 800;
  color: #111;
  font-size: 13px;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  font: inherit;
  box-sizing: border-box;
  outline: none;
}

.contact-form textarea{ resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(20,184,184,0.9);
  box-shadow: 0 0 0 3px rgba(20,184,184,0.18);
}

/* Make button full width and consistent */
.contact-form .btn-primary{
  width: 100%;
  margin-top: 8px;
}

/* =========================
   3) MAP BACKGROUND + CENTERED CARD
   (This is the piece you asked for)
   ========================= */

.contact-map{
  /* ✅ full-width + centers content */
  min-height: 90vh;
  width: 100%;
  display: grid;
  place-items: center;

  position: relative;

  background-image: url("/assets/img/map-bg.jpg"); /* ✅ add this image */
  background-size: cover;
  background-position: center;
}

.contact-map::before{
  /* ✅ ensures the map reads like a background, not noise */
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(245,245,245,0.86);
}

.contact-card-map{
  position: relative;
  z-index: 1;

  width: min(520px, 92vw);
  text-align: center;

  background: #3b0b06; /* maroon like reference */
  color: #fff;

  border-radius: 0px; /* reference uses sharp edges; set 12px if you want softer */
  padding: 42px 36px;
  box-shadow: var(--shadow-strong);
}

/* ✅ this logo was too big before */
.card-logo{
  display: block;
  width: min(180px, 60%);
  height: auto;
  margin: 0 auto 16px;
}

.card-title{
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: 26px;
}

.card-sub{
  margin: 0 0 26px;
  font-size: 12px;
  letter-spacing: 0.22em;
  opacity: 0.92;
}

.card-info p{
  margin: 9px 0;
  font-size: 15px;
}

.card-info a{
  color: #fff;
  text-decoration: underline;
}

.card-cta{
  display: inline-block;
  margin: 26px auto 14px;
  padding: 14px 22px;

  border: 2px solid #d8b36a;
  color: #fff;
  text-decoration: none;

  font-weight: 900;
  letter-spacing: 0.15em;
  font-size: 12px;
}

.card-cta:hover{
  background: rgba(216,179,106,0.14);
}

.card-footnote{
  margin-top: 18px;
  font-size: 12px;
  opacity: 0.85;
}


/* Responsive */
@media (max-width: 900px){
  .form-grid{ grid-template-columns: 1fr; }
  .nav-links a{ margin-left: 10px; }
}

/* =========================
   FORM TWO-COLUMN SECTION
   ========================= */

.contact-form-section{
  background: #ffffff;
  padding: 72px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-two-col{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.contact-h2{
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: 28px;
  color: #111;
}

/* FORM CARD */
.contact-form{
  display: grid;
  gap: 18px;
}

.field{
  display: grid;
  gap: 8px;
}

.field-label{
  font-size: 13px;
  font-weight: 800;
  color: #111;
}

.req{ color: #a11; margin-left: 2px; }

.contact-form input,
.contact-form textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  font: inherit;
  color: #111;
  outline: none;
}

.contact-form textarea{ resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(0,0,0,0.35);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.08);
}

/* SEND button like your screenshot */
.send-btn{
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.send-btn:hover{ background: #111; }

.fineprint{
  margin: 4px 0 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

/* RIGHT COLUMN */
.contact-right .muted{
  margin: 0 0 24px;
  line-height: 1.65;
}

.info-block{
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.10);
  margin-top: 18px;
}

.info-title{
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: #111;
  font-size: 20px;
}

.info-line{
  margin: 0 0 10px;
  color: #222;
}

.link{
  color: #c7843f; /* optional accent */
  text-decoration: none;
  border-bottom: 1px solid rgba(199,132,63,0.45);
}

.link:hover{
  border-bottom-color: rgba(199,132,63,0.85);
}

.hours{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.hours li{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #222;
}

.hours li.bold{ font-weight: 900; }

.site-footer {
  background: #000;
  color: #9a9a9a;
  padding: 60px 0 40px;
  margin-top: 80px;
}

.site-footer a {
  color: #9a9a9a;
  text-decoration: none;
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  line-height: 1.4;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav,
  .footer-social {
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 900px){
  .contact-two-col{
    grid-template-columns: 1fr;
    gap: 34px;
  }
}


