/* Bima Insurance — static conversion */
:root {
  --brand: #092ea9;
  --brand-2: #2563eb;
  --brand-light: #e8efff;
  --ink: #0a1a3a;
  --muted: #6b7280;
  --success: #22c55e;
  --bg-soft: #f5f8ff;
  --brand-dark: #1d4ed8;
  --brand-50: #eff6ff;
  --brand-100: #dbeafe;
}

* {
  scroll-behavior: smooth
}

html,
body {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1f2937;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none
}

.text-brand {
  color: var(--brand) !important
}

.bg-brand {
  background: var(--brand) !important;
  color: #fff
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  border-radius: 10px;
  padding: .55rem 1.1rem;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-brand:hover {
  background: #0a37c9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(9, 46, 169, .6)
}

.btn-outline-brand {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
  border-radius: 10px;
  padding: .5rem 1.1rem;
  font-weight: 600;
  transition: .25s;
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff
}

/* Navbar */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid #eef1f6;
  box-shadow: 0 1px 8px rgba(15, 23, 42, .04)
}

.site-nav .navbar-brand img {
  height: 90px;
  object-fit: contain
}

.site-nav .nav-link {
  color: #4b5563;
  font-weight: 500;
  font-size: .92rem;
  position: relative;
  padding: .4rem .65rem
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: .65rem;
  right: .65rem;
  bottom: .1rem;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.site-nav .nav-link:hover {
  color: #000
}

.site-nav .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left
}

.fav-btn {
  border: 2px solid var(--brand);
  border-radius: 10px;
  padding: .4rem .8rem;
  color: var(--brand);
  font-weight: 600;
  background: #f2f6ff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .4rem
}

.fav-btn .badge-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: #fff;
  font-size: .7rem;
  border-radius: 999px;
  padding: 2px 6px;
  font-weight: 700
}

.signin-btn {
  background: #0a1a3a;
  color: #fff;
  border-radius: 10px;
  padding: .5rem 1rem;
  font-weight: 600;
  transition: .25s
}

.signin-btn:hover {
  color: #fff;
  opacity: .92;
  transform: translateY(-1px)
}

/* Hero */
.hero {
  padding: 70px 0 40px
}

.hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15
}

.hero h1 span {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero ul {
  list-style: none;
  padding: 0;
  color: var(--muted)
}

.hero ul li {
  margin-bottom: .4rem
}

.hero-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(9, 46, 169, .35);
  transform-style: preserve-3d;
}

/* Plan cards */
.plan-card {
  position: relative;
  height: 180px;
  border: 1px solid #eef1f6;
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform .35s ease, box-shadow .35s ease, border-color .3s ease;
  transform-style: preserve-3d;
}

.plan-card:hover {
  box-shadow: 0 20px 40px -18px rgba(9, 46, 169, .35);
  border-color: #dbe4ff
}

.plan-card img {
  width: 56px;
  margin-bottom: .75rem;
  user-select: none
}

.plan-card h3 {
  font-size: .9rem;
  font-weight: 600;
  color: #374151;
  margin: 0
}

.plan-card .badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--success);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
}

/* Promo banners */
.promo-card {
  position: relative;
  height: 230px;
  border-radius: 18px;
  color: #fff;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .25);
}

.promo-card img {
  position: absolute;
  right: 16px;
  top: 16px;
  height: 80px;
  width: 80px;
  object-fit: contain;
  opacity: .9
}

.promo-card .subtitle {
  opacity: .9;
  font-size: .85rem;
  margin-bottom: .4rem
}

.promo-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35
}

.promo-card .highlight {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: .25rem
}

.promo-card .btn-inner {
  margin-top: 1.25rem;
  background: #fff;
  color: var(--brand);
  border: 0;
  border-radius: 10px;
  padding: .5rem 1rem;
  font-weight: 600
}

