/* ============================================================
   NEXIGEN INDUSTRIAL — contact.css
   Minimal premium contact page · Light mode
   ============================================================ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --white:        #ffffff;
  --bg:           #f8f9fd;
  --bg-2:         #f0f3fb;
  --surface:      #ffffff;

  --ink:          #09101f;
  --ink-2:        #1c2a4a;
  --ink-3:        #3b4a6b;
  --muted:        #6b7896;
  --muted-2:      #9faabf;

  --border:       #e3e8f4;
  --border-2:     #cdd5eb;
  --border-focus: #1a3cff;

  --blue:         #1a3cff;
  --blue-mid:     #2f4eff;
  --blue-light:   #eaedff;
  --blue-dim:     rgba(26,60,255,0.06);
  --blue-glow:    rgba(26,60,255,0.14);
  --navy:         #0f2057;

  --green:        #22c55e;
  --green-bg:     #f0fdf4;
  --red:          #ef4444;
  --red-bg:       #fff5f5;
  --amber:        #f59e0b;

  --font-h:       'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-b:       'Inter', system-ui, sans-serif;

  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:     cubic-bezier(0.4, 0, 0.2, 1);

  --r:            10px;
  --r-lg:         16px;
  --r-xl:         24px;

  --sh-sm:        0 1px 4px rgba(9,16,31,0.06), 0 1px 2px rgba(9,16,31,0.04);
  --sh-md:        0 4px 20px rgba(9,16,31,0.08), 0 2px 6px rgba(9,16,31,0.04);
  --sh-lg:        0 16px 52px rgba(9,16,31,0.10), 0 4px 14px rgba(9,16,31,0.06);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
address { font-style: normal; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── Container ───────────────────────────────────────────── */
.c-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .c-container { padding: 0 20px; } }

/* ── Typography helpers ──────────────────────────────────── */
.c-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.c-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: dot-pulse 2.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(26,60,255,.4); }
  50%      { box-shadow: 0 0 0 5px rgba(26,60,255,0); }
}
.c-section-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.c-section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.c-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.14);
  opacity: 0;
  transition: opacity 0.25s;
}
.c-btn:hover::after { opacity: 1; }
.c-btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,60,255,.28), 0 1px 4px rgba(26,60,255,.18);
}
.c-btn--primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(26,60,255,.34);
}
.c-btn--ghost {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--border-2);
}
.c-btn--ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }
.c-btn--sm { padding: 9px 18px; font-size: 0.82rem; }
.c-btn--lg { padding: 16px 32px; font-size: 0.95rem; }

/* ── Scroll Progress Bar ─────────────────────────────────── */
.c-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--blue), rgba(26,60,255,.4));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 999;
  box-shadow: 0 0 8px var(--blue-glow);
  transition: transform .1s linear;
}

/* ============================================================
   NAV
============================================================ */
.c-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248,249,253,0.92);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.c-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) { .c-nav__inner { padding: 0 20px; } }
.c-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
}
.c-nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.c-nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .22s;
  position: relative;
}
.c-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .28s var(--ease);
}
.c-nav__links a:hover, .c-nav__links a[aria-current="page"] { color: var(--ink); }
.c-nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.c-nav__links a:hover::after { transform: scaleX(1); }
@media (max-width: 780px) { .c-nav__links { display: none; } }

/* ============================================================
   01 · HERO
============================================================ */
.c-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 80px;
  background: var(--white);
  text-align: center;
}

