/* contact.css — MotorVault */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #0a0a0a; color: #f0ede8;
  font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* NAV */
.nav {
  display: flex; align-items: center; gap: 2rem;
  padding: 0 5vw; height: 64px; background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: sticky; top: 0; z-index: 100;
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.08em; }
.logo span { color: #e8c84a; }
.nav-links { display: flex; gap: 2rem; flex: 1; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.btn-ghost {
  font-size: 13px; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1); padding: 7px 16px;
  border-radius: 8px; transition: border-color 0.2s, color 0.2s; white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; margin-left: auto; }

/* HEADER */
.header { padding: 4rem 5vw 3rem; max-width: 900px; margin: 0 auto; }
.eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #e8c84a; margin-bottom: 0.5rem; display: block; }
.header h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.04em; line-height: 1; margin-bottom: 0.6rem; }
.header h1 span { color: #e8c84a; }
.header__sub { font-size: 14px; color: rgba(255,255,255,0.4); }

/* LAYOUT */
.layout {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 2.5rem; max-width: 900px; margin: 0 auto;
  padding: 0 5vw 5rem; align-items: start;
}

/* INFO CARDS */
.info-col { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #111; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 1.25rem;
}
.info-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(232,200,74,0.08); border: 1px solid rgba(232,200,74,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #e8c84a; flex-shrink: 0;
}
.info-card__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 0.2rem; }
.info-card__value { font-size: 14px; font-weight: 500; color: #fff; }
.info-card__hint  { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 0.15rem; }

/* SOCIALS */
.socials { margin-top: 0.5rem; }
.socials__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 0.75rem; }
.socials__row { display: flex; flex-direction: column; gap: 0.5rem; }
.social-btn {
  display: flex; align-items: center; gap: 0.6rem;
  background: #111; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 0.6rem 1rem;
  font-size: 13px; color: rgba(255,255,255,0.55);
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: #e8c84a; color: #e8c84a; }
.social-btn svg { flex-shrink: 0; }

/* FORM */
.form-col {
  background: #111; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 2rem;
}
.form-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  letter-spacing: 0.06em; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

.field input,
.field select,
.field textarea {
  background: #181818; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; color: #f0ede8;
  font-family: 'DM Sans', sans-serif; font-size: 13.5px;
  padding: 0.65rem 0.9rem; outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.2); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: rgba(232,200,74,0.5); box-shadow: 0 0 0 3px rgba(232,200,74,0.07); }
.field select { cursor: pointer; }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.btn-submit {
  width: 100%; background: #e8c84a; color: #0a0a0a;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  padding: 0.85rem; border: none; border-radius: 8px; cursor: pointer;
  transition: background 0.2s, transform 0.2s; letter-spacing: 0.04em;
}
.btn-submit:hover { background: #f5d76a; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Success */
.success-msg {
  display: none; align-items: center; gap: 0.6rem;
  background: rgba(62,207,122,0.1); border: 1px solid rgba(62,207,122,0.2);
  border-radius: 8px; padding: 0.85rem 1rem;
  font-size: 13.5px; color: #3ecf7a; margin-top: 1rem;
}

/* FOOTER */
.footer {
  background: #111; border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 5vw; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.footer p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer div { display: flex; gap: 1.5rem; }
.footer div a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer div a:hover { color: #e8c84a; }

/* RESPONSIVE */
@media (max-width: 760px) {
  .layout { grid-template-columns: 1fr; }
  .socials__row { flex-direction: row; }
  .social-btn { flex: 1; justify-content: center; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #111; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 1rem 5vw; gap: 1rem; z-index: 99; }
  .nav-toggle { display: block; }
  .row-2 { grid-template-columns: 1fr; }
  .header, .layout { padding-left: 1.25rem; padding-right: 1.25rem; }
  .footer { flex-direction: column; align-items: flex-start; }
  .socials__row { flex-direction: column; }
}