.g1 {
  background: linear-gradient(135deg, #06b6d4, #14b8a6)
}

.g2 {
  background: linear-gradient(135deg, #34d399, #10b981)
}

.g3 {
  background: linear-gradient(135deg, #0ea5e9, #2563eb)
}

.g4 {
  background: linear-gradient(135deg, #f59e0b, #f97316)
}

/* Section headings */
.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827
}

.section-sub {
  color: var(--muted);
  max-width: 640px
}

/* Testimonial */
.testimonial {
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px -20px rgba(15, 23, 42, .15);
  height: 100%;
}

.testimonial .stars {
  color: #f59e0b
}

.testimonial .quote {
  color: #374151;
  font-style: italic
}

.testimonial .name {
  font-weight: 700;
  color: #111827;
  margin-top: .75rem
}

/* Partners */
.partner-strip {
  background: #fff;
  border-top: 1px solid #eef1f6;
  border-bottom: 1px solid #eef1f6;
  padding: 2rem 0
}

.partner-strip img {
  max-height: 44px;
  filter: grayscale(1);
  opacity: .75;
  transition: .3s
}

.partner-strip img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-4px)
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #d1d5db
}

.site-footer h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .9rem
}

.site-footer ul {
  list-style: none;
  padding: 0;
  font-size: .88rem
}

.site-footer li {
  margin-bottom: .45rem;
  cursor: pointer;
  transition: .25s
}

.site-footer li:hover {
  color: #fff
}

.site-footer .plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6b7280;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  margin-right: .4rem
}

.site-footer .divider {
  border-color: #374151
}

.site-footer .social a {
  color: #d1d5db;
  font-size: 1.2rem;
  margin-left: .6rem;
  transition: .25s
}

.site-footer .social a:hover {
  color: #fff;
  transform: translateY(-2px);
  display: inline-block
}

.site-footer .legal {
  font-size: .75rem;
  color: #9ca3af;
  line-height: 1.7
}

/* 3D tilt reset */
.tilt-el {
  transform-style: preserve-3d;
  will-change: transform
}

/* Utility */
.card-soft {
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 16px;
  box-shadow: 0 10px 30px -20px rgba(15, 23, 42, .12)
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 600
}

.step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #374151;
  font-weight: 700
}

.step-dot.active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(9, 46, 169, .6)
}

/* Forms */
.form-control,
.form-select {
  border-radius: 10px;
  padding: .7rem .9rem;
  border: 1.5px solid #e5e7eb
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(9, 46, 169, .12)
}

.form-check-input:checked {
  background-color: var(--brand);
  border-color: var(--brand)
}

/* Search page */
.filter-card {
  position: sticky;
  top: 88px
}

.result-card {
  border: 1px solid #eef1f6;
  border-radius: 16px;
  padding: 1.25rem;
  background: #fff;
  transition: .3s
}

.result-card:hover {
  box-shadow: 0 20px 40px -20px rgba(15, 23, 42, .18);
  transform: translateY(-3px)
}

