/* ============================================
   Portal Bituach 2025 — Modern Design System
   Bootstrap 5 RTL + Custom Overrides
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --pb-primary: #0d6efd;
  --pb-primary-dark: #0a58ca;
  --pb-secondary: #1a3a5c;
  --pb-accent: #ff6b00;
  --pb-accent-hover: #e55f00;
  --pb-success: #198754;
  --pb-light: #f8f9fa;
  --pb-dark: #212529;
  --pb-gray-100: #f8f9fa;
  --pb-gray-200: #e9ecef;
  --pb-gray-300: #dee2e6;
  --pb-gray-500: #6c757d;
  --pb-gray-700: #495057;
  --pb-white: #ffffff;
  --pb-body-bg: #f5f7fa;
  --pb-card-shadow: 0 2px 12px rgba(0,0,0,0.08);
  --pb-card-shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --pb-radius: 12px;
  --pb-radius-sm: 8px;
  --pb-radius-lg: 16px;
  --pb-transition: all 0.3s ease;
  --pb-font-family: 'Heebo', Arial, sans-serif;
  --pb-trust-green: #28a745;
}

/* ---------- Global Styles ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--pb-font-family);
  background-color: var(--pb-body-bg);
  color: var(--pb-dark);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pb-font-family);
  font-weight: 700;
  color: var(--pb-secondary);
}

h1 { font-size: 2.2rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }

a {
  color: var(--pb-primary);
  text-decoration: none;
  transition: var(--pb-transition);
}
a:hover {
  color: var(--pb-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Top Navbar ---------- */
.pb-navbar {
  background: var(--pb-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1040;
}

.pb-navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--pb-secondary);
}

.pb-navbar .navbar-brand span {
  color: var(--pb-primary);
}

.pb-navbar .nav-link {
  color: var(--pb-gray-700);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--pb-radius-sm);
  transition: var(--pb-transition);
}

.pb-navbar .nav-link:hover,
.pb-navbar .nav-link.active {
  color: var(--pb-primary);
  background: rgba(13, 110, 253, 0.06);
}

.pb-navbar .dropdown-menu {
  border: none;
  box-shadow: var(--pb-card-shadow);
  border-radius: var(--pb-radius);
  padding: 0.5rem;
}

.pb-navbar .dropdown-item {
  border-radius: var(--pb-radius-sm);
  padding: 0.5rem 1rem;
}

.pb-navbar .dropdown-item:hover {
  background: rgba(13, 110, 253, 0.06);
  color: var(--pb-primary);
}

/* ---------- Trust Bar ---------- */
.pb-trust-bar {
  background: linear-gradient(135deg, var(--pb-secondary) 0%, #0d4a8c 100%);
  color: var(--pb-white);
  padding: 0.6rem 0;
  font-size: 0.85rem;
}

.pb-trust-bar .trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
}

.pb-trust-bar .trust-item i {
  color: var(--pb-accent);
  font-size: 1rem;
}

/* ---------- Breadcrumb ---------- */
.pb-breadcrumb {
  background: transparent;
  padding: 1rem 0 0.5rem;
  margin: 0;
}

.pb-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.pb-breadcrumb .breadcrumb-item a {
  color: var(--pb-gray-500);
}

.pb-breadcrumb .breadcrumb-item.active {
  color: var(--pb-primary);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\00ab" !important;
  color: var(--pb-gray-300);
}

/* ---------- Hero Section ---------- */
.pb-hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 50%, #f5f0ff 100%);
  border-radius: var(--pb-radius-lg);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.pb-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13,110,253,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.pb-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pb-secondary);
  margin-bottom: 1rem;
}

.pb-hero .lead {
  font-size: 1.15rem;
  color: var(--pb-gray-700);
  line-height: 1.8;
}

.pb-hero-image img {
  border-radius: var(--pb-radius-lg);
  box-shadow: var(--pb-card-shadow);
  width: 100%;
  object-fit: cover;
}

