/* ══════════════════════════════════════
   SHERRY SCRAWLS — CONTACT PAGE CSS
══════════════════════════════════════ */

.nav-active { color: var(--lime) !important; }
.nav-active::after { width: 100% !important; }

/* ══════════════════════════════════
   S1 — HERO
══════════════════════════════════ */
#contact-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background: var(--black);
}

.contact-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.chs-1 {
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-left: 300px solid transparent;
  border-top: 300px solid rgba(0,40,220,0.05);
}
.chs-2 {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 0;
  border-right: 180px solid transparent;
  border-bottom: 180px solid rgba(198,220,0,0.04);
}

.contact-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb .bc-current { color: var(--lime); }

.contact-hero-headline {
  font-family: var(--font-head);
  font-weight: 900; font-style: italic;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.97; text-transform: uppercase;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.6);
  max-width: 62ch; line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-response-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--lime); text-transform: uppercase;
  border: 1px solid rgba(198,220,0,0.3);
  background: rgba(198,220,0,0.06);
  padding: 0.5rem 1rem;
}
.hero-response-pill svg { flex-shrink: 0; }

/* ══════════════════════════════════
   S2 — MAIN CONTACT
══════════════════════════════════ */
#contact-main {
  background: var(--black2);
  position: relative;
}
#contact-main::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--lime));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-col-heading {
  font-family: var(--font-head);
  font-weight: 900; font-size: 1.4rem;
  text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 0.5rem;
}

.contact-col-sub {
  font-family: var(--font-body);
  font-size: 0.93rem; color: rgba(255,255,255,0.5);
  line-height: 1.65; margin-bottom: 2rem;
}

/* ── FORM ───────────────────────── */
.cpage-form {
  display: flex; flex-direction: column; gap: 1.25rem;
}

.cfield { display: flex; flex-direction: column; gap: 0; }

.cfield label {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.cfield-icon {
  width: 18px; height: 18px; color: var(--lime);
  flex-shrink: 0;
}
.cfield-icon svg { width: 100%; height: 100%; }

.cfield-label {
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.65rem; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
}
.req { color: var(--lime); }
.optional {
  font-size: 0.55rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

.cfield input,
.cfield textarea {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: 2px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  resize: vertical;
}
.cfield input::placeholder,
.cfield textarea::placeholder { color: rgba(255,255,255,0.2); }
.cfield input:focus,
.cfield textarea:focus {
  border-color: var(--lime);
  background: rgba(198,220,0,0.03);
}

.cfield-note {
  font-family: var(--font-body); font-size: 0.78rem;
  color: rgba(255,255,255,0.3); margin-top: 0.4rem;
  font-style: italic;
}

.cform-submit {
  padding: 1.1rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
  cursor: pointer;
  border: none;
  width: 100%;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: all 0.2s, transform 0.15s;
}
.cform-submit:hover { transform: translateY(-2px); }
.cform-submit:active { transform: translateY(0); }
.cform-submit.loading { opacity: 0.7; pointer-events: none; }
.cform-submit.success { background: #22c55e; }

.form-message {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-body); font-size: 0.9rem;
}
.form-message svg { flex-shrink: 0; }
.form-message--success { background: rgba(34,197,94,0.1); border-left: 3px solid #22c55e; color: #22c55e; }
.form-message--error   { background: rgba(239,68,68,0.1);  border-left: 3px solid #ef4444;  color: #ef4444;  }

.form-trust {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding-top: 0.5rem;
}
.form-trust span {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.form-trust span svg { flex-shrink: 0; color: rgba(255,255,255,0.3); }

/* ── CONTACT INFO ───────────────── */
.cinfo-method {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding-left 0.2s;
}
.cinfo-method:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }
.cinfo-method:hover { padding-left: 0.5rem; }

.cinfo-method--featured {
  background: rgba(0,40,220,0.1);
  border: 1px solid rgba(0,40,220,0.25);
  border-left: 4px solid var(--lime);
  padding: 1.5rem !important;
  margin-bottom: 0.5rem;
  border-radius: 0;
}
.cinfo-method--featured:hover { padding-left: 1.5rem !important; }

.cinfo-method--hours:hover { padding-left: 0.5rem; }

.cinfo-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  color: var(--lime); margin-top: 0.15rem;
}
.cinfo-icon svg { width: 100%; height: 100%; }

.cinfo-label {
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.cinfo-badge {
  font-size: 0.55rem; background: var(--lime);
  color: var(--black); padding: 0.15rem 0.4rem;
  letter-spacing: 0.1em; font-weight: 800;
}

.cinfo-value {
  font-family: var(--font-head); font-weight: 900;
  font-size: 1.1rem; color: var(--white);
  letter-spacing: -0.01em; margin-bottom: 0.4rem;
}

.cinfo-desc {
  font-family: var(--font-body); font-size: 0.85rem;
  color: rgba(255,255,255,0.5); line-height: 1.6;
  margin-bottom: 0.75rem;
}
.cinfo-desc--small { font-size: 0.78rem; margin-bottom: 0; margin-top: 0.5rem; }

.cinfo-btn { font-size: 0.72rem; padding: 0.65rem 1.25rem; }

/* HOURS TABLE */
.hours-table { display: flex; flex-direction: column; gap: 0.35rem; margin: 0.5rem 0; }
.hours-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-body); font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-row:last-child { border-bottom: none; }
.hours-open { color: var(--lime); font-weight: 600; }
.hours-closed { color: rgba(255,255,255,0.3); font-style: italic; }

/* SOCIAL */
.cinfo-social { padding-top: 1.5rem; }
.cinfo-social-label {
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.62rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.cinfo-social-icons { display: flex; gap: 0.6rem; }
.csocial-icon {
  width: 44px; height: 44px;
  background: var(--gray); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  position: relative;
}
.csocial-icon svg { width: 20px; height: 20px; }
.csocial-icon:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.csocial-icon--soon { opacity: 0.4; cursor: default; }
.csocial-icon--soon:hover { background: var(--gray); color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.08); }
.csocial-soon {
  position: absolute; top: -8px; right: -4px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.45rem; letter-spacing: 0.05em;
  background: var(--gray); color: rgba(255,255,255,0.4);
  padding: 0.1rem 0.3rem; border: 1px solid rgba(255,255,255,0.1);
}

/* ══════════════════════════════════
   S3 — ALTERNATIVE METHODS
══════════════════════════════════ */
#alt-contact {
  background: var(--black);
  position: relative;
}
#alt-contact::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--blue));
}

.alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
  background: rgba(255,255,255,0.05);
}