/* Signup */
.signup-hero {
  background: linear-gradient(135deg, #0a1a3a, #1e40af);
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%
}

.signup-hero h2 {
  font-weight: 800;
  font-size: 2rem
}

.social-btn {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  font-weight: 600;
  color: #111827;
  transition: .25s;
  width: 100%
}

.social-btn:hover {
  border-color: var(--brand);
  transform: translateY(-2px)
}

.social-btn img {
  height: 22px;
  width: 22px;
  object-fit: contain
}

/* AOS overrides */
[data-aos] {
  will-change: transform, opacity
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .hero {
    padding: 32px 0 20px
  }

  .promo-card {
    height: auto;
    min-height: 200px
  }

  .section-title {
    font-size: 1.35rem
  }
}

/* ---------- Booking hero ---------- */
.booking-hero {
  background: linear-gradient(180deg, var(--brand-100) 0%, #ffffff 60%);
  padding: 3.5rem 0 3rem;
}

.booking-hero .price {
  font-size: 3rem;
  font-weight: 800;
  color: #16a34a;
  margin-top: .5rem;
}

.booking-hero .lead-text {
  color: #4b5563;
  margin-top: .25rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-icon.bg-a {
  background: #dcfce7;
}

.why-icon.bg-b {
  background: #fee2e2;
}

.why-icon.bg-c {
  background: #fef9c3;
}

.why-icon.bg-d {
  background: var(--brand-100);
}

/* ----------Traveller  Booking card ---------- */
.booking-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 10px 35px rgba(15, 23, 42, .08);
  padding: 1.75rem;
}

.dest-box {
  width: 100%;
  border: 1px solid #dbe3f0;
  border-radius: .9rem;
  padding: .5rem .75rem;
  background: var(--brand-50);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  cursor: text;
}

.dest-box:focus-within {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .25);
  border-color: var(--brand);
}

.dest-box input {
  flex: 1 1 120px;
  min-width: 120px;
  border: 0;
  background: transparent;
  outline: none;
  padding: .4rem 0;
}

.dest-chip {
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: .3rem .75rem;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.dest-chip button {
  background: none;
  border: 0;
  color: #fff;
  line-height: 1;
  padding: 0;
  font-size: .8rem;
}

.dest-dropdown {
  position: absolute;
  z-index: 1050;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .9rem;
  margin-top: .5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
  max-height: 200px;
  overflow-y: auto;
}

.dest-dropdown .hint {
  padding: .6rem 1rem;
  font-size: .85rem;
  color: #6b7280;
  border-bottom: 1px solid #f1f1f1;
}

.dest-dropdown .opt {
  padding: .6rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f6f6f6;
}

.dest-dropdown .opt:hover {
  background: var(--brand-50);
}

.dest-wrap {
  position: relative;
}

.popular-label {
  font-size: .85rem;
  color: #6b7280;
  margin: .9rem 0 .5rem;
}

.popular-btn {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .85rem;
  transition: .15s ease;
}

.popular-btn:hover {
  background: var(--brand-50);
}

.popular-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.traveller-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e2e8f0;
  border-radius: .9rem;
  padding: .9rem 1.1rem;
}

.traveller-row button {
  background: none;
  border: 0;
  color: var(--brand);
  font-weight: 600;
}

.explore-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: .9rem;
  border-radius: .9rem;
  font-weight: 600;
  text-decoration: none;
}

.explore-btn:hover {
  background: var(--brand-dark);
  color: #fff;
}

/* ---------- Traveller modal ---------- */
.tmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 2000;
  display: none;
}

.tmodal-overlay.show {
  display: flex;
}

.tmodal-panel {
  margin-left: auto;
  width: 100%;
  max-width: 640px;
  background: #fff;
  height: 100%;
  overflow-y: auto;
  position: relative;
  padding: 1.75rem;
  animation: slideIn .25s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.tmodal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: 0;
  line-height: 1;
}

.traveller-count-btn {
  border: 1px solid #d1d5db;
  border-radius: .9rem;
  padding: .5rem 1rem;
  background: #fff;
}

.traveller-count-btn.active {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 0 10px rgba(37, 99, 235, .35);
}

.age-select-wrap {
  position: relative;
}

.age-select-btn {
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #d1d5db;
  border-radius: .9rem;
  padding: .75rem 1rem;
  font-size: .9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.age-select-btn .placeholder {
  color: #9ca3af;
}

.age-dropdown-list {
  position: absolute;
  z-index: 1050;
  margin-top: .5rem;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .9rem;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
}

.age-dropdown-list .opt {
  padding: .5rem 1rem;
  font-size: .9rem;
  cursor: pointer;
}

.age-dropdown-list .opt:hover {
  background: var(--brand-50);
}

.medcond-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid #e5e7eb;
  border-radius: .9rem;
  padding: .75rem 1rem;
  background: #fff;
}

.medcond-btn.active {
  border-color: var(--brand);
  background: var(--brand-50);
  color: var(--brand);
}

.medcond-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
}

.medcond-btn.active .medcond-dot {
  border-color: var(--brand);
}

.medcond-dot span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  display: none;
}

.medcond-btn.active .medcond-dot span {
  display: block;
}

.traveller-check {
  display: flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid #e5e7eb;
  border-radius: .9rem;
  padding: .75rem 1rem;
  cursor: pointer;
}