/* ---------- CTA Buttons ---------- */
.btn-pb-primary {
  background: var(--pb-accent);
  border: none;
  color: var(--pb-white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: var(--pb-transition);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-pb-primary:hover {
  background: var(--pb-accent-hover);
  color: var(--pb-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-pb-secondary {
  background: var(--pb-primary);
  border: none;
  color: var(--pb-white);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: var(--pb-transition);
}

.btn-pb-secondary:hover {
  background: var(--pb-primary-dark);
  color: var(--pb-white);
  transform: translateY(-1px);
}

.btn-pb-outline {
  background: transparent;
  border: 2px solid var(--pb-primary);
  color: var(--pb-primary);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: var(--pb-transition);
}

.btn-pb-outline:hover {
  background: var(--pb-primary);
  color: var(--pb-white);
}

/* ---------- Insurance Category Cards ---------- */
.pb-category-card {
  background: var(--pb-white);
  border-radius: var(--pb-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--pb-card-shadow);
  transition: var(--pb-transition);
  height: 100%;
  border: 1px solid var(--pb-gray-200);
}

.pb-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--pb-card-shadow-hover);
  border-color: var(--pb-primary);
}

.pb-category-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,110,253,0.1), rgba(13,110,253,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--pb-primary);
}

.pb-category-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pb-category-card .card-link {
  color: var(--pb-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.pb-category-card .card-link:hover {
  color: var(--pb-accent);
}

/* ---------- How It Works Section ---------- */
.pb-how-it-works {
  background: var(--pb-white);
  border-radius: var(--pb-radius-lg);
  padding: 3rem 2rem;
  margin: 2rem 0;
}

.pb-step {
  text-align: center;
  padding: 1rem;
}

.pb-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pb-primary);
  color: var(--pb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

.pb-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pb-step p {
  color: var(--pb-gray-500);
  font-size: 0.9rem;
}

/* ---------- Stats / Social Proof ---------- */
.pb-stats {
  background: linear-gradient(135deg, var(--pb-secondary) 0%, #0d4a8c 100%);
  border-radius: var(--pb-radius-lg);
  padding: 2.5rem 2rem;
  margin: 2rem 0;
  color: var(--pb-white);
}

.pb-stat-item {
  text-align: center;
  padding: 1rem;
}

.pb-stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pb-accent);
  display: block;
}

.pb-stat-item .stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ---------- FAQ Accordion ---------- */
.pb-faq {
  margin: 2rem 0;
}

.pb-faq .accordion-item {
  border: 1px solid var(--pb-gray-200);
  border-radius: var(--pb-radius) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.pb-faq .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: var(--pb-secondary);
  background: var(--pb-white);
  padding: 1rem 1.5rem;
}

.pb-faq .accordion-button:not(.collapsed) {
  background: rgba(13, 110, 253, 0.04);
  color: var(--pb-primary);
  box-shadow: none;
}

.pb-faq .accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--pb-gray-700);
  line-height: 1.8;
}

/* ---------- Content Area ---------- */
.pb-content-area {
  background: var(--pb-white);
  border-radius: var(--pb-radius);
  padding: 2rem;
  box-shadow: var(--pb-card-shadow);
  margin-bottom: 2rem;
}

.pb-content-area h1 {
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--pb-primary);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.pb-content-area h2 {
  margin-top: 1.5rem;
  color: var(--pb-secondary);
}

.pb-content-area h3 {
  margin-top: 1.2rem;
  color: var(--pb-gray-700);
}

