/* ==========================================================================
   Vegas Utilities — shared stylesheet
   ========================================================================== */

:root {
  --navy: #141d29;
  --navy-light: #1e2b3d;
  --navy-lighter: #2a3c53;
  --amber: #d97706;
  --amber-dark: #b45f04;
  --amber-light: #f59e0b;
  --ink: #1a2230;
  --slate: #4b5563;
  --slate-light: #6b7280;
  --bg: #f7f6f3;
  --card: #ffffff;
  --border: #e6e2d8;
  --success: #15803d;
  --success-bg: #ecfdf3;
  --radius: 8px;
  --shadow: 0 2px 10px rgba(20, 29, 41, 0.06);
  --shadow-lg: 0 12px 30px rgba(20, 29, 41, 0.14);
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.25;
  margin: 0 0 0.6em;
  color: var(--navy);
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

a { color: var(--amber-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap { width: 100%; overflow-x: hidden; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  letter-spacing: 0.2px;
}
.btn:hover { transform: translateY(-1px); }

.btn-amber {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.35);
}
.btn-amber:hover { background: var(--amber-dark); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-light); }

.btn-block { display: block; width: 100%; text-align: center; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 3px solid var(--amber);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
}
.logo:hover { text-decoration: none; }
.logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--amber-light), var(--amber-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--sans);
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}
.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--amber-light);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a {
  color: #e7e9ee;
  font-size: 0.95rem;
  font-weight: 600;
}
nav.main-nav a:hover { color: var(--amber-light); text-decoration: none; }
nav.main-nav a.active { color: var(--amber-light); }

.header-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--amber);
  min-width: 250px;
  padding: 8px 0;
  margin: 0;
  display: none;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  border-radius: 0 0 8px 8px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: flex; }
.dropdown-menu a {
  padding: 11px 20px !important;
  border-bottom: none !important;
  width: auto !important;
  font-size: 0.9rem !important;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(217,119,6,0.15); }

