/* =========================
   Base
========================= */
:root{
  --navy:#0a2540;
  --navy2:#1b3b6f;
  --gold:#f4c542;
  --text:#0a2540;
  --muted:#6b7280;
  --card:#f4f6f8;
  --border:rgba(10,37,64,.15);
  --shadow:0 6px 18px rgba(0,0,0,.08);
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:Arial, sans-serif;
  background:#fff;
  color:var(--text);
}

/* =========================
   Header / Nav
========================= */
header{
  background:var(--navy);
  color:#fff;
  padding:14px 16px;
}

.brand-row{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.logo-link{ display:flex; align-items:center; text-decoration:none; }
.logo{ height:44px; width:auto; }

.brand-text h1{ margin:0; font-size:24px; letter-spacing:.3px; }
.brand-text p{ margin:4px 0 0; opacity:.9; font-size:13px; }

.top-nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.top-nav a{
  color:var(--gold);
  text-decoration:none;
  font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
}

.top-nav a:hover{ border-color:rgba(244,197,66,.55); }
.top-nav a.active{
  background:rgba(244,197,66,.15);
  border-color:rgba(244,197,66,.8);
}

/* =========================
   Hero (Home + Immigration)
========================= */
.hero{
  padding:74px 16px;
  text-align:center;
  background:linear-gradient(to right, var(--navy), var(--navy2));
  color:#fff;
}

.hero-inner{
  max-width:900px;
  margin:0 auto;
}

.hero h2{
  font-size:40px;
  margin:0 0 10px;
}

.hero p{
  margin:0 auto 16px;
  max-width:720px;
  opacity:.95;
}

.hero-sub{ color:#e5e7eb; }

.btn-row{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}

.btn-primary,
.btn-outline{
  display:inline-block;
  padding:12px 18px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
  transition:transform .08s ease, opacity .15s ease;
}

.btn-primary{
  background:var(--gold);
  color:#111;
}

.btn-outline{
  background:transparent;
  color:var(--gold);
  border:2px solid var(--gold);
}

.btn-primary:hover,
.btn-outline:hover{
  transform:translateY(-1px);
  opacity:.96;
}

.small-note{
  margin-top:14px;
  font-size:13px;
  color:#e5e7eb;
  opacity:.95;
}

/* =========================
   Sections / Cards
========================= */
section{ padding:54px 16px; text-align:center; }

.page-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:36px 16px 60px;
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:18px;
  margin:18px auto;
  max-width:900px;
  text-align:left;
}

.card h3{
  margin:0 0 10px;
  text-align:left;
}

.notice{
  background:#f8f8f8;
  border-left:5px solid #cc0000;
}

.price-line{
  font-size:20px;
  margin:10px 0;
}

.pay-box{
  background:#fff;
  border:1px dashed rgba(10,37,64,.25);
  border-radius:12px;
  padding:14px;
  margin:12px 0;
}

/* Fix bullet dots: */
.checklist{
  list-style:disc;
  padding-left:22px;
  margin:10px 0 0;
}
.checklist li{
  margin:8px 0;
  color:var(--text);
}

/* Home services grid */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
  max-width:1100px;
  margin:0 auto;
}
.service-card{
  background:var(--card);
  border-radius:12px;
  padding:16px;
  text-align:center;
  font-weight:800;
  box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

/* =========================
   Footer
========================= */
footer{
  background:var(--navy);
  color:#fff;
  text-align:center;
  padding:14px;
}

/* =========================
   Floating buttons
========================= */
.floating-call{
  position:fixed;
  bottom:20px;
  right:20px;
  background:var(--gold);
  color:#111;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  z-index:9999;
}
.floating-call:hover{ background:#ffd700; }

/* =========================
   Modal (Non-attorney disclosure)
========================= */
.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:10000;
}
.modal{
  width:min(900px, 100%);
  background:#fff;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  overflow:hidden;
}
.modal-header{
  background:var(--navy);
  color:#fff;
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.modal-header h4{ margin:0; font-size:16px; }
.modal-close{
  background:transparent;
  border:1px solid rgba(255,255,255,.4);
  color:#fff;
  border-radius:10px;
  padding:6px 10px;
  font-weight:800;
  cursor:pointer;
}
.modal-body{
  padding:16px;
  color:#111;
  line-height:1.45;
}
.modal-actions{
  padding:0 16px 16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.modal-actions .btn-primary{ border:none; cursor:pointer; }

/* =========================
   Mobile
========================= */
@media (max-width: 600px) {
  .cta-call,
  .cta-book {
    display:block;
    margin-bottom:10px;
    margin-left:0 !important;
    width:100%;
    text-align:center;
  }
}
.tax-checklist {
  max-width: 420px;
  margin: 20px auto 0;
  background: #f8f9fb;
  border-left: 4px solid gold;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: left;
}

.tax-checklist ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.tax-checklist li {
  margin: 6px 0;
  list-style: none;
}
/* Refund Timeline Section */
.refund-timeline {
  background: #f8fafc;
  padding: 50px 20px;
}

.refund-container {
  max-width: 1000px;
  margin: 0 auto;
}

.refund-timeline h2 {
  text-align: center;
  color: #0b2a5b;
  margin-bottom: 10px;
}

.refund-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #333;
}

.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.timeline-step {
  flex: 1 1 220px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  position: relative;
}

.timeline-step h3 {
  margin-top: 10px;
  margin-bottom: 8px;
  color: #0b2a5b;
  font-size: 1.05rem;
}

.timeline-step p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

.step-icon {
  font-size: 28px;
}

.step-time {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
}

.refund-note {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #555;
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .timeline-steps {
    flex-direction: column;
  }

  .timeline-step {
    flex: 1 1 100%;
  }
}