.alt-card {
  background: var(--black2);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.alt-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-left: 50px solid transparent;
  border-top: 50px solid rgba(255,255,255,0.02);
  transition: border-top-color 0.3s;
}
.alt-card:hover { border-top-color: var(--lime); background: rgba(0,40,220,0.06); }
.alt-card:hover::before { border-top-color: rgba(198,220,0,0.05); }
.alt-card:hover .alt-icon { color: var(--lime); }

.alt-card--featured { background: var(--blue); border-top-color: var(--lime); }
.alt-card--featured:hover { background: #002fee; border-top-color: var(--lime); }
.alt-card--featured .alt-icon { color: rgba(255,255,255,0.6); }
.alt-card--featured:hover .alt-icon { color: var(--white); }

.alt-icon {
  width: 56px; height: 56px;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
}
.alt-icon svg { width: 100%; height: 100%; }

.alt-card h3 {
  font-family: var(--font-head); font-weight: 900;
  font-size: 1.15rem; text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--white);
  line-height: 1.2;
}
.alt-card p {
  font-family: var(--font-body); font-size: 0.9rem;
  color: rgba(255,255,255,0.55); line-height: 1.7;
  flex-grow: 1;
}
.alt-card--featured p { color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════
   S4 — TRUST BAR
══════════════════════════════════ */
#trust-bar {
  background: var(--lime);
  padding: 0;
  position: relative;
}
#trust-bar::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px; background: var(--black);
}

.trust-bar-inner {
  width: 92%; max-width: 1700px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.trust-signal {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 2.25rem 1.5rem; flex: 1;
  min-width: 140px;
}

.trust-icon {
  width: 36px; height: 36px; color: var(--black);
  margin-bottom: 0.75rem;
}
.trust-icon svg { width: 100%; height: 100%; }

.trust-signal strong {
  font-family: var(--font-head); font-weight: 900;
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--black); text-transform: uppercase;
  margin-bottom: 0.25rem; display: block;
}
.trust-signal span {
  font-family: var(--font-body); font-size: 0.78rem;
  color: rgba(16,24,32,0.6); line-height: 1.4;
}

.trust-div {
  width: 1px; height: 50px;
  background: rgba(16,24,32,0.15); flex-shrink: 0;
}

/* ══════════════════════════════════
   S5 — FAQ
══════════════════════════════════ */
#contact-faq { background: var(--black2); }

.cfaq-list {
  max-width: 820px; margin: 3.5rem auto 0;
}

.cfaq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.cfaq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.cfaq-q {
  width: 100%; background: none; border: none;
  padding: 1.5rem 0;
  display: flex; align-items: center; gap: 1rem;
  cursor: pointer; text-align: left;
  transition: padding-left 0.2s;
}
.cfaq-q:hover { padding-left: 0.5rem; }

.cfaq-q-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--lime);
}
.cfaq-q-icon svg { width: 100%; height: 100%; }

.cfaq-q span:nth-child(2) {
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.95rem; color: var(--white);
  text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 1.3; flex-grow: 1;
}

