/* =====================================================
   Sample-page visual clone overrides.
   Loaded last so these rules win over main.css's cascade
   without needing !important on every declaration.
   Section 1: Header / Nav
===================================================== */

.navbar-area {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e5e7eb;
}

.navbar-area .nav-inner,
.navbar-area .navbar {
  min-height: 76px;
}

.navbar-nav .nav-item a {
  color: #4b5563;
  font-weight: 600;
  text-transform: none;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
  color: var(--primary-color, #004aad);
}

.nav-btn-clone {
  padding: 11px 19px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  gap: 9px !important;
  text-transform: none !important;
  box-shadow: none;
}

.nav-btn-clone:hover {
  box-shadow: none;
  transform: none;
}


/* Uniform 27px rhythm across the whole right-hand cluster: nav links,
   theme toggle, and the Get Started button all read as one row, like
   the sample's single .nav-links flex container. */

.navbar-nav .nav-item {
  margin-left: 27px;
}

.navbar-nav .nav-item:first-child {
  margin-left: 0;
}

.header-right {
  gap: 27px;
  margin-left: 27px;
}


/* Theme toggle switch */

.theme-switch {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-track {
  display: flex;
  align-items: center;
  width: 58px;
  height: 32px;
  padding: 3px;
  border-radius: 50px;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  transition: .3s ease;
}

.theme-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  color: #2563eb;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .15);
  transform: translateX(0);
  transition: .3s ease;
}

.theme-thumb svg {
  width: 14px;
  height: 14px;
}

.theme-thumb .sun-icon {
  display: none;
}

body.dark .theme-track {
  background: #172554;
  border-color: #1e3a8a;
}

body.dark .theme-thumb {
  transform: translateX(26px);
  background: #0f172a;
  color: #facc15;
}

body.dark .theme-thumb .moon-icon {
  display: none;
}

body.dark .theme-thumb .sun-icon {
  display: flex;
}


/* Dark mode: header */

body.dark .navbar-area {
  background: rgba(11, 18, 32, .92);
  border-bottom-color: #26344d;
}

body.dark .navbar-nav .nav-item a {
  color: #a8b3c7;
}

body.dark .navbar-nav .nav-item a:hover,
body.dark .navbar-nav .nav-item a.active {
  color: #38bdf8;
}

body.dark .header .login {
  color: #a8b3c7;
}

.logo-text-img {
  transition: filter .3s ease;
}

body.dark .logo-text-img {
  filter: brightness(0) invert(1);
}


/* =====================================================
   Design tokens (rest of the sample-page clone).
   Custom properties inherit down the DOM, so dark mode
   falls out of the cascade — write a rule once with
   var(--sc-*) and it re-themes itself under body.dark.
===================================================== */

:root {
  --sc-navy: #071633;
  --sc-blue: #004aad;
  --sc-blue-dark: #003a8c;
  --sc-cyan: #38bdf8;
  --sc-text: #172033;
  --sc-muted: #667085;
  --sc-white: #ffffff;
  --sc-bg: #f8fafc;
  --sc-card: #ffffff;
  --sc-border: #e5e7eb;
  --sc-light-blue: #eff6ff;
  --sc-shadow: 0 20px 60px rgba(7, 22, 51, .10);
  --sc-radius: 20px;
}

body.dark {
  --sc-navy: #f8fafc;
  --sc-text: #e5e7eb;
  --sc-muted: #94a3b8;
  --sc-white: #0b1220;
  --sc-bg: #0f172a;
  --sc-card: #111c30;
  --sc-border: #26344d;
  --sc-light-blue: #132a52;
  --sc-shadow: 0 20px 45px rgba(0, 74, 173, .25);
  background: #0b1220;
  color: #e5e7eb;
}


/* =====================================================
   Section 2: Stats bar (home page)
   Fixed navy in both themes — the sample never re-themes
   this bar under body.dark, so no --sc-* tokens here.
===================================================== */

.sc-stats {
  background: #071633;
  color: #fff;
  padding: 30px 0;
}

.sc-stat {
  border-right: 1px solid rgba(255, 255, 255, .12);
  padding: 15px 5px;
}

.sc-stat:last-child {
  border-right: none;
}

.sc-stat strong {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  display: block;
}

.sc-stat span {
  color: #aab7cc;
  font-size: 13px;
}

@media (max-width: 700px) {
  .sc-stat {
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 8px;
  }

  .sc-stat:nth-child(2) {
    border-right: none;
  }

  .sc-stat:nth-child(3),
  .sc-stat:nth-child(4) {
    border-bottom: none;
  }

  .sc-stat:nth-child(4) {
    border-right: none;
  }
}


/* =====================================================
   Section 3: Services grid (home page)
===================================================== */

.job-category-compact {
  background: var(--sc-white);
  padding: 95px 0;
}

.job-category-compact .section-title-label {
  color: var(--sc-blue);
  background: transparent;
  padding: 0;
}

.job-category-compact .section-title h2 {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.job-category-compact .section-title h2:before {
  background: var(--sc-blue);
}

.job-category-compact .section-title p {
  color: var(--sc-muted);
}

.job-category-compact .single-cat {
  background: var(--sc-card);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius);
  padding: 28px;
  text-align: left;
}

.job-category-compact .single-cat:hover {
  border-color: var(--primary-color);
  box-shadow: var(--sc-shadow);
}

.job-category-compact .single-cat .cat-icon-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 0 18px;
  border-radius: 15px;
  background: #004aad;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 74, 173, .28);
  transition: box-shadow .25s ease;
}

