/* ===== 13th Station - Contact Page Styles ===== */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.contact-hero {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden; background: #0D0B00;
  padding: 130px 0 90px;
}
.contact-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.72;
}
.contact-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.68) 35%, rgba(0,0,0,0.22) 100%);
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.contact-hero-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--gold); display: inline-block;
}
.contact-hero-title {
  font-size: clamp(36px, 5.5vw, 70px); font-weight: 800; line-height: 1.08;
  color: #fff; margin: 0 0 18px; max-width: 640px;
}
.contact-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.65); max-width: 500px; line-height: 1.65;
  margin: 0;
}

/* ── Info Band — address / phone / email / hours ────────────────────────── */
.contact-info-band {
  background: #111111;
  border-top: 1px solid rgba(245,196,0,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ci-block {
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.ci-block:first-child { padding-left: 0; }
.ci-block:last-child  { border-right: none; padding-right: 0; }

.ci-icon {
  font-size: 26px; margin-bottom: 14px; display: block;
}
.ci-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.ci-value {
  font-size: 16px; font-weight: 600; color: #fff; line-height: 1.6;
}
.ci-value a {
  color: #fff; text-decoration: none; transition: color 0.2s;
}
.ci-value a:hover { color: var(--gold); }
.ci-sub {
  font-size: 13px; color: rgba(255,255,255,0.42); margin-top: 5px; line-height: 1.5;
}

/* ── Form + Map ─────────────────────────────────────────────────────────── */
.contact-body {
  background: #0D0B00;
  padding: 80px 0 90px;
}
.contact-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Form side */
.contact-form-col {}
.contact-form-col h2 {
  font-size: 28px; font-weight: 800; color: #fff; margin: 0 0 8px;
}
.contact-form-col > p {
  font-size: 15px; color: rgba(255,255,255,0.50); margin: 0 0 32px; line-height: 1.65;
}

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.cf-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.cf-group label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  font-family: inherit; font-size: 14.5px; color: #fff;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 13px 16px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%; box-sizing: border-box;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,196,0,0.10);
  background: rgba(255,255,255,0.09);
}
.cf-group textarea { min-height: 140px; resize: vertical; }
.cf-group select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.cf-group select option { background: #1a1400; color: #fff; }
.cf-submit {
  width: 100%; padding: 16px; border-radius: 10px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000; font-family: inherit; font-size: 15px; font-weight: 700;
  transition: opacity 0.2s, transform 0.15s; margin-top: 4px;
}
.cf-submit:hover { opacity: 0.88; transform: translateY(-1px); }

/* Map side */
.contact-map-col {}
.contact-map-col h2 {
  font-size: 28px; font-weight: 800; color: #fff; margin: 0 0 8px;
}
.contact-map-col > p {
  font-size: 15px; color: rgba(255,255,255,0.50); margin: 0 0 32px; line-height: 1.65;
}
.contact-map-frame {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  line-height: 0; margin-bottom: 28px;
}
.contact-map-frame iframe {
  width: 100%; height: 300px; border: none; display: block;
  filter: grayscale(20%);
}

/* Social row */
.contact-social-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cs-social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px; text-decoration: none;
  font-size: 13.5px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.06);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.cs-social-btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(245,196,0,0.07);
  transform: translateY(-2px);
}
.cs-social-btn svg { flex-shrink: 0; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .ci-block { border-right: none; padding: 0 0 0 0; }
  .ci-block:nth-child(odd)  { padding-right: 20px; border-right: 1px solid rgba(255,255,255,0.07); }
  .ci-block:nth-child(even) { padding-left: 32px; }
  .contact-body-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .contact-info-grid { grid-template-columns: 1fr; gap: 32px; }
  .ci-block { padding: 0 !important; border-right: none !important; }
  .cf-row { grid-template-columns: 1fr; }
}