.done-btn {
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: .9rem;
  border-radius: .9rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.done-btn:hover {
  background: var(--brand-dark);
}

.reset-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #fff;
  color: #4b5563;
  border: 1px solid #dbe3f0;
  padding: .7rem;
  border-radius: .9rem;
  font-weight: 600;
}

.reset-btn:hover {
  background: #f9fafb;
}

/* ----------Traveller  Booking card end ---------- */
/* ----------Traveller  Booking Plan Details ---------- */
.plans-hero {
  background: linear-gradient(180deg, var(--brand-100) 0%, #ffffff 55%);
  padding: 2.5rem 0 1rem;
}

/* filter chips */
.filter-btn {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-size: .9rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  transition: .15s ease;
}

.filter-btn:hover {
  background: #f9fafb;
}

.filter-btn.active {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}

/* plan card */
.plan-tile {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem;
  height: 100%;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.plan-tile:hover {
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.plan-tile.selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

.plan-logo {
  width: 48px;
  height: 48px;
  border-radius: .6rem;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand);
  background: var(--brand-50);
  flex-shrink: 0;
}

.plan-title {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 0;
}

.plan-subtitle {
  font-size: .75rem;
  color: #6b7280;
  margin-bottom: 0;
}

.plan-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  padding: .15rem 0;
}

.plan-feature .label {
  color: #374151;
}

.medical-pill {
  background: #dcfce7;
  color: #15803d;
  padding: .15rem .6rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}

.highlight-tag {
  color: #9333ea;
  font-size: .75rem;
  font-weight: 600;
  margin-left: .4rem;
}

.view-features-btn {
  background: none;
  border: 0;
  color: var(--brand);
  font-size: .85rem;
  font-weight: 600;
  padding: 0;
  margin-top: .4rem;
}

.extra-features {
  display: none;
  margin-top: .5rem;
  padding-top: .5rem;
  border-top: 1px dashed #e5e7eb;
}

.extra-features.show {
  display: block;
}

.extra-features .plan-feature .label {
  color: #6b7280;
}

.plan-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.1rem;
  padding-top: .9rem;
  border-top: 1px solid #f1f1f1;
}

.plan-price {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}

.premium-label {
  font-size: .75rem;
  color: #6b7280;
  margin-bottom: 0;
}

.proceed-btn {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: .65rem;
  padding: .55rem 1.1rem;
  font-weight: 600;
  font-size: .9rem;
}

.proceed-btn:hover {
  background: var(--brand-dark);
}

.plan-check {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  margin-top: .2rem;
}

/* compare bar */
#compareBar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  background: #111827;
  color: #fff;
  padding: .9rem 0;
  transform: translateY(100%);
  transition: transform .25s ease;
}

#compareBar.show {
  transform: translateY(0);
}

#compareBar .btn-clear {
  background: none;
  border: 1px solid #4b5563;
  color: #e5e7eb;
  border-radius: .5rem;
  padding: .4rem .9rem;
  font-size: .85rem;
}