/* Aurora gradients */
.c-hero__aurora { position: absolute; inset: 0; pointer-events: none; }
.c-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0;
  animation: aurora-fade 12s ease-in-out infinite;
}
.c-aurora--1 {
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,60,255,.12), transparent 70%);
  top: -80px; left: -100px;
  animation-delay: 0s;
}
.c-aurora--2 {
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(99,102,241,.1), transparent 70%);
  bottom: -100px; right: -80px;
  animation-delay: -4s;
}
.c-aurora--3 {
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(14,165,233,.08), transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: -8s;
}
@keyframes aurora-fade {
  0%,100% { opacity: 0; transform: translate(0,0) scale(1); }
  30%     { opacity: 1; }
  60%     { opacity: .7; transform: translate(20px,-20px) scale(1.05); }
}
/* Hero content */
.c-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.c-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 32px;
  box-shadow: var(--sh-sm);
}
.c-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}
.c-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--green);
  opacity: .35;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(.8); opacity: .5; }
  100% { transform: scale(2.2); opacity: 0; }
}
.c-hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 24px;
}
.c-hero__sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.c-hero__anchors {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
/* Scroll mouse icon */
.c-hero__scroll {
  display: flex;
  justify-content: center;
  color: var(--muted-2);
}
.c-scroll-dot { animation: scroll-bounce 2s ease-in-out infinite; }
@keyframes scroll-bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(8px); }
}

/* ============================================================
   02 · QUICK CARDS
============================================================ */
.c-cards-section {
  padding: 64px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.c-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px)  { .c-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .c-cards-grid { grid-template-columns: 1fr; } }

.c-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all .32s var(--ease);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
/* Left colour accent bar */
.c-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transition: transform .32s var(--ease);
}
.c-card--sales::before   { background: var(--blue); }
.c-card--support::before { background: var(--amber); }
.c-card--general::before { background: var(--green); }

.c-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: var(--border-2); }
.c-card:hover::before { transform: scaleY(1); }
.c-card:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.c-card__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.c-card--sales   .c-card__icon { color: var(--blue); }
.c-card--support .c-card__icon { color: var(--amber); }
.c-card--general .c-card__icon { color: var(--green); }

.c-card__body { flex: 1; }
.c-card__body strong {
  display: block;
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.c-card__body p { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.c-card__action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap .25s var(--ease);
}
.c-card:hover .c-card__action { gap: 10px; }
.c-card--support .c-card__action { color: var(--amber); }
.c-card--general .c-card__action { color: var(--green); }

.c-card__tag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ============================================================
   03 · MAIN LAYOUT (Form + Info)
============================================================ */
.c-main {
  padding: 100px 0;
  background: var(--white);
}
.c-main__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1050px) { .c-main__layout { grid-template-columns: 1fr; gap: 60px; } }

/* Form header */
.c-form-header { margin-bottom: 48px; }

/* ── FLOATING LABEL FIELDS ──────────────────────────────── */
.c-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .c-form__row { grid-template-columns: 1fr; gap: 0; } }

/* Field wrapper */
.c-field {
  position: relative;
  margin-bottom: 32px;
}

/* Input / Select / Textarea — base styles */
.c-field input,
.c-field select,
.c-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 20px 36px 8px 0;
  font-size: .95rem;
  color: var(--ink);
  outline: none;
  caret-color: var(--blue);
  transition: color .2s;
  /* Remove browser chrome */
  appearance: none;
  -webkit-appearance: none;
}
.c-field select { cursor: pointer; padding-right: 28px; background: transparent; }
.c-field textarea { resize: vertical; min-height: 130px; }

/* Underline */
.c-field__line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border-2);
  transition: background .3s;
}
.c-field__line::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .4s var(--ease), left .4s var(--ease);
  border-radius: 2px;
}
.c-field:focus-within .c-field__line { background: transparent; }
.c-field:focus-within .c-field__line::after { width: 100%; left: 0; }
.c-field.is-error .c-field__line::after { background: var(--red); width: 100%; left: 0; }
.c-field.is-valid .c-field__line::after { background: var(--green); width: 100%; left: 0; }

/* Floating label */
.c-label {
  position: absolute;
  top: 20px; left: 0;
  font-size: .95rem;
  font-weight: 400;
  color: var(--muted);
  pointer-events: none;
  transition: all .28s var(--ease);
  transform-origin: left top;
  white-space: nowrap;
}
.c-label span { color: var(--blue); margin-left: 2px; font-size: .8rem; }
.c-optional { font-size: .75rem; color: var(--muted-2); font-weight: 400; }

