/* Section */
.section--contact{ background:#f3f7f4; padding:48px 0 56px; }

/* Header */
.contact__head{ text-align:center; margin-bottom:18px; }
.contact__title{
  margin:0 0 6px; color:var(--green-700);
  font-weight:900; font-size: clamp(24px, 2vw + 16px, 36px);
}
.contact__sub{ margin:0 auto; max-width:900px; color:#64748b; }

/* Grid */
.contact__grid{
  display:grid; gap:16px; margin-top:12px;
  grid-template-columns: repeat(12, 1fr);
}
.qform{ grid-column: span 7; }
.qaside{ grid-column: span 5; display:grid; gap:16px; }
@media (max-width: 1024px){
  .qform{ grid-column: span 12; }
  .qaside{ grid-column: span 12; }
}

/* Form card */
.qform{
  background:#fff; border:1px solid var(--border); border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.04); padding:16px;
}
.qform__title{ margin:0 0 4px; font-weight:900; color:#0f172a; }
.qform__sub{ margin:0 0 12px; color:#64748b; }

.qform__form .row{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.qform__form .col{ display:flex; flex-direction:column; }
@media (max-width: 640px){ .qform__form .row{ grid-template-columns: 1fr; } }

.lbl{ font-size:12px; color:#475569; margin:8px 0 6px; }
.inp{
  width:100%; border:1px solid #d1d5db; border-radius:10px; padding:10px 12px;
  font:inherit; color:#0f172a; background:#fff; outline:none;
  transition:border-color .12s ease, box-shadow .12s ease;
}
.inp:focus{ border-color:#86efac; box-shadow:0 0 0 3px rgba(134,239,172,.35); }
.ta{ resize:vertical; min-height:110px; }

.qform__submit{
  margin-top:12px; display:inline-flex; gap:10px; align-items:center;
  border-radius:10px; padding:12px 16px; font-weight:800;
}
.qform__submit svg{ width:18px; height:18px; fill:#fff; }

.qform__status{ margin:10px 4px 0; color:#065f46; font-weight:700; min-height:1em; }
.qform__status.is-error{ color:#b91c1c; }

/* Info cards */
.qcard{
  background:#fff; border:1px solid var(--border); border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.04); padding:16px;
}
.qcard__title{
  display:flex; align-items:center; gap:10px; margin:0 0 8px;
  color:#0f172a; font-weight:900; font-size:16px;
}
.qcard__title svg{ width:18px; height:18px; }
.qcard__text{ margin:0 0 10px; color:#475569; }
.qcard__emph{ margin:0; color:#0f172a; font-weight:700; }
.qcard__small{ margin:8px 0 0; color:#64748b; font-size:12px; }

.qcard__btn{ display:inline-flex; align-items:center; gap:8px; border-radius:10px; padding:10px 12px; }
.qcard__btn svg{ width:18px; height:18px; fill:#fff; }

/* Hours list */
.hours{ list-style:none; margin:0; padding:0; color:#0f172a; }
.hours li{ margin:4px 0; }
.hours strong{ font-weight:900; }

/* Hidden honeypot */
.hp{ position:absolute !important; left:-9999px !important; width:1px; height:1px; opacity:0; }

/* =============================== */
/* Buttons – scoped to this section */
/* =============================== */
.section--contact .btn{
  position:relative; overflow:hidden;
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border:1px solid transparent; border-radius:10px;
  padding:12px 16px; font-weight:800; text-decoration:none !important;
  color:#fff;
  transition: transform .10s ease, box-shadow .18s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.section--contact .btn svg{ width:16px; height:16px; }

/* Green primary (Send Quote Request) */
.section--contact .btn--primary{
  background:linear-gradient(180deg,#16a34a 0%,#15803d 100%);
  border-color:#166534;
  box-shadow:0 10px 18px rgba(22,163,74,.22), inset 0 -2px 0 rgba(0,0,0,.10);
}
.section--contact .btn--primary:hover,
.section--contact .btn--primary:focus{
  transform:translateY(-1px) scale(1.02);
  box-shadow:0 0 0 3px rgba(34,197,94,.18),
              0 14px 28px rgba(22,163,74,.32),
              inset 0 -2px 0 rgba(0,0,0,.10);
}

/* Orange call (locked gradient; no white-out) */
.section--contact .btn--call{
  background:linear-gradient(180deg,#f97316 0%,#ea580c 100%);
  border-color:#c2410c; color:#fff;
  box-shadow:0 10px 18px rgba(234,88,12,.28), inset 0 -2px 0 rgba(0,0,0,.10);
}
.section--contact .btn--call:hover,
.section--contact .btn--call:focus,
.section--contact .btn--call:active{
  background:linear-gradient(180deg,#f97316 0%,#ea580c 100%) !important;
  color:#fff !important; border-color:#c2410c !important; filter:none !important;
  transform:translateY(-1px) scale(1.02);
  box-shadow:0 0 0 3px rgba(249,115,22,.18),
              0 14px 28px rgba(234,88,12,.36),
              inset 0 -2px 0 rgba(0,0,0,.10);
}

/* Shine sweep on hover (same feel as other pages) */
.section--contact .btn::before{
  content:""; pointer-events:none; position:absolute; inset:-2px;
  transform:translateX(-120%);
  background:linear-gradient(115deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,0) 70%);
  mix-blend-mode:screen; opacity:.60;
}
.section--contact .btn:hover::before{ animation: contact-btn-shine 1.35s ease; }
@keyframes contact-btn-shine{ to{ transform:translateX(120%);} }