.plans-hero {
  background: linear-gradient(180deg, var(--brand-100) 0%, #ffffff 55%);
  padding: 2.5rem 0 1rem;
}

.filter-btn {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-size: .9rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}

.filter-btn:hover {
  background: #f9fafb;
}

.filter-btn.active {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}

.plan-tile {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem;
  height: 100%;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.plan-tile:hover {
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.plan-tile.selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

.plan-logo {
  width: 52px;
  height: 52px;
  border-radius: .6rem;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: var(--brand);
  background: var(--brand-50);
  flex-shrink: 0;
}

.plan-title {
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 0;
}

.plan-subtitle {
  font-size: .78rem;
  color: #6b7280;
  margin-bottom: 0;
}

.plan-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  padding: .15rem 0;
}

.plan-feature .label {
  color: #374151;
}

.medical-pill {
  background: #dcfce7;
  color: #15803d;
  padding: .15rem .6rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}

.plan-check {
  width: 19px;
  height: 19px;
  accent-color: var(--brand);
  margin-top: .2rem;
  cursor: pointer;
}

.coverage-select {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e5e7eb;
}

.coverage-select.show {
  display: block;
}

.coverage-select label {
  font-size: .8rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: .4rem;
  display: block;
}

.coverage-select select {
  width: 100%;
  border: 1px solid #d7dce6;
  border-radius: .6rem;
  padding: .55rem .8rem;
  font-size: .88rem;
}

.coverage-select select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.coverage-price {
  font-size: .85rem;
  color: #15803d;
  font-weight: 700;
  margin-top: .5rem;
  display: none;
}

.coverage-price.show {
  display: block;
}

/* Care-only: Product Type -> Product Name cascade, shown before Coverage */
.product-fields {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e5e7eb;
}

.product-fields.show {
  display: block;
}

.product-fields .field-group {
  margin-bottom: .9rem;
}

.product-fields label {
  font-size: .8rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: .4rem;
  display: block;
}

.product-fields select {
  width: 100%;
  border: 1px solid #d7dce6;
  border-radius: .6rem;
  padding: .55rem .8rem;
  font-size: .88rem;
}

.product-fields select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.product-fields select:disabled {
  background: #f3f4f6;
  color: #9ca3af;
}

/* Sticky process bar */
#processBar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  background: #111827;
  color: #fff;
  padding: .9rem 0;
  transform: translateY(100%);
  transition: transform .25s ease;
}

#processBar.show {
  transform: translateY(0);
}

#processBar .selection-summary {
  font-size: .92rem;
}

#processBar .selection-summary strong {
  color: #93c5fd;
}

.process-btn {
  background: var(--brand);
  border: 0;
  color: #fff;
  border-radius: .65rem;
  padding: .6rem 1.4rem;
  font-weight: 600;
  font-size: .92rem;
}

.process-btn:hover {
  background: var(--brand-dark);
}

.process-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ----------Traveller Booking plan details ---------- */
/* ----------Traveller Booking plan from ---------- */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1rem 3rem;
}

.back-link {
  color: #374151;
  text-decoration: none;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.back-link:hover {
  color: var(--brand);
}

.main-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, .05);
}

.step-eyebrow {
  font-size: .85rem;
  color: #6b7280;
  margin-bottom: .15rem;
}

.step-heading {
  font-size: 1.55rem;
  font-weight: 700;
  color: #111827;
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.step-circle {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  border: 2px solid #d1d5db;
  color: #9ca3af;
  background: #fff;
  flex-shrink: 0;
}

.step-circle.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.step-circle.done {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.step-line {
  width: 26px;
  height: 2px;
  background: #d1d5db;
}

.step-line.done {
  background: var(--green);
}

/* Info banner */
.info-banner {
  background: var(--green-50);
  border: 1px solid #bbf0cf;
  border-radius: .8rem;
  padding: .85rem 1rem;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .87rem;
  color: #1f2937;
  margin: 1.1rem 0 1.4rem;
}

.info-banner i {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: .1rem;
}

.traveller-label {
  border-left: 3px solid var(--brand);
  padding-left: .7rem;
  font-weight: 600;
  font-size: .98rem;
  margin-bottom: 1rem;
}

/* Form controls */
.fld {
  border: 1px solid #d7dce6;
  border-radius: .7rem;
  padding: .75rem .9rem;
  font-size: .92rem;
  width: 100%;
  background: #fff;
}

.fld:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(47, 95, 227, .12);
}

.fld-labeled {
  position: relative;
}

.fld-labeled label {
  position: absolute;
  top: -8px;
  left: 12px;
  background: #fff;
  padding: 0 .35rem;
  font-size: .72rem;
  color: #8a92a3;
}

.gender-box {
  border: 1px solid #d7dce6;
  border-radius: .7rem;
  padding: .7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  font-size: .9rem;
  color: #374151;
  background: #fff;
}

.gender-box i {
  font-size: 1.2rem;
  color: #9ca3af;
}

.gender-box.active {
  border-color: var(--brand);
  background: var(--brand-50);
  color: var(--brand);
}

.gender-box.active i {
  color: var(--brand);
}

.form-check-label {
  font-size: .85rem;
  color: #4b5563;
}

.mobile-row {
  border: 1px solid #d7dce6;
  border-radius: .7rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.mobile-row select {
  border: 0;
  background: transparent;
  padding: .75rem .5rem .75rem .9rem;
  font-size: .9rem;
}

.mobile-row input {
  border: 0;
  flex: 1;
  padding: .75rem .5rem;
  font-size: .92rem;
  outline: none;
}

.mobile-row .edit-btn {
  border: 0;
  background: none;
  color: #9ca3af;
  padding: 0 .9rem;
}

.mobile-hint {
  font-size: .8rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .5rem;
}

.whatsapp-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin: 1.4rem 0 1.1rem;
  font-size: .9rem;
}

.toggle-switch {
  position: relative;
  width: 42px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  cursor: pointer;
  transition: .2s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}

.toggle-switch input:checked+.toggle-slider {
  background: var(--brand);
}

.toggle-switch input:checked+.toggle-slider::before {
  transform: translateX(18px);
}

.continue-btn {
  width: 100%;
  background: var(--brand);
  border: 0;
  color: #fff;
  padding: .85rem;
  border-radius: .8rem;
  font-weight: 600;
  font-size: 1rem;
}

.continue-btn:hover {
  background: var(--brand-dark);
}

.continue-btn:disabled {
  opacity: .55;
}

/* Medical history */
.choice-btn {
  flex: 1;
  border: 1px solid #d7dce6;
  border-radius: .8rem;
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #fff;
  font-size: .94rem;
  color: #374151;
}

.choice-btn.active {
  border-color: var(--brand);
  color: var(--brand);
}

.radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.choice-btn.active .radio-dot {
  border-color: var(--brand);
}

.radio-dot span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
  display: none;
}