@media (max-width: 920px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 24px 20px;
    gap: 4px;
    display: none;
    border-bottom: 3px solid var(--amber);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: block; }
  .header-cta .btn-amber { display: none; }
  .header-cta { position: relative; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    display: flex;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 6px 16px;
    border-radius: 0;
  }
  .dropdown-menu a { padding: 8px 0 !important; border-bottom: none !important; color: #aab4c4 !important; font-size: 0.88rem !important; }
}

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, var(--navy-lighter) 100%);
  color: #fff;
  padding: 78px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 220px;
  background: repeating-linear-gradient(135deg, var(--amber) 0 14px, transparent 14px 28px);
  opacity: 0.06;
  transform: rotate(-4deg);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.eyebrow {
  display: inline-block;
  color: var(--amber-light);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 { color: #fff; max-width: 780px; }
.hero .lead {
  font-size: 1.18rem;
  color: #cfd6e0;
  max-width: 640px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-sm { padding: 48px 0 60px; }
.hero-sm h1 { font-size: 2.15rem; max-width: 820px; }
.hero-sm .lead { max-width: 760px; }

/* ---------- trust bar ---------- */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item svg { flex-shrink: 0; color: var(--amber); width: 28px; height: 28px; }
@media (max-width: 800px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-navy { background: var(--navy); color: #e7e9ee; }
.section-navy h2, .section-navy h3 { color: #fff; }

.section-head { max-width: 720px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow-dark {
  display: inline-block;
  color: var(--amber-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- grids / cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(217,119,6,0.12);
  color: var(--amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card .icon svg { width: 24px; height: 24px; }

.card-flush {
  padding: 0;
  overflow: hidden;
}
.card-flush .card-body { padding: 24px; }

/* ---------- steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px 24px;
}
.step .num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--amber);
  color: #fff;
  padding: 54px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto 26px; }
.cta-banner .btn-navy:hover { background: #0f1620; }

/* ---------- lists ---------- */
ul.check-list, ol.plain-list { padding-left: 0; list-style: none; margin: 0 0 1.2em; }
ul.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
}
ul.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.x-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
}
ul.x-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #b91c1c;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
ol.numbered { padding-left: 0; list-style: none; counter-reset: li; }
ol.numbered li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  counter-increment: li;
}
ol.numbered li::before {
  content: counter(li);
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 560px;
}
table.data-table th, table.data-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}
table.data-table th {
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
}
table.data-table tr:last-child td { border-bottom: none; }
table.data-table tr:nth-child(even) td { background: #faf9f6; }

/* ---------- callout / disclaimer boxes ---------- */
.callout {
  border-left: 4px solid var(--amber);
  background: #fff8ec;
  padding: 18px 22px;
  border-radius: 6px;
  margin: 28px 0;
}
.callout.info { border-left-color: #2563eb; background: #eff6ff; }
.callout p:last-child { margin-bottom: 0; }
.callout h4 { margin-bottom: 8px; }

/* ---------- breadcrumb ---------- */
.breadcrumb {
  font-size: 0.85rem;
  color: #cfd6e0;
  margin-bottom: 14px;
}
.breadcrumb a { color: #cfd6e0; text-decoration: underline; }
.breadcrumb a:hover { color: #fff; }

/* ---------- two-col layout with side rail ---------- */
.layout-with-rail {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 46px;
  align-items: start;
}
@media (max-width: 880px) { .layout-with-rail { grid-template-columns: 1fr; } }
.rail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: 96px;
}
.rail-card h3 { font-size: 1.1rem; }
.rail-card ul { list-style: none; padding: 0; margin: 0; }
.rail-card ul li { margin-bottom: 10px; }
.rail-card ul li a { font-weight: 600; color: var(--navy); }
.rail-card ul li a:hover { color: var(--amber-dark); }

/* ---------- prose ---------- */
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.3em; }

/* ---------- checkbox group (form use — no decorative ::before badge) ---------- */
ul.checkbox-group {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
}
ul.checkbox-group li { margin-bottom: 10px; }
ul.checkbox-group li:last-child { margin-bottom: 0; }
ul.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}
ul.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--amber);
  cursor: pointer;
}

/* ---------- forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.field .hint { font-weight: 400; color: var(--slate-light); font-size: 0.8rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7d2c6;
  border-radius: 6px;
  font-size: 0.96rem;
  font-family: var(--sans);
  color: var(--ink);
  background: #fdfdfc;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.15);
}
fieldset {
  border: none;
  padding: 0;
  margin: 0 0 26px;
}
legend {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 0;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
  width: 100%;
}
.form-fine { font-size: 0.8rem; color: var(--slate-light); margin-top: 16px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- confirmation page ---------- */
.confirm-box {
  background: var(--success-bg);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.confirm-box .check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #b9c2d0; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #b9c2d0; }
.site-footer a:hover { color: var(--amber-light); }
.footer-about .logo { margin-bottom: 14px; }
.footer-about p { font-size: 0.92rem; color: #9aa5b6; }

.disclaimer-bar {
  background: #0d141d;
  padding: 22px 0;
  font-size: 0.82rem;
  color: #8b95a5;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.disclaimer-bar strong { color: #c7cedb; }

.copyright-bar {
  padding: 18px 0;
  font-size: 0.8rem;
  color: #6b7383;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.copyright-bar a { color: #6b7383; }

/* ---------- FAQ accordion (native details/summary) ---------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 18px 34px 18px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 14px;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--amber-dark);
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-answer { padding: 0 0 20px; color: var(--slate); }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* ---------- service page specific ---------- */
.service-hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.related-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .related-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .related-services { grid-template-columns: 1fr; } }
.related-services a {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  font-size: 0.92rem;
}
.related-services a:hover { border-color: var(--amber); color: var(--amber-dark); text-decoration: none; }

/* ---------- misc utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.small { font-size: 0.85rem; color: var(--slate-light); }
.pill {
  display: inline-block;
  background: rgba(217,119,6,0.12);
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 0 8px 8px 0;
}
