/* ============================================================
   FORGE FITNESS — CONTACT CSS
   ============================================================ */

:root {
  --black: #090909;
  --surface: #111111;
  --surface2: #161616;
  --border: #2a2a2a;
  --accent: #e63946;
  --accent-dark: #c1121f;
  --white: #ffffff;
  --off-white: #e8e8e8;
  --muted: #888888;
  --green: #2ecc71;

  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(9,9,9,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.4rem;
  border: 2px solid var(--accent);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: transparent; color: var(--accent); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }
.mobile-menu {
  display: none;
  background: rgba(9,9,9,0.98);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.mobile-menu ul a {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
}
.mobile-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 2rem;
}

/* ── CONTACT HERO ── */
.contact-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 10rem 2rem 5rem;
  background: linear-gradient(170deg, #0e0e0e 0%, #0a0508 60%, #0e0e0e 100%);
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: 50%; right: -120px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.06) 0%, transparent 70%);
}
.ch-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.ch-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.ch-inner h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ── MAIN CONTACT ── */
.contact-main { padding: 5rem 2rem; }
.cm-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Form col */
.form-header { margin-bottom: 2.5rem; }
.section-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.form-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  resize: vertical;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23888'%3E%3Cpath d='M0 0l6 8 6-8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-group select option { background: #1a1a1a; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: transparent; color: var(--accent); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { font-size: 0.75rem; color: #555; }
.form-success {
  display: none;
  align-items: center;
  gap: 0.8rem;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.3);
  color: var(--green);
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
}
.form-success.visible { display: flex; }
.form-success i { font-size: 1.2rem; }

/* Info col */
.contact-info-col { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card {
  display: flex;
  gap: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.info-card:hover { border-color: #444; }
.info-icon {
  width: 42px; height: 42px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.info-body h3 {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 0.4rem;
}
.info-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.info-link, .email-link, .tel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.6rem;
  transition: opacity 0.2s;
}
.info-link:hover, .email-link:hover, .tel-link:hover { opacity: 0.75; }
.tel-link { font-family: var(--font-body); font-size: 1rem; font-weight: 500; text-transform: none; letter-spacing: 0; margin-top: 0; color: var(--off-white); }
.info-note { margin-top: 0.4rem; font-size: 0.82rem; }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  margin-top: 0.6rem;
  transition: background 0.2s;
}
.wa-btn:hover { background: #1ebe5b; }
.hours-grid { display: flex; flex-direction: column; gap: 0.3rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.day { color: var(--muted); }
.time { color: var(--off-white); }
.open-now { margin-top: 0.6rem; }
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}
.status.open { background: rgba(46,204,113,0.1); color: var(--green); }
.status.open i { font-size: 0.55rem; color: var(--green); animation: pulse 1.5s infinite; }
.status.closed { background: rgba(230,57,70,0.1); color: var(--accent); }
.status.closed i { font-size: 0.55rem; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.social-row { display: flex; align-items: center; gap: 1.2rem; padding: 0.5rem 0; }
.social-label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.social-icons { display: flex; gap: 0.6rem; }
.soc-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.soc-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── MAP ── */
.map-section { padding: 0 2rem 5rem; }
.map-header { max-width: 1200px; margin: 0 auto 2.5rem; }
.map-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  margin: 0.5rem 0 0.6rem;
}
.map-sub { font-size: 0.9rem; color: var(--muted); }
.map-embed-wrap { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  height: 260px;
  overflow: hidden;
}
.map-placeholder iframe { display: block; filter: grayscale(80%) invert(90%) contrast(0.85); }
.map-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  transition: background 0.2s;
}
.map-directions-link:hover { background: var(--accent-dark); }

/* ── DIRECTIONS ── */
.directions-section {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dir-inner { max-width: 1100px; margin: 0 auto; }
.dir-header { text-align: center; margin-bottom: 3rem; }
.dir-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  margin-top: 0.6rem;
}
.dir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.dir-card {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  transition: border-color 0.2s;
}
.dir-card:hover { border-color: var(--accent); }
.dir-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(230,57,70,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.dir-card h3 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--off-white);
}
.dir-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.dir-card strong { color: var(--off-white); }

/* ── CONTACT CTA ── */
.contact-cta {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--accent);
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}
.cta-inner p { font-size: 1rem; opacity: 0.85; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--accent);
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border: 2px solid var(--white);
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: transparent; color: var(--white); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--white); }

/* ── FOOTER ── */
.footer { background: #050505; border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.06em; color: var(--white); text-decoration: none; display: block; margin-bottom: 1rem; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.8rem; }
.footer-socials a { width: 34px; height: 34px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: border-color 0.2s, color 0.2s; }
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-family: var(--font-condensed); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.5rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact i { color: var(--accent); margin-top: 0.2rem; flex-shrink: 0; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; color: #555; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cm-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dir-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