/* Reset the generic theme ".single-cat i" icon-box rule (main.css) so it
   doesn't paint its own 70px background box behind our icon badge. */
.job-category-compact .single-cat .cat-icon-emoji i {
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  border-radius: 0;
  color: inherit;
  font-size: inherit;
  transform: none;
}

.job-category-compact .single-cat:hover .cat-icon-emoji i {
  background: none;
  color: inherit;
  transform: none;
}

.job-category-compact .single-cat:hover .cat-icon-emoji {
  box-shadow: 0 10px 20px rgba(0, 74, 173, .35);
}


.job-category-compact .single-cat h4 {
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--sc-navy);
}

.job-category-compact .single-cat p {
  color: var(--sc-muted);
  padding-top: 0;
}

.job-category-compact .doc-badge {
  background: var(--sc-light-blue);
  color: var(--sc-blue);
}


/* =====================================================
   Section 4: How It Works (home page, new section)
===================================================== */

.sc-how {
  background: var(--sc-bg);
  padding: 95px 0;
}

.sc-how .section-title-label {
  color: var(--sc-blue);
  background: transparent;
  padding: 0;
}

.sc-how .section-title h2 {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.sc-how .section-title h2:before {
  background: var(--sc-blue);
}

.sc-how .section-title p {
  color: var(--sc-muted);
}

.sc-step-card {
  background: var(--sc-card);
  padding: 28px 23px;
  border-radius: 18px;
  border: 1px solid var(--sc-border);
  transition: .3s ease;
  height: 100%;
}

.sc-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sc-shadow);
}

.sc-step-number {
  color: var(--sc-blue);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 25px;
}

.sc-step-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--sc-navy);
}

.sc-step-card p {
  color: var(--sc-muted);
  font-size: 13px;
  margin: 0;
}


/* =====================================================
   Section 5: Why eNotarize (home page, new section)
===================================================== */

.sc-why {
  background: var(--sc-white);
  padding: 95px 0;
}

.sc-why .section-title {
  text-align: left;
  max-width: none;
  margin: 0 0 30px;
  padding: 0;
}

.sc-why .section-title h2:before {
  left: 0;
  margin-left: 0;
}

.sc-why .section-title-label {
  color: var(--sc-blue);
  background: transparent;
  padding: 0;
}

.sc-why .section-title h2 {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
  /* The shared .section-title h2 rule (main.css) clamps up to 46px —
     appropriate for a hero-style marketing headline, but this section
     is a page-body heading like "Browse All Categories" on Services,
     so it should match that 30px/800 treatment instead. */
  font-size: 30px;
}

.sc-why-visual {
  min-height: 420px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(0, 74, 173, .95), rgba(7, 22, 51, .98));
  padding: 35px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sc-why-shield {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  border-radius: 18px;
  font-size: 30px;
  margin-bottom: 30px;
}