/* Float up when focused or filled */
.c-field input:focus ~ .c-label,
.c-field input:not(:placeholder-shown) ~ .c-label,
.c-field select:focus ~ .c-label,
.c-field select.has-value ~ .c-label,
.c-field textarea:focus ~ .c-label,
.c-field textarea:not(:placeholder-shown) ~ .c-label {
  top: 2px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
}
.c-field.is-error input:focus ~ .c-label,
.c-field.is-error input:not(:placeholder-shown) ~ .c-label,
.c-field.is-error select.has-value ~ .c-label,
.c-field.is-error textarea:not(:placeholder-shown) ~ .c-label { color: var(--red); }
.c-field.is-valid input:focus ~ .c-label,
.c-field.is-valid input:not(:placeholder-shown) ~ .c-label,
.c-field.is-valid textarea:not(:placeholder-shown) ~ .c-label  { color: var(--green); }

/* Validation icons */
.c-field__icon {
  position: absolute;
  right: 0; top: 16px;
  width: 18px; height: 18px;
  opacity: 0;
  transition: opacity .25s, transform .3s var(--ease);
  transform: scale(.7);
}
.c-field.is-valid  .c-field__icon--valid { opacity: 1; transform: scale(1); color: var(--green); }
.c-field.is-error  .c-field__icon--error { opacity: 1; transform: scale(1); color: var(--red); }

/* Error message */
.c-field__err {
  font-size: .75rem;
  color: var(--red);
  min-height: 18px;
  margin-top: 4px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .3s var(--ease), opacity .3s;
}
.c-field.is-error .c-field__err { max-height: 40px; opacity: 1; }

/* Select arrow */
.c-select-arrow {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--muted);
  pointer-events: none;
  transition: transform .25s var(--ease);
}
.c-field--select:focus-within .c-select-arrow { transform: translateY(-50%) rotate(180deg); }

/* Textarea char count */
.c-textarea-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}
.c-char-count {
  font-size: .72rem;
  color: var(--muted-2);
  flex-shrink: 0;
  transition: color .25s;
}
.c-char-count.near-limit { color: var(--amber); font-weight: 600; }
.c-char-count.at-limit   { color: var(--red);   font-weight: 600; }

/* ── FILE UPLOAD ─────────────────────────────────────────── */
.c-upload {
  border: 1.5px dashed var(--border-2);
  border-radius: var(--r-lg);
  background: var(--bg);
  transition: all .3s var(--ease);
  margin-bottom: 32px;
  cursor: pointer;
  overflow: hidden;
}
.c-upload:hover, .c-upload.dragover {
  border-color: var(--blue);
  background: var(--blue-dim);
}
.c-upload input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.c-upload__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  gap: 8px;
  text-align: center;
}
.c-upload__icon {
  width: 48px; height: 48px;
  color: var(--muted-2);
  transition: color .3s, transform .3s var(--ease);
}
.c-upload:hover .c-upload__icon, .c-upload.dragover .c-upload__icon {
  color: var(--blue);
  transform: translateY(-4px);
}
.c-upload__text {
  font-size: .88rem;
  color: var(--muted);
}
.c-upload__text strong { color: var(--ink-3); }
.c-upload__browse {
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px dashed var(--blue);
  transition: opacity .2s;
}
.c-upload__browse:hover { opacity: .7; }
.c-upload__hint {
  font-size: .75rem;
  color: var(--muted-2);
}
/* File list */
.c-upload__files { padding: 0 16px 16px; }
.c-file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 6px;
  font-size: .82rem;
  animation: file-in .3s var(--ease) both;
}
@keyframes file-in { from { opacity: 0; transform: translateY(6px); } }
.c-file-item svg { color: var(--blue); flex-shrink: 0; width: 16px; height: 16px; }
.c-file-item span { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink-3); }
.c-file-item em { font-style: normal; color: var(--muted-2); flex-shrink: 0; }
.c-file-remove {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2);
  cursor: pointer;
  color: var(--muted);
  transition: all .2s;
  border: none;
  flex-shrink: 0;
}
.c-file-remove:hover { background: var(--red-bg); color: var(--red); }

