/* ===== CAR TITLE TRANSFER PAGE ===== */

/* HERO */
.ctt-hero {
  background: linear-gradient(135deg, #0a3a8c 0%, #0059E1 60%, #1e78ff 100%);
  color: #fff;
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.ctt-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.ctt-hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.ctt-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.ctt-hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}
.ctt-hero h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 18px;
  font-family: 'Arial Black', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.ctt-hero h1 span {
  display: block;
  color: #ffd84a;
}
.ctt-hero p {
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 30px;
  opacity: 0.95;
}
.ctt-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0059E1;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.ctt-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.28);
  color: #0a3a8c;
  text-decoration: none;
}

/* QUICK STATS */
.ctt-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.ctt-stat {
  text-align: center;
}
.ctt-stat-num {
  font-size: 34px;
  font-weight: 900;
  color: #ffd84a;
  line-height: 1;
  margin-bottom: 4px;
}
.ctt-stat-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* SECTION COMMON */
.ctt-section {
  padding: 60px 0;
}
.ctt-section.alt {
  background: #f6f9ff;
}
.ctt-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ctt-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.ctt-section-head h2 {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.ctt-section-head p {
  font-size: 16px;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* STEP CARDS */
.ctt-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ctt-step-card {
  background: #fff;
  border: 1px solid #e5ecf8;
  border-radius: 14px;
  padding: 30px 22px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ctt-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 89, 225, 0.12);
  border-color: #c6d8f5;
}
.ctt-step-num {
  position: absolute;
  top: -18px;
  left: 22px;
  background: #0059E1;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(0, 89, 225, 0.35);
}
.ctt-step-icon {
  font-size: 34px;
  margin: 6px 0 12px;
  color: #0059E1;
}
.ctt-step-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.ctt-step-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

/* NOTARY CALLOUT */
.ctt-notary {
  background: linear-gradient(135deg, #fff8df 0%, #ffeab0 100%);
  border: 1px solid #f4d77a;
  border-radius: 16px;
  padding: 30px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.ctt-notary-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}
.ctt-notary-body h3 {
  margin: 0 0 8px;
  color: #7a5500;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}
.ctt-notary-body p {
  margin: 0 0 10px;
  color: #5c3f00;
  font-size: 15px;
  line-height: 1.5;
}
.ctt-notary-body ul {
  margin: 6px 0 0 18px;
  padding: 0;
  color: #5c3f00;
  font-size: 14px;
  line-height: 1.7;
}

/* STATE SELECTOR */
.ctt-state-tool {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 30px rgba(10, 58, 140, 0.08);
  border: 1px solid #eaf0fb;
}
.ctt-state-picker {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.ctt-state-picker label {
  font-weight: 800;
  color: #222;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ctt-state-select {
  flex: 1;
  max-width: 360px;
  min-width: 220px;
  padding: 13px 16px;
  border: 2px solid #d6e0f3;
  border-radius: 10px;
  font-size: 15px;
  color: #222;
  background: #fff url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%230059E1' d='M8 11L3 6h10z'/%3e%3c/svg%3e") no-repeat right 14px center/14px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ctt-state-select:focus {
  outline: none;
  border-color: #0059E1;
  box-shadow: 0 0 0 4px rgba(0, 89, 225, 0.12);
}

/* STATE RESULT */
.ctt-state-result {
  display: none;
  background: #f6f9ff;
  border-left: 4px solid #0059E1;
  border-radius: 8px;
  padding: 24px 26px;
}
.ctt-state-result.active {
  display: block;
  animation: ctt-fade 0.35s ease;
}
@keyframes ctt-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.ctt-state-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}
.ctt-state-header h3 {
  font-size: 22px;
  font-weight: 900;
  color: #0a3a8c;
  margin: 0;
}
.ctt-notary-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ctt-notary-badge.yes {
  background: #ffe5d1;
  color: #a84500;
}
.ctt-notary-badge.no {
  background: #d9f5dd;
  color: #1e7a2f;
}
.ctt-state-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 10px;
}
.ctt-fact {
  background: #fff;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e7edf8;
}
.ctt-fact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0059E1;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.ctt-fact-value {
  font-size: 14px;
  color: #222;
  line-height: 1.45;
}
.ctt-state-note {
  margin-top: 18px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* STATE QUICK GRID */
.ctt-state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
  margin-top: 28px;
}
.ctt-state-chip {
  background: #fff;
  border: 1px solid #e2ebf9;
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #0a3a8c;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}
.ctt-state-chip:hover {
  background: #0059E1;
  color: #fff;
  border-color: #0059E1;
  transform: translateY(-1px);
}
.ctt-state-chip.active {
  background: #0059E1;
  color: #fff;
  border-color: #0059E1;
}

/* CHECKLIST */
.ctt-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ctt-check-item {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5ecf8;
  border-radius: 10px;
  padding: 18px 20px;
  align-items: flex-start;
}
.ctt-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e9f5ec;
  color: #1e7a2f;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ctt-check-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
  color: #111;
  font-weight: 800;
}
.ctt-check-item p {
  margin: 0;
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
}

/* FAQ */
.ctt-faq {
  max-width: 880px;
  margin: 0 auto;
}
.ctt-faq-item {
  background: #fff;
  border: 1px solid #e5ecf8;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.ctt-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  color: #222;
  font-size: 15px;
  transition: background 0.15s;
}
.ctt-faq-q:hover {
  background: #f6f9ff;
}
.ctt-faq-q .ctt-faq-toggle {
  color: #0059E1;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}
.ctt-faq-item.open .ctt-faq-toggle {
  transform: rotate(45deg);
}
.ctt-faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.ctt-faq-item.open .ctt-faq-a {
  padding: 0 22px 20px;
  max-height: 400px;
}

/* FINAL CTA */
.ctt-final-cta {
  background: linear-gradient(135deg, #0a3a8c 0%, #0059E1 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.ctt-final-cta h2 {
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.ctt-final-cta p {
  font-size: 16px;
  margin: 0 auto 26px;
  max-width: 620px;
  opacity: 0.92;
}
.ctt-final-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.ctt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  font-size: 14.5px;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ctt-btn-primary {
  background: #ffd84a;
  color: #0a3a8c;
}
.ctt-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 216, 74, 0.35);
  color: #0a3a8c;
  text-decoration: none;
}
.ctt-btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.ctt-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ctt-hero { padding: 50px 0 60px; }
  .ctt-hero h1 { font-size: 34px; }
  .ctt-hero p { font-size: 15px; }
  .ctt-section { padding: 44px 0; }
  .ctt-section-head h2 { font-size: 24px; }
  .ctt-steps { grid-template-columns: repeat(2, 1fr); }
  .ctt-checklist { grid-template-columns: 1fr; }
  .ctt-state-facts { grid-template-columns: 1fr; }
  .ctt-stats { gap: 24px; }
  .ctt-stat-num { font-size: 26px; }
  .ctt-final-cta h2 { font-size: 24px; }
}
@media (max-width: 520px) {
  .ctt-steps { grid-template-columns: 1fr; }
  .ctt-notary { flex-direction: column; gap: 12px; padding: 22px; }
  .ctt-state-grid { grid-template-columns: repeat(auto-fill, minmax(70px, 1fr)); }
  .ctt-state-tool { padding: 20px; }
}