.sc-why-visual h3 {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  max-width: 360px;
  color: #fff;
  margin: 0;
}

.sc-why-list {
  display: grid;
  gap: 25px;
}

.sc-why-item {
  display: flex;
  gap: 17px;
}

.sc-why-check {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--sc-light-blue);
  color: var(--sc-blue);
  border-radius: 11px;
  font-weight: 800;
}

.sc-why-item h3 {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--sc-navy);
}

.sc-why-item p {
  color: var(--sc-muted);
  font-size: 14px;
  margin: 0;
}


@media (max-width: 700px) {
  .job-category-compact,
  .sc-how,
  .sc-why {
    padding: 65px 0;
  }

  .sc-why-visual {
    min-height: 330px;
    padding: 28px;
  }
}


/* =====================================================
   Section 7: Customer Service (categories) page
   Section-level padding stays under the sitewide
   .enotary-page-section !important rule — only
   background/card treatment is cloned here.
===================================================== */

.job-category.enotary-page-section .cat-section-head h2 {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.job-category.enotary-page-section .cat-section-head p {
  color: var(--sc-muted);
}

.job-category.enotary-page-section .single-cat {
  background: var(--sc-card);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius);
  padding: 22px 24px;
  text-align: left;
}

.job-category.enotary-page-section .single-cat:hover {
  border-color: var(--primary-color);
  box-shadow: var(--sc-shadow);
}

.job-category.enotary-page-section .single-cat .cat-icon-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 0 18px;
  border-radius: 15px;
  background: #004aad;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 74, 173, .28);
  transition: box-shadow .25s ease;
}

/* Reset the generic theme ".single-cat i" icon-box rule (main.css) so it
   doesn't paint its own 70px background box behind our gradient badge. */
.job-category.enotary-page-section .single-cat .cat-icon-emoji i {
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  border-radius: 0;
  color: inherit;
  font-size: inherit;
  transform: none;
}

.job-category.enotary-page-section .single-cat:hover .cat-icon-emoji i {
  background: none;
  color: inherit;
  transform: none;
}

.job-category.enotary-page-section .single-cat:hover .cat-icon-emoji {
  box-shadow: 0 10px 20px rgba(0, 74, 173, .35);
}


.job-category.enotary-page-section .single-cat h3 {
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--sc-navy);
}

.job-category.enotary-page-section .single-cat p {
  color: var(--sc-muted);
}

.job-category.enotary-page-section .doc-badge {
  background: var(--sc-light-blue);
  color: var(--sc-blue);
}

.job-category.enotary-page-section .cat-cta {
  background: linear-gradient(120deg, #071633, #123d85);
  box-shadow: none;
}

.job-category.enotary-page-section .cat-cta h3 {
  font-family: "Manrope", sans-serif;
}

.job-category.enotary-page-section .btn-white {
  color: var(--sc-blue) !important;
}

.job-category.enotary-page-section .btn-outline-white:hover {
  border-color: var(--sc-cyan);
}


/* =====================================================
   Section 8: Hero (home page)
===================================================== */

.sc-hero {
  position: relative;
  overflow: hidden;
  padding: 85px 0 85px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 198, 255, .17), transparent 28%),
    radial-gradient(circle at 15% 60%, rgba(0, 74, 173, .10), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

body.dark .sc-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 74, 173, .22), transparent 28%),
    radial-gradient(circle at 15% 60%, rgba(0, 198, 255, .08), transparent 30%),
    linear-gradient(135deg, #0b1220 0%, #101d35 100%);
}

.sc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.sc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: var(--sc-card);
  border: 1px solid #dbeafe;
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

body.dark .sc-eyebrow {
  border-color: #263c61;
}

.sc-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.sc-hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: var(--sc-navy);
  margin-bottom: 25px;
}

.sc-hero-title span {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
}

.sc-hero-text {
  max-width: 600px;
  font-size: 18px;
  color: var(--sc-muted);
  margin-bottom: 32px;
}

.sc-hero-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.sc-trust-row {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sc-muted);
  font-size: 13px;
}

.sc-avatars {
  display: flex;
}