/* ── CHECKBOX ────────────────────────────────────────────── */
.c-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 8px;
}
.c-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.c-checkbox__box {
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--border-2);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all .25s var(--ease);
  position: relative;
  background: var(--bg);
}
.c-checkbox__box::after {
  content: '';
  position: absolute;
  left: 4px; top: 2px;
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform .2s var(--ease);
}
.c-checkbox input:checked ~ .c-checkbox__box {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,60,255,.12);
}
.c-checkbox input:checked ~ .c-checkbox__box::after { transform: rotate(-45deg) scale(1); }
.c-checkbox:hover .c-checkbox__box { border-color: var(--blue); }
.c-checkbox__label { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.c-checkbox__label a { color: var(--blue); text-decoration: underline; }

/* ── SUBMIT BUTTON ───────────────────────────────────────── */
.c-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1rem;
  margin-top: 12px;
  margin-bottom: 16px;
  position: relative;
}
.c-submit__spinner {
  display: none;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.c-submit.loading .c-submit__text,
.c-submit.loading .c-submit__arrow { display: none; }
.c-submit.loading .c-submit__spinner { display: block; }
.c-submit:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }

.c-form__note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .76rem;
  color: var(--muted-2);
  text-align: center;
  justify-content: center;
}
.c-form__note svg { flex-shrink: 0; color: var(--green); }

/* ── SUCCESS STATE ───────────────────────────────────────── */
.c-success {
  text-align: center;
  padding: 80px 40px;
  animation: success-in .6s var(--ease) both;
}
@keyframes success-in { from { opacity: 0; transform: translateY(20px); } }
.c-success[hidden] { display: none; }
.c-success__icon {
  width: 80px; height: 80px;
  margin: 0 auto 32px;
}
.c-success__ring {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: ring-draw .8s .2s var(--ease) forwards;
}
.c-success__check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: check-draw .5s .9s var(--ease) forwards;
}
@keyframes ring-draw  { to { stroke-dashoffset: 0; } }
@keyframes check-draw { to { stroke-dashoffset: 0; } }
.c-success h3 {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.c-success p { font-size: .92rem; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.c-success__ref {
  font-size: .78rem;
  color: var(--muted-2);
  margin-bottom: 32px !important;
}
.c-success__ref code {
  background: var(--bg-2);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: .78rem;
  color: var(--blue);
  letter-spacing: .06em;
}

/* ── INFO COLUMN ─────────────────────────────────────────── */
.c-info-col { display: flex; flex-direction: column; gap: 0; }
.c-info-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.c-info-block:first-child { padding-top: 0; }
.c-info-block:last-child { border-bottom: none; padding-bottom: 0; }
.c-info-block__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.c-info-block__title svg { width: 16px; height: 16px; }
.c-info-block__addr {
  font-size: .9rem;
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: 10px;
}
.c-info-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .85rem;
  color: var(--blue);
  font-weight: 500;
  transition: gap .25s var(--ease), opacity .2s;
  margin-bottom: 8px;
}
.c-info-link:last-child { margin-bottom: 0; }
.c-info-link:hover { gap: 9px; opacity: .8; }
.c-info-block__links { display: flex; flex-direction: column; }
.c-tag-sm {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--blue-light);
  color: var(--blue);
  margin-left: 4px;
}
.c-tag-sm--red { background: var(--red-bg); color: var(--red); }

/* Hours table */
.c-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.c-hours-table td { padding: 7px 0; color: var(--muted); }
.c-hours-table td:last-child { text-align: right; color: var(--ink-3); font-weight: 500; }
.c-hours-table tr + tr td { border-top: 1px solid var(--border); }
.c-hours-table__special td { color: var(--ink-3); font-weight: 600; }
.c-open  { color: var(--green); }
.c-closed { color: var(--muted-2); }