.choice-btn.active .radio-dot span {
  display: block;
}

.additional-box {
  background: #f6f7fb;
  border-radius: .9rem;
  padding: 1.1rem 1.2rem;
  margin-top: 1.1rem;
}

.additional-box h6 {
  font-size: .78rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .6rem;
}

.disease-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .85rem;
  color: #374151;
}

.disease-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: .5rem;
}

.disease-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #9ca3af;
}

.yn-btn {
  border: 1px solid #d7dce6;
  background: #fff;
  border-radius: .7rem;
  padding: .55rem 1.6rem;
  font-size: .88rem;
  color: #374151;
}

.yn-btn.active {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}

/* Review & pay */
.review-card {
  border: 1px solid #eef0f4;
  border-radius: .9rem;
  padding: 1.2rem;
  margin-bottom: 1.1rem;
}

.review-heading {
  display: flex;
  align-items: center;
  justify-content: between;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.02rem;
  border-left: 3px solid var(--brand);
  padding-left: .7rem;
  margin-bottom: .9rem;
}

.plan-collapse-row {
  background: #f6f7fb;
  border-radius: .7rem;
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: .92rem;
}

.plan-detail-body {
  padding: 1rem .3rem .2rem;
}

.plan-logo-sm {
  width: 38px;
  height: 26px;
  border: 1px solid #e5e7eb;
  border-radius: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-50);
}

.review-sub-label {
  font-size: .72rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width:640px) {
  .trip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Summary sidebar */
.summary-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, .05);
}

.summary-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.trip-dd {
  border: 1px solid #e5e7eb;
  border-radius: .7rem;
  padding: .7rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b7280;
  font-size: .88rem;
  cursor: pointer;
  margin-bottom: 1.1rem;
}