.cfaq-icon {
  font-family: var(--font-head); font-weight: 900;
  font-size: 1.5rem; color: var(--lime);
  flex-shrink: 0; line-height: 1;
  width: 24px; text-align: center;
  transition: transform 0.3s;
}
.cfaq-item.open .cfaq-icon { transform: rotate(45deg); }

.cfaq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
}
.cfaq-a p {
  font-family: var(--font-body); font-size: 0.95rem;
  color: rgba(255,255,255,0.6); line-height: 1.75;
  padding: 0 0 1.5rem 2rem;
  border-left: 3px solid var(--lime);
  margin-left: 0;
}
.cfaq-item.open .cfaq-a { max-height: 300px; }

/* ══════════════════════════════════
   S6 — MAP
══════════════════════════════════ */
#map-section { background: var(--black); }

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: stretch;
}

.map-pin-icon {
  width: 56px; height: 56px;
  color: var(--lime); margin-bottom: 1.25rem;
}
.map-pin-icon svg { width: 100%; height: 100%; }

.map-address {
  display: flex; flex-direction: column; gap: 0.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.map-address strong {
  font-family: var(--font-head); font-weight: 900;
  font-size: 1rem; letter-spacing: 0.05em;
  color: var(--white); text-transform: uppercase;
}
.map-address span {
  font-family: var(--font-body); font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
}

.map-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.map-detail-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--lime); margin-top: 0.15rem;
}
.map-detail-icon svg { width: 100%; height: 100%; }
.map-detail strong {
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.62rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  display: block; margin-bottom: 0.3rem;
}
.map-detail p {
  font-family: var(--font-body); font-size: 0.9rem;
  color: rgba(255,255,255,0.6); line-height: 1.6;
}

.map-note {
  font-family: var(--font-body); font-size: 0.85rem;
  color: rgba(255,255,255,0.35); line-height: 1.7;
  font-style: italic;
  border-left: 2px solid rgba(198,220,0,0.2);
  padding-left: 1rem; margin-top: 1.5rem;
}

/* MAP EMBED */
.map-embed { min-height: 480px; }
.map-frame {
  height: 100%; min-height: 480px;
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--lime);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.map-frame-bar {
  background: var(--black2);
  padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.4rem;
  flex-shrink: 0;
}
.map-frame-bar span {
  width: 10px; height: 10px; display: block;
}
.map-frame-bar span:nth-child(1) { background: #ff5f57; }
.map-frame-bar span:nth-child(2) { background: #ffbd2e; }
.map-frame-bar span:nth-child(3) { background: #28c940; }
.map-frame-url {
  width: auto !important; height: auto !important;
  background: none !important;
  font-family: var(--font-body); font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  margin-left: 0.5rem;
}
.map-frame iframe {
  flex-grow: 1; border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) contrast(1.1);
}

/* ══════════════════════════════════
   S7 — FINAL CTA
══════════════════════════════════ */
#contact-cta {
  background: var(--blue);
  position: relative; overflow: hidden; padding: 0;
}
#contact-cta::before {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 0; height: 0;
  border-left: 350px solid transparent;
  border-bottom: 350px solid rgba(0,0,0,0.12);
}
#contact-cta::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 0;
  border-right: 200px solid transparent;
  border-top: 200px solid rgba(255,255,255,0.04);
}
#contact-cta .hero-bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.contact-cta-content {
  max-width: 860px; margin: 0 auto;
  padding: 7rem 2rem; text-align: center;
  position: relative; z-index: 1;
}

.cta-handshake {
  width: 90px; height: 90px;
  color: rgba(255,255,255,0.25);
  margin: 0 auto 2rem;
}
.cta-handshake svg { width: 100%; height: 100%; }

.contact-cta-heading {
  font-family: var(--font-head);
  font-weight: 900; font-style: italic;
  font-size: clamp(2rem, 5vw, 4.5rem);
  text-transform: uppercase; letter-spacing: -0.03em;
  line-height: 1.0; color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-cta-sub {
  font-family: var(--font-body);
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  line-height: 1.75; max-width: 60ch;
  margin: 0 auto 2.5rem;
}

.contact-cta-actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.cta-small-line {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.cta-small-line svg { flex-shrink: 0; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .alt-grid { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: 1fr; gap: 3rem; }
  .map-embed { min-height: 380px; }
  .map-frame { min-height: 380px; }
  .trust-bar-inner { flex-wrap: wrap; justify-content: center; }
  .trust-signal { flex: 0 0 33.33%; }
  .trust-div { display: none; }
}

@media (max-width: 640px) {
  .trust-signal { flex: 0 0 50%; }
  .contact-cta-actions { flex-direction: column; align-items: center; }
  .cinfo-social-icons { flex-wrap: wrap; }
  .map-embed,
  .map-frame { min-height: 300px; }
}