.sc-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--sc-white);
  margin-left: -7px;
  background: linear-gradient(135deg, #bfdbfe, #1d4ed8);
}

.sc-avatar:first-child {
  margin-left: 0;
}

.sc-hero-card {
  background: var(--sc-card);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--sc-shadow);
  border: 1px solid var(--sc-border);
}

.sc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.sc-card-title {
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  color: var(--sc-text);
}

.sc-secure {
  color: #15803d;
  background: #f0fdf4;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

body.dark .sc-secure {
  background: #0d2b1c;
  color: #4ade80;
}

.sc-document {
  border: 1px solid var(--sc-border);
  border-radius: 16px;
  padding: 22px;
  background: var(--sc-bg);
}

.sc-doc-head {
  height: 10px;
  width: 45%;
  background: #bfdbfe;
  border-radius: 10px;
  margin-bottom: 22px;
}

.sc-doc-line {
  height: 8px;
  border-radius: 10px;
  background: #dbe1e8;
  margin: 11px 0;
}

body.dark .sc-doc-line {
  background: var(--sc-border);
}

.sc-doc-line.sc-short {
  width: 60%;
}

.sc-doc-line.sc-medium {
  width: 78%;
}

.sc-signature {
  margin-top: 25px;
  padding-top: 17px;
  border-top: 1px dashed var(--sc-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-signature small {
  color: var(--sc-muted);
}

.sc-signature strong {
  color: var(--sc-navy);
}

.sc-stamp {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  display: grid;
  place-items: center;
  color: var(--primary-color);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  transform: rotate(-10deg);
}

@media (max-width: 1000px) {
  .sc-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sc-hero-card {
    max-width: 650px;
    width: 100%;
    margin: auto;
  }
}

@media (max-width: 700px) {
  .sc-hero {
    padding: 65px 0 65px;
  }

  .sc-hero-grid {
    gap: 42px;
  }

  .sc-eyebrow {
    font-size: 11px;
    padding: 6px 10px;
  }

  .sc-hero-title {
    font-size: clamp(39px, 11vw, 54px);
    letter-spacing: -2px;
  }

  .sc-hero-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .sc-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .sc-hero-buttons .enotary-btn-primary,
  .sc-hero-buttons .enotary-btn-secondary {
    width: 100%;
  }

  .sc-trust-row {
    margin-top: 25px;
    font-size: 12px;
  }

  .sc-hero-card {
    padding: 18px;
    border-radius: 20px;
  }

  .sc-card-title {
    font-size: 14px;
  }

  .sc-secure {
    font-size: 9px;
  }

  .sc-document {
    padding: 16px;
  }

  .sc-stamp {
    width: 60px;
    height: 60px;
    font-size: 8px;
  }
}


/* =====================================================
   Section 9a: Content pages — Contact, Privacy, Terms,
   Sign In, Sign Up, Forgot/Reset Password.
   .sc-content-page is a marker class added to each of
   these pages' own <section> tag — their shared base
   classes (.dash-section, .dash-panel, .enotary-form-control)
   are also used by the authenticated dashboard, so nothing
   here targets those base classes unscoped.
===================================================== */

.sc-content-page {
  background: var(--sc-white);
}

.sc-content-page .form-section-card {
  background: var(--sc-card);
  border-color: var(--sc-border);
}

.sc-content-page .form-section-title {
  border-bottom-color: var(--sc-border);
}

.sc-content-page .form-section-title i {
  background: var(--sc-light-blue);
  color: var(--sc-blue);
}

.sc-content-page .form-section-heading,
.sc-content-page .form-section-title h4 {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.sc-content-page .form-section-subtext,
.sc-content-page .auth-footer-text {
  color: var(--sc-muted);
}

.sc-content-page .auth-link,
.sc-content-page .auth-link-sm {
  color: var(--sc-blue);
}

.sc-content-page .enotary-form-control {
  background-color: var(--sc-bg);
  border-color: var(--sc-border);
  color: var(--sc-text);
}

.sc-content-page .enotary-form-control:hover,
.sc-content-page .enotary-form-control:focus {
  background-color: var(--sc-card);
}

.sc-content-page .enotary-form-group label {
  color: var(--sc-navy);
}

.sc-content-page .dash-panel {
  background: var(--sc-card);
  border-color: var(--sc-border);
}

.sc-content-page .dash-panel-header {
  border-bottom-color: var(--sc-border);
}

.sc-content-page .dash-panel-header-icon {
  background: var(--sc-blue);
}

.sc-content-page .dash-panel-header h5 {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.sc-content-page .legal-nav li a {
  color: var(--sc-muted);
}

.sc-content-page .legal-nav li a:hover,
.sc-content-page .legal-nav li a.active {
  background: var(--sc-light-blue);
  color: var(--sc-blue);
}

.sc-content-page .legal-content-text h2 {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
  border-bottom-color: var(--sc-border);
}

.sc-content-page .legal-content-text p,
.sc-content-page .legal-content-text ul li {
  color: var(--sc-muted);
}

.sc-content-page .last-updated-badge {
  background: var(--sc-light-blue);
  color: var(--sc-blue);
}

.sc-content-page .contact-info-card {
  background: var(--sc-card);
  box-shadow: var(--sc-shadow);
}

.sc-content-page .contact-info-icon {
  background: var(--sc-light-blue);
  color: var(--sc-blue);
}

.sc-content-page .contact-info-content h5 {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.sc-content-page .contact-info-content p,
.sc-content-page .contact-info-content a {
  color: var(--sc-muted);
}

.sc-content-page .contact-social-wrap {
  border-top-color: var(--sc-border);
}

.sc-content-page .contact-social-wrap h5 {
  color: var(--sc-navy);
}


/* =====================================================
   Section 9b: About page
===================================================== */

.about-badge {
  display: inline-block;
  background: var(--sc-light-blue);
  color: var(--sc-blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-heading {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.about-text {
  color: var(--sc-muted);
}

.about-why-box {
  background: linear-gradient(135deg, #071633 0%, #2563eb 100%);
}

.about-stats-section {
  background: var(--sc-bg);
}

.about-stat-number {
  font-family: "Manrope", sans-serif;
  color: var(--sc-blue);
}

.about-stat-label {
  color: var(--sc-muted);
}


/* =====================================================
   Section 9c: Pricing page
===================================================== */

.pricing-table .section-title h2 {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.pricing-table .section-title p {
  color: var(--sc-muted);
}

.pricing-table .single-table {
  background: var(--sc-card);
  border-color: var(--sc-border);
}

.pricing-table .single-table:hover,
.pricing-table .single-table.active {
  border-color: var(--sc-blue);
}

.pricing-table .single-table .table-head .title {
  color: var(--sc-muted);
}

.pricing-table .single-table .table-head .amount {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.pricing-table .single-table .table-list li {
  color: var(--sc-muted);
  border-bottom-color: var(--sc-border);
}

.sc-pricing-btn-clone {
  background: var(--sc-blue) !important;
}

.sc-pricing-btn-clone:hover {
  background: var(--sc-blue-dark) !important;
}


/* =====================================================
   Section 9d: Category (Browse Templates) page
===================================================== */

.list-view-section .sidebar-card,
.list-view-section .list-header {
  background: var(--sc-card);
  box-shadow: none;
  border: 1px solid var(--sc-border);
}

.list-view-section .sidebar-card h5 {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.list-view-section .type-filter li a,
.list-view-section .related-cat li a {
  color: var(--sc-muted);
}

.list-view-section .type-filter li a:hover,
.list-view-section .type-filter li a.active,
.list-view-section .related-cat li a:hover {
  color: var(--sc-blue);
}

.list-view-section .result-info {
  color: var(--sc-muted);
}

.list-view-section .list-header {
  flex-wrap: wrap;
  row-gap: 16px;
}

.list-view-section .filter-group {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  flex-wrap: wrap;
  padding-left: 22px;
  border-left: 1px solid var(--sc-border);
}

.list-view-section .sort-by {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.list-view-section .sort-by label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--sc-muted);
}

.list-view-section .sort-by label i {
  color: var(--sc-blue);
  font-size: 12px;
}

.list-view-section .sort-by select {
  min-width: 190px;
}

@media (max-width: 700px) {
  .list-view-section .filter-group {
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--sc-border);
    padding-top: 16px;
  }

  .list-view-section .sort-by {
    flex: 1 1 160px;
  }

  .list-view-section .sort-by select {
    min-width: 0;
    width: 100%;
  }
}

.list-view-section .template-card {
  background: var(--sc-card);
  border-color: var(--sc-border);
}

.list-view-section .template-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--sc-shadow);
}

.list-view-section .doc-icon {
  background: var(--sc-light-blue);
  color: var(--sc-blue);
}

.list-view-section .card-info h4 a {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.list-view-section .card-info p,
.list-view-section .meta-tags li {
  color: var(--sc-muted);
}

.list-view-section .price-sale {
  color: var(--sc-blue);
}

.list-view-section .card-actions {
  background: var(--sc-bg);
  border-top-color: var(--sc-border);
}

.list-view-section .price-mrp {
  color: var(--sc-muted);
}

.list-view-section .enotary-form-control {
  background-color: var(--sc-card);
  border-color: var(--sc-border);
  color: var(--sc-text);
}


/* =====================================================
   Section 9e: Template detail & Payment pages
===================================================== */

.vt-card {
  background: var(--sc-card);
  border-color: var(--sc-border);
}

.vt-card-header,
.vt-step-header {
  border-bottom-color: var(--sc-border);
  background: transparent;
}

.vt-step-header h3,
.vt-field-label {
  color: var(--sc-navy);
}

.vt-section .enotary-form-control {
  background-color: var(--sc-card);
  border-color: var(--sc-border);
  color: var(--sc-text);
}

/* Inline booking calendar only (.flatpickr-calendar.inline) — popup date
   pickers elsewhere (leave modal, DOB field) keep their own light surface,
   per the existing scoping in main.css. */
.flatpickr-calendar.inline .flatpickr-day {
  color: var(--sc-text);
}

.flatpickr-calendar.inline .flatpickr-day.prevMonthDay,
.flatpickr-calendar.inline .flatpickr-day.nextMonthDay,
.flatpickr-calendar.inline .flatpickr-day.notAllowed,
.flatpickr-calendar.inline .flatpickr-day.flatpickr-disabled {
  color: var(--sc-muted);
}

.flatpickr-calendar.inline .flatpickr-current-month,
.flatpickr-calendar.inline .flatpickr-weekday,
.flatpickr-calendar.inline .flatpickr-day.today {
  color: var(--sc-navy);
}

.flatpickr-calendar.inline .flatpickr-prev-month,
.flatpickr-calendar.inline .flatpickr-next-month {
  fill: var(--sc-navy);
}

/* flatpickr renders the inline-mode host element itself as a hidden-ish
   readonly text input sitting above the calendar grid. It's not meant to
   be read, but it still paints a plain white box in dark mode. */
#inlineCalendar.flatpickr-input {
  background: var(--sc-card);
  border: 1px solid var(--sc-border);
  color: transparent;
}

.vt-doc-icon {
  background: var(--sc-light-blue);
  color: var(--sc-blue);
}

.vt-title,
.vt-slots-date,
.vt-summary-title,
.vt-summary-total {
  font-family: "Manrope", sans-serif;
  color: var(--sc-navy);
}

.vt-subtitle,
.vt-desc,
.vt-summary-row,
.vt-secure-note,
.vt-trust-item,
.vt-hint {
  color: var(--sc-muted);
}

.vt-feature-item {
  color: var(--sc-navy);
}

.vt-step-badge {
  background: var(--sc-blue);
}

.vt-calendar-col {
  border-right-color: var(--sc-border);
}

.vt-slot-row {
  background: var(--sc-card);
  border-color: var(--sc-border);
  color: var(--sc-navy);
}

.vt-slot-row:hover:not(:disabled) {
  border-color: var(--sc-blue);
  background: var(--sc-light-blue);
}

.vt-slot-row.selected {
  background: var(--sc-blue) !important;
  border-color: var(--sc-blue) !important;
}

.vt-summary-divider {
  background: var(--sc-border);
}

.vt-price-sale {
  color: var(--sc-blue);
}

.booking-details-box {
  background: var(--sc-bg);
  border-color: var(--sc-border);
}