.plan-row {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.plan-name {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 0;
}

.plan-sub {
  font-size: .8rem;
  color: #6b7280;
  margin-bottom: 0;
}

.summary-traveller {
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: #4b5563;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eef0f4;
  margin-top: 1rem;
  padding-top: 1rem;
  font-weight: 700;
  font-size: .95rem;
}

.declare-row {
  font-size: .82rem;
  color: #4b5563;
  display: flex;
  gap: .6rem;
  margin: 1.2rem 0;
}

.pay-btn {
  width: 100%;
  background: var(--brand);
  border: 0;
  color: #fff;
  padding: .85rem;
  border-radius: .8rem;
  font-weight: 600;
  font-size: 1rem;
}

.pay-btn:disabled {
  opacity: .5;
}

.pay-btn:not(:disabled):hover {
  background: var(--brand-dark);
}

/* Disclaimer accordion */
.disclaimer-bar {
  background: #fff;
  border-radius: 1.1rem;
  padding: .9rem 1.4rem;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: .92rem;
  color: #374151;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}

.disclaimer-body {
  display: none;
  padding: 0 1.4rem 1rem;
  font-size: .85rem;
  color: #6b7280;
}

.disclaimer-body.show {
  display: block;
}

.d-hidden {
  display: none !important;
}

/* ----------Traveller Booking plan from ---------- */
/* =========================================================
   Health Insurance — Multi-Step Form (NEW, appended)
   Reuses: .gender-box, .fld / .fld-labeled, .choice-btn,
   .yn-btn, .additional-box, .disease-list, .trip-grid,
   .continue-btn, .step-dot, .mobile-row, .chip
   ========================================================= */

.hif-shell {
  background: var(--bg-soft);
  min-height: 100vh;
  padding: 40px 0 70px;
}

.hif-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px -25px rgba(9, 46, 169, .18);
  padding: 2rem 2.25rem 2.25rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .hif-card {
    padding: 1.5rem 1.15rem 1.75rem;
    border-radius: 1rem;
  }
}

/* Progress */
.hif-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .6rem;
}

.hif-step-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}

.hif-progress-track {
  width: 100%;
  height: 6px;
  background: #eef1f6;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.hif-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 999px;
  transition: width .4s ease;
}

.hif-dots {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.hif-dots .step-dot {
  width: 28px;
  height: 28px;
  font-size: .78rem;
}

.hif-step-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .3rem;
}

.hif-step-sub {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 1.6rem;
}

/* Gender step */
.hif-gender-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  margin-bottom: 1.5rem;
}

.gender-box.hif-gender-card {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 1.4rem .75rem;
  gap: .55rem;
}

.gender-box.hif-gender-card i {
  font-size: 1.9rem;
}

@media (max-width: 480px) {
  .hif-gender-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
  }
  .gender-box.hif-gender-card {
    padding: 1rem .4rem;
  }
  .gender-box.hif-gender-card i {
    font-size: 1.5rem;
  }
}

/* Age step */
.hif-age-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hif-age-stepper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #d7dce6;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.hif-age-stepper:hover {
  background: var(--brand-50);
  border-color: var(--brand);
}

.hif-age-display {
  width: 110px;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  border: none;
  outline: none;
  background: transparent;
  /* -moz-appearance: textfield; */
}

.hif-age-display::-webkit-outer-spin-button,
.hif-age-display::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hif-age-chips {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}

.chip.age-chip {
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: .2s;
}

.chip.age-chip.active,
.chip.age-chip:hover {
  border-color: var(--brand);
  background: var(--brand-100);
}

/* Generic step field grid */
.hif-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1rem;
  margin-bottom: 1.5rem;
}

.hif-field-grid .hif-col-12 {
  grid-column: 1 / -1;
}

@media (max-width: 576px) {
  .hif-field-grid {
    grid-template-columns: 1fr;
  }
}

/* Medical history conditions */
.hif-condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}

@media (max-width: 576px) {
  .hif-condition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.condition-chip {
  border: 1.5px solid #d7dce6;
  border-radius: .7rem;
  padding: .55rem .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  color: #374151;
  cursor: pointer;
  background: #fff;
  transition: .2s;
}

.condition-chip input {
  accent-color: var(--brand);
}

.condition-chip:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-50);
  color: var(--brand);
  font-weight: 600;
}

/* Step footer buttons */
.hif-step-footer {
  display: flex;
  gap: .8rem;
  margin-top: 1.75rem;
}

.hif-step-footer .continue-btn {
  flex: 1;
}

.hif-back-btn {
  flex-shrink: 0;
  border: 1.5px solid #d7dce6;
  background: #fff;
  color: #374151;
  border-radius: .8rem;
  padding: 0 1.3rem;
  font-weight: 600;
  font-size: .95rem;
}

