/* Shared styling for the small no-DB/simple content includes:
   work-flow.php, list-1.php. Self-contained, same conventions as
   header-footer.css. (blog.php's styling was here too, but that file is
   on hold until a real blog system exists - see CLAUDE.md.) */

.ttw-workflow, .ttw-workflow *,
.ttw-citylinks, .ttw-citylinks * { box-sizing: border-box; }

.ttw-workflow, .ttw-citylinks {
  --ttw-blue: #1b75bc;
  --ttw-blue-deep: #125a94;
  --ttw-orange: #f7941e;
  --ttw-ink: #232a33;
  --ttw-muted: #64707e;
  --ttw-border: #e3e8ef;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.ttw-workflow a, .ttw-citylinks a { text-decoration: none; }
.ttw-workflow ul, .ttw-citylinks ul { list-style: none; margin: 0; padding: 0; }

.ttw-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--ttw-blue);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ttw-workflow-head { text-align: center; margin-bottom: 32px; }
.ttw-workflow-head h2 { color: var(--ttw-ink); font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin: 0; }

/* ---- work-flow.php ---- */
.ttw-workflow { padding: 56px 20px; background: #fff; }
.ttw-workflow-inner { max-width: 1160px; margin: 0 auto; }
.ttw-workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.ttw-workflow-card {
  background: #f7f9fc;
  border: 1px solid var(--ttw-border);
  border-radius: 14px;
  padding: 26px 16px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.ttw-workflow-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(35,42,51,0.08); background: #fff; }
.ttw-workflow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ttw-blue), var(--ttw-blue-deep));
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}
.ttw-workflow-card p { margin: 0; font-size: 14px; font-weight: 700; color: var(--ttw-ink); }

/* ---- list-1.php ---- */
.ttw-citylinks { padding: 48px 20px; background: #f7f9fc; }
.ttw-citylinks-inner { max-width: 1160px; margin: 0 auto; }
.ttw-citylinks-head { text-align: center; color: var(--ttw-ink); font-size: clamp(20px, 2.6vw, 26px); font-weight: 800; margin: 0 0 28px; }
.ttw-citylinks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ttw-citylinks-list {
  background: #fff;
  border: 1px solid var(--ttw-border);
  border-radius: 14px;
  padding: 10px 6px;
}
.ttw-citylinks-list li { border-bottom: 1px solid var(--ttw-border); }
.ttw-citylinks-list li:last-child { border-bottom: none; }
.ttw-citylinks-list a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--ttw-muted);
  font-weight: 500;
  transition: color 0.15s ease, background 0.15s ease;
  border-radius: 8px;
}
.ttw-citylinks-list a i { color: var(--ttw-orange); font-size: 12px; flex-shrink: 0; }
.ttw-citylinks-list a:hover { color: var(--ttw-blue); background: #eef4fb; }

@media (max-width: 820px) {
  .ttw-citylinks-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ttw-workflow, .ttw-citylinks { padding: 36px 16px; }
}
/* Callback request panel - assets/php/get-a-call.php. Self-contained,
   same brand family as header-footer.css but scoped under .ttc- so the
   two never collide even when both are on the same page. */

.ttc-callback, .ttc-callback * { box-sizing: border-box; }

.ttc-callback {
  --ttc-blue: #1b75bc;
  --ttc-blue-deep: #125a94;
  --ttc-orange: #f7941e;
  --ttc-orange-deep: #d9780a;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(120deg, var(--ttc-blue-deep), var(--ttc-blue) 60%, #2f8ecb);
  padding: 26px 20px;
  position: relative;
  overflow: hidden;
}
.ttc-callback a { text-decoration: none; }
.ttc-callback::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.ttc-callback::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.ttc-callback-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }

.ttc-callback-head { text-align: center; max-width: 720px; margin: 0 auto 20px; }
.ttc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ttc-callback-head h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; margin: 0 0 12px; }
.ttc-callback-head p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.65; margin: 0; }

.ttc-callback-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.ttc-callback-form {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(18,90,148,0.25);
}
.ttc-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.ttc-field {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #e3e8ef;
  border-radius: 12px;
  padding: 4px 16px;
  transition: border-color 0.15s ease;
}
.ttc-field:focus-within { border-color: var(--ttc-blue); }
.ttc-field i { color: var(--ttc-blue); font-size: 15px; flex-shrink: 0; }
.ttc-field input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 0;
  font-size: 14.5px;
  font-family: inherit;
  color: #232a33;
  background: transparent;
}
.ttc-field input::placeholder { color: #9aa5b1; }

.ttc-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--ttc-orange), var(--ttc-orange-deep));
  box-shadow: 0 10px 24px rgba(247,148,30,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ttc-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(247,148,30,0.42); }

.ttc-contact-cards { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.ttc-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(6px);
  transition: background 0.15s ease, transform 0.15s ease;
}
.ttc-contact-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.ttc-contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ttc-blue);
  font-size: 18px;
}
.ttc-contact-body { display: flex; flex-direction: column; gap: 3px; }
.ttc-contact-label { color: rgba(255,255,255,0.75); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.ttc-contact-value { color: #fff; font-size: 22px; font-weight: 700; }

@media (max-width: 760px) {
  .ttc-callback { padding: 28px 16px; }
  .ttc-callback-body { grid-template-columns: 1fr; }
}