.pb-content-area p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ---------- Sidebar ---------- */
.pb-sidebar .card {
  border: none;
  border-radius: var(--pb-radius);
  box-shadow: var(--pb-card-shadow);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.pb-sidebar .card-header {
  background: var(--pb-secondary);
  color: var(--pb-white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.8rem 1.2rem;
  border: none;
}

.pb-sidebar .list-group-item {
  border: none;
  border-bottom: 1px solid var(--pb-gray-200);
  padding: 0.6rem 1.2rem;
  transition: var(--pb-transition);
}

.pb-sidebar .list-group-item:last-child {
  border-bottom: none;
}

.pb-sidebar .list-group-item a {
  color: var(--pb-gray-700);
  display: block;
}

.pb-sidebar .list-group-item:hover {
  background: rgba(13, 110, 253, 0.04);
}

.pb-sidebar .list-group-item:hover a,
.pb-sidebar .list-group-item a.current {
  color: var(--pb-primary);
  font-weight: 600;
}

/* Nested sub-items in sidebar */
.pb-sidebar .sub-menu {
  padding-right: 1rem;
  list-style: none;
  margin: 0;
}

.pb-sidebar .sub-menu li {
  padding: 0.3rem 0;
}

.pb-sidebar .sub-menu li a {
  font-size: 0.9rem;
}

.pb-sidebar .contact-card {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
}

.pb-sidebar .contact-card .card-body {
  padding: 1.5rem;
}

.pb-sidebar .contact-card a {
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- Inline CTA Box ---------- */
.pb-cta-box {
  background: linear-gradient(135deg, #fff7f0, #fff0e6);
  border: 2px solid var(--pb-accent);
  border-radius: var(--pb-radius);
  padding: 1.5rem 2rem;
  text-align: center;
  margin: 2rem 0;
}

.pb-cta-box h3 {
  color: var(--pb-accent);
  font-weight: 700;
}

.pb-cta-box p {
  color: var(--pb-gray-700);
  margin-bottom: 1rem;
}

/* ---------- Footer ---------- */
.pb-footer {
  background: var(--pb-secondary);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.pb-footer h5 {
  color: var(--pb-white);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.pb-footer a {
  color: rgba(255,255,255,0.7);
  transition: var(--pb-transition);
}

.pb-footer a:hover {
  color: var(--pb-white);
}

.pb-footer ul {
  list-style: none;
  padding: 0;
}

.pb-footer ul li {
  margin-bottom: 0.5rem;
}

.pb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ---------- Search Box ---------- */
.pb-search-box {
  position: relative;
}

.pb-search-box input {
  border-radius: 50px;
  border: 2px solid var(--pb-gray-300);
  padding: 0.6rem 1.2rem;
  padding-left: 2.8rem;
  width: 100%;
  transition: var(--pb-transition);
  font-size: 0.95rem;
}

.pb-search-box input:focus {
  border-color: var(--pb-primary);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
  outline: none;
}

.pb-search-box::after {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pb-gray-500);
}

/* ---------- Cookie Banner ---------- */
.pb-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pb-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 1rem 0;
  z-index: 9999;
  text-align: center;
  font-size: 0.9rem;
}

.pb-cookie-banner a {
  color: var(--pb-primary);
  font-weight: 600;
}

.pb-cookie-banner .btn-close-cookie {
  background: var(--pb-primary);
  color: var(--pb-white);
  border: none;
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  margin-right: 1rem;
  cursor: pointer;
}

/* ---------- Sticky Mobile CTA ---------- */
.pb-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1035;
  background: var(--pb-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 0.5rem;
}

.pb-mobile-cta .btn {
  flex: 1;
  border-radius: 50px;
  padding: 0.7rem;
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .pb-mobile-cta {
    display: flex;
    gap: 0.5rem;
  }
  body {
    padding-bottom: 70px;
  }
  .pb-hero h1 {
    font-size: 1.8rem;
  }
  .pb-hero {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .pb-hero h1 {
    font-size: 1.5rem;
  }
  .pb-stat-item .stat-number {
    font-size: 2rem;
  }
  .pb-content-area {
    padding: 1.2rem;
  }
  .pb-trust-bar .trust-item {
    font-size: 0.78rem;
  }
}

/* ---------- Accessibility Overrides ---------- */
.side-effects {
  position: fixed;
  left: 0;
  top: 30%;
  z-index: 1050;
  background: var(--pb-white);
  border-radius: 0 var(--pb-radius) var(--pb-radius) 0;
  box-shadow: var(--pb-card-shadow);
  padding: 0.5rem;
  transform: translateX(-100%);
  transition: var(--pb-transition);
}

.side-effects.open {
  transform: translateX(0);
}

.side-effects > div:first-child {
  display: none;
}

.side-effects .iocn {
  position: absolute;
  right: -40px;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--pb-primary);
  color: var(--pb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 var(--pb-radius-sm) var(--pb-radius-sm) 0;
  cursor: pointer;
}

.side-effects .iocn::before {
  content: "\f193";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.1rem;
}

.side-effects ul.access {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-effects ul.access li {
  margin-bottom: 0.3rem;
}

.side-effects ul.access li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--pb-radius-sm);
  font-size: 0.85rem;
  color: var(--pb-gray-700);
  cursor: pointer;
}

.side-effects ul.access li a:hover,
.side-effects ul.access li a.active {
  background: rgba(13, 110, 253, 0.08);
  color: var(--pb-primary);
}

/* ---------- Accessibility Modes ---------- */
body.grayscale {
  filter: grayscale(100%);
}

body.contrast {
  filter: contrast(200%);
}

body.inverted {
  filter: invert(100%);
}

body.inverted img {
  filter: invert(100%);
}

body.readable-font * {
  font-family: 'Open Sans', Arial, sans-serif !important;
  letter-spacing: 0.03em;
}

body.links-underline a {
  text-decoration: underline !important;
}

body.light-background {
  background: #fff !important;
}

body.light-background .pb-content-area,
body.light-background .pb-category-card,
body.light-background .pb-how-it-works {
  background: #fff !important;
  box-shadow: 0 0 0 2px #000 !important;
}

/* ---------- Section Titles ---------- */
.pb-section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.pb-section-title h2 {
  font-weight: 800;
  color: var(--pb-secondary);
  margin-bottom: 0.5rem;
}

.pb-section-title p {
  color: var(--pb-gray-500);
  font-size: 1.05rem;
}

/* ---------- Popular Categories Grid ---------- */
.pb-popular-grid .card {
  border: none;
  border-radius: var(--pb-radius);
  overflow: hidden;
  box-shadow: var(--pb-card-shadow);
  transition: var(--pb-transition);
  height: 100%;
}

.pb-popular-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--pb-card-shadow-hover);
}

.pb-popular-grid .card img {
  height: 200px;
  object-fit: cover;
}

.pb-popular-grid .card-body {
  padding: 1.2rem;
}

.pb-popular-grid .card-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

/* ---------- Form Area (bigform wrapper) ---------- */
.pb-form-wrapper {
  background: var(--pb-white);
  border-radius: var(--pb-radius);
  padding: 1.5rem;
  box-shadow: var(--pb-card-shadow);
  border: 2px solid var(--pb-gray-200);
  margin: 1.5rem 0;
}

/* ---------- Skip to Content (a11y) ---------- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pb-primary);
  color: var(--pb-white);
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 var(--pb-radius-sm) var(--pb-radius-sm);
  z-index: 9999;
  font-weight: 600;
}

.skip-to-content:focus {
  top: 0;
  color: var(--pb-white);
}

/* ---------- Print ---------- */
@media print {
  .pb-navbar, .pb-trust-bar, .pb-mobile-cta, .side-effects, .pb-cookie-banner, .pb-footer {
    display: none !important;
  }
  body {
    font-size: 12pt;
    background: #fff;
  }
}

/* ---------- Mega Menu ---------- */
.pb-mega-dropdown {
  position: static !important;
}

.pb-mega-menu {
  width: 100%;
  border: none;
  border-radius: 0 0 var(--pb-radius) var(--pb-radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 1.5rem 0;
  margin-top: 0 !important;
  border-top: 3px solid var(--pb-primary);
}

.pb-mega-menu .row {
  justify-content: center;
}

.pb-mega-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pb-mega-menu .dropdown-item {
  display: block;
  padding: 0.4rem 1rem;
  font-size: 0.92rem;
  color: var(--pb-gray-700);
  border-radius: var(--pb-radius-sm);
  white-space: normal;
}

.pb-mega-menu .dropdown-item:hover {
  background: rgba(13, 110, 253, 0.06);
  color: var(--pb-primary);
}

/* Hover trigger on desktop */
@media (min-width: 992px) {
  .pb-mega-dropdown:hover > .pb-mega-menu {
    display: block;
  }
  .pb-mega-dropdown > .nav-link::after {
    display: inline-block;
    margin-right: 0.3em;
    vertical-align: 0.15em;
    content: "";
    border-top: 0.3em solid;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
  }
  .pb-mega-dropdown > .nav-link.dropdown-toggle::after {
    /* use Bootstrap's built-in caret */
  }
}

@media (max-width: 991.98px) {
  .pb-mega-dropdown {
    display: none;
  }
}

/* ---------- BigForm / PropForm (Side Block) ---------- */
.side-block {
  background: #fff;
  border-radius: var(--pb-radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.side-block-head {
  background: linear-gradient(135deg, var(--pb-primary), #0056d6);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.side-block-head h3 {
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.side-block-head p {
  color: rgba(255,255,255,0.85);
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  margin: 0;
}

.side-block-head > div {
  width: 100%;
}

.side-block-head span {
  display: none;
}

.side-block-body {
  padding: 1.5rem;
}

.side-block-body form {
  width: 100%;
}

.side-block-body input[type="text"],
.side-block-body input[type="email"],
.side-block-body input[type="tel"],
.side-block-body input[type="number"],
.side-block-body textarea,
.side-block-body select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--pb-gray-300, #ccc);
  border-radius: var(--pb-radius-sm, 8px);
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-family: 'Heebo', sans-serif;
  color: #333;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 0.6rem;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.side-block-body textarea {
  height: auto;
  min-height: 60px;
  resize: vertical;
}

.side-block-body input[type="text"]:focus,
.side-block-body input[type="email"]:focus,
.side-block-body input[type="tel"]:focus,
.side-block-body input[type="number"]:focus,
.side-block-body textarea:focus,
.side-block-body select:focus {
  border-color: var(--pb-primary) !important;
  box-shadow: 0 0 0 3px rgba(13,110,253,0.15) !important;
  outline: none;
}

.side-block-body .col-6 {
  float: right;
  width: 50%;
  padding: 0 5px;
  box-sizing: border-box;
}

.side-block-body .col-6.colwide,
.side-block-body .col-6.wide {
  width: 100%;
}

.side-block-body .col-6.width-100 {
  width: 100%;
}

.side-block-body .col-12 {
  width: 100%;
  padding: 0 5px;
  box-sizing: border-box;
}

.side-block-body label {
  display: block;
  width: 100%;
  font-weight: normal;
  margin: 0;
}

.side-block-body .row1 {
  margin: 0 -5px;
  clear: both;
}

.side-block-body .row1::after {
  content: "";
  display: table;
  clear: both;
}

.quote-btn {
  display: inline-block;
  background: var(--pb-accent, #ff6b00);
  color: #fff;
  border: none;
  border-radius: var(--pb-radius-sm, 8px);
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 3px 12px rgba(255,107,0,0.3);
}

.quote-btn:hover {
  background: #e05e00;
  transform: translateY(-1px);
}

.quote-btn.sub-btn {
  width: 100%;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}

.side-block-body .col-12 > p {
  font-family: 'Heebo', sans-serif;
  font-size: 0.85rem;
  color: var(--pb-gray-600, #666);
  text-align: center;
  margin: 0.5rem 0 0;
}

.side-block-body .col-12 > p b {
  color: var(--pb-gray-800, #333);
}

.custom-check {
  display: block;
  margin: 0.75rem 0;
  position: relative;
  clear: both;
}

.custom-check input[type="checkbox"] {
  width: auto !important;
  height: auto !important;
  margin-left: 0.5rem;
  accent-color: var(--pb-primary);
}

.custom-check label {
  font-family: 'Heebo', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--pb-gray-700, #555);
  cursor: pointer;
  padding-right: 0;
}

.custom-check label::before {
  display: none;
}

.hide-inputs::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  .side-block-body .col-6 {
    width: 100%;
  }
  .side-block-head h3 {
    font-size: 1.2rem;
  }
}