.hif-back-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.hif-back-btn.invisible-btn {
  visibility: hidden;
}

/* Validation */
.hif-card :invalid.is-invalid,
.hif-card select.is-invalid,
.hif-card .fld.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12) !important;
}

/* =========================================================
   Health Insurance — API-Driven Form v2 (NEW, appended)
   Member cards, JSON viewer, KYC upload, premium breakdown
   ========================================================= */

.ins-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .2rem;
}

.ins-section-sub {
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 1.2rem;
}

/* Member card */
.member-card {
  border: 1.5px solid #e3e7ef;
  border-radius: 1rem;
  padding: 1.1rem 1.2rem 1.3rem;
  margin-bottom: 1.1rem;
  background: #fbfcfe;
  position: relative;
  transition: .2s;
}

.member-card.self-card {
  border-color: var(--brand);
  background: var(--brand-50);
}

.member-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
}

.member-card-head .member-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .85rem;
  color: var(--brand);
}

.member-badge .badge-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
}

.remove-member-btn {
  border: none;
  background: transparent;
  color: #ef4444;
  font-size: .85rem;
  font-weight: 600;
}

.remove-member-btn:hover {
  text-decoration: underline;
}

.add-member-btn {
  width: 100%;
  border: 1.5px dashed var(--brand);
  background: #fff;
  color: var(--brand);
  border-radius: 1rem;
  padding: .85rem;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 1.5rem;
}

.add-member-btn:hover {
  background: var(--brand-50);
}

.relation-select[disabled] {
  background: #eef1f6;
  color: var(--muted);
}

/* Disease encode row */
.ins-condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-top: .6rem;
}

@media (max-width: 576px) {
  .ins-condition-grid { grid-template-columns: repeat(2, 1fr); }
}

/* JSON viewer */
.json-viewer-wrap {
  margin-bottom: 1.3rem;
}

.json-viewer-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: .35rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.json-viewer {
  background: #0f172a;
  color: #a5f3c9;
  border-radius: .8rem;
  padding: 1rem 1.1rem;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: .78rem;
  line-height: 1.55;
  max-height: 320px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.json-viewer.json-response { color: #93c5fd; }

.copy-json-btn {
  border: none;
  background: transparent;
  color: var(--brand);
  font-size: .75rem;
  font-weight: 600;
}

/* Premium breakdown card */
.premium-card {
  border-radius: 1.1rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.3rem;
}

.premium-card .premium-total {
  font-size: 2rem;
  font-weight: 800;
}

.premium-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding: .3rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.25);
}

.premium-row:last-child { border-bottom: none; }

/* Status badges */
.ins-status-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .75rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}

.ins-status-badge.pending { background: #fef3c7; color: #92400e; }
.ins-status-badge.success { background: #dcfce7; color: #166534; }
.ins-status-badge.loading { background: #e0e7ff; color: #3730a3; }

/* KYC upload dropzone */
.kyc-dropzone {
  border: 2px dashed #c9d1e0;
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  cursor: pointer;
  transition: .2s;
  margin-bottom: 1rem;
}

.kyc-dropzone:hover, .kyc-dropzone.dragover {
  border-color: var(--brand);
  background: var(--brand-50);
  color: var(--brand);
}

.kyc-dropzone i { font-size: 1.8rem; display: block; margin-bottom: .5rem; }

.kyc-file-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: .6rem;
  padding: .45rem .8rem;
  font-size: .82rem;
  font-weight: 600;
  margin: .25rem .3rem 0 0;
}

.kyc-file-chip .remove-file { cursor: pointer; color: #ef4444; }

/* Success screen */
.ins-success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin: 0 auto 1.2rem;
}

.policy-number-box {
  background: var(--bg-soft);
  border-radius: .9rem;
  padding: 1rem 1.2rem;
  text-align: center;
  margin-bottom: 1.3rem;
}

.policy-number-box .policy-no {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--ink);
}

/* Loading spinner inline */
.ins-spinner {
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: ins-spin .7s linear infinite;
}

@keyframes ins-spin { to { transform: rotate(360deg); } }