/* Map */
.c-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); margin-top: 28px; }
.c-map__inner {
  position: relative;
  cursor: pointer;
}
.c-map__svg { width: 100%; height: auto; display: block; }
.c-map__pulse {
  animation: map-pulse 2.5s ease-in-out infinite;
}
@keyframes map-pulse {
  0%,100% { opacity: 1; transform-box: fill-box; transform-origin: center; transform: scale(1); }
  50%     { opacity: .5; transform: scale(1.5); }
}
.c-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  background: linear-gradient(to top, rgba(9,16,31,.18), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.c-map__inner:hover .c-map__overlay { opacity: 1; }
.c-map__caption {
  font-size: .72rem;
  color: var(--muted-2);
  padding: 10px 16px;
  background: var(--bg);
  text-align: center;
}
.c-map__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  transition: color .2s;
}
.c-map__link:hover { color: var(--blue); }
.c-map__link svg { flex-shrink: 0; }

/* ============================================================
   04 · FAQ ACCORDION
============================================================ */
.c-faq {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.c-faq__header { margin-bottom: 60px; }
.c-faq__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 860px) { .c-faq__cols { grid-template-columns: 1fr; } }

/* Accordion */
.c-accordion { display: flex; flex-direction: column; gap: 0; }
.c-acc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 8px;
  transition: box-shadow .3s;
}
.c-acc:hover { box-shadow: var(--sh-sm); }
.c-acc.open   { box-shadow: var(--sh-md); border-color: var(--border-2); }

.c-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  transition: color .25s;
}
.c-acc__btn:hover { color: var(--blue); }
.c-acc.open .c-acc__btn { color: var(--blue); }
.c-acc__chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform .35s var(--ease);
  color: var(--muted-2);
}
.c-acc.open .c-acc__chevron { transform: rotate(180deg); color: var(--blue); }

.c-acc__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  padding: 0 24px;
}
.c-acc.open .c-acc__body { max-height: 400px; padding: 0 24px 20px; }
.c-acc__body[hidden] { display: block; } /* override hidden so CSS can animate */
.c-acc__body p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   FOOTER
============================================================ */
.c-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.c-footer__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
.c-footer__logo { text-decoration: none; }
.c-footer__copy { font-size: .78rem; color: var(--muted); }
.c-footer__links {
  display: flex;
  gap: 20px;
}
.c-footer__links a { font-size: .78rem; color: var(--muted); transition: color .2s; }
.c-footer__links a:hover { color: var(--blue); }

/* ============================================================
   MODALS
============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,32,87,0.85);
  backdrop-filter: blur(6px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

dialog.info-modal {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -48%) scale(0.97);
  width: min(680px, 94vw);
  max-height: 82vh;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,0.2), 0 0 60px rgba(26,60,255,0.05);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 501;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  margin: 0 !important;
}
dialog.info-modal[open] {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
dialog.info-modal::backdrop { 
  display: none !important;
  background: transparent !important;
}

.info-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
}
.info-modal__header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.info-modal__header h2 svg { color: var(--blue); flex-shrink: 0; }
.info-modal__close {
  width: 34px; height: 34px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.info-modal__close:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--border-2);
}

.info-modal__body {
  overflow-y: auto;
  padding: 28px 28px 32px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(26,60,255,0.2) transparent;
}
.info-modal__body::-webkit-scrollbar { width: 4px; }
.info-modal__body::-webkit-scrollbar-track { background: transparent; }
.info-modal__body::-webkit-scrollbar-thumb { background: rgba(26,60,255,0.2); border-radius: 4px; }

.info-modal__date {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.info-modal__body h3 {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 24px 0 10px;
}
.info-modal__body h3:first-of-type { margin-top: 0; }
.info-modal__body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 8px;
}
.info-modal__body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 8px;
}
.info-modal__body ul li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.info-modal__body ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 1rem;
  line-height: 1.5;
}