/* ========================================
   style.css — Bootstrap 5 Core Utilities
   (Lightweight standalone version)
   Values: 1rem = 16px
   ======================================== */

/* ---------- ROOT VARIABLES ---------- */
:root {
  /* Spacers */
  --spacer: 1rem;
  --spacer-0: 0;
  --spacer-1: 0.25rem;   /* 4px */
  --spacer-2: 0.5rem;    /* 8px */
  --spacer-3: 1rem;      /* 16px */
  --spacer-4: 1.5rem;    /* 24px */
  --spacer-5: 3rem;      /* 48px */

  /* Colors */
  --primary-color: #A91F38;
  --secondary-color: #616263;
  --dark-color: #4A4A4A;
  --bs-white: #ffffff;
  --bs-dark: #000000;
  --bs-body-bg: #ffffff;
  --bs-border-color: #ECECEC;
  --bs-border-color: #dee2e6;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-gradient: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0));

  /* Border Radius */
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 1.25rem;
  --bs-border-radius-pill: 50rem;

  /* Shadows */
  --bs-shadow-sm: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
  --bs-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  --bs-shadow-lg: 0 1rem 3rem rgba(0,0,0,0.175);

  /* Breakpoints (used in media queries) */
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

/* ---------- RESET / BASE ---------- */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 18px;
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  overflow-x: hidden;
}
a {
  color: var(--bs-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--bs-link-hover-color);
}

/* ---------- CONTAINER & GRID ---------- */
.container {
  width: 100%;
  padding-right: var(--spacer-3);
  padding-left: var(--spacer-3);
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  width: 100%;
  padding-right: var(--spacer-3);
  padding-left: var(--spacer-3);
  margin-right: auto;
  margin-left: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.col {
  flex: 1 0 0%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3  { flex: 0 0 25%; max-width: 25%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6  { flex: 0 0 50%; max-width: 50%; }
.col-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9  { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Offsets */
.offset-1  { margin-left: 8.333333%; }
.offset-2  { margin-left: 16.666667%; }
.offset-3  { margin-left: 25%; }
.offset-4  { margin-left: 33.333333%; }
.offset-5  { margin-left: 41.666667%; }
.offset-6  { margin-left: 50%; }
.offset-7  { margin-left: 58.333333%; }
.offset-8  { margin-left: 66.666667%; }
.offset-9  { margin-left: 75%; }
.offset-10 { margin-left: 83.333333%; }
.offset-11 { margin-left: 91.666667%; }
.offset-12 { margin-left: 100%; }

/* Order */
.order-1  { order: 1; } .order-2  { order: 2; } .order-3  { order: 3; }
.order-4  { order: 4; } .order-5  { order: 5; } .order-6  { order: 6; }
.order-7  { order: 7; } .order-8  { order: 8; } .order-9  { order: 9; }
.order-10 { order: 10; } .order-11 { order: 11; } .order-12 { order: 12; }

/* ---------- SPACING (MARGIN & PADDING) ---------- */
.m-0   { margin: 0; }          .p-0   { padding: 0; }
.m-1   { margin: 0.25rem; }    .p-1   { padding: 0.25rem; }
.m-2   { margin: 0.5rem; }     .p-2   { padding: 0.5rem; }
.m-3   { margin: 1rem; }       .p-3   { padding: 1rem; }
.m-4   { margin: 1.5rem; }     .p-4   { padding: 1.5rem; }
.m-5   { margin: 3rem; }       .p-5   { padding: 3rem; }
.m-auto{ margin: auto; }

/* Sides */
.mt-0 { margin-top: 0; }  .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.25rem; } .mb-1 { margin-bottom: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }  .mb-2 { margin-bottom: 0.5rem; }
.mt-3 { margin-top: 1rem; }    .mb-3 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1.5rem; }  .mb-4 { margin-bottom: 1.5rem; }
.mt-5 { margin-top: 3rem; }    .mb-5 { margin-bottom: 3rem; }
.mt-auto { margin-top: auto; } .mb-auto { margin-bottom: auto; }

.ms-0 { margin-left: 0; }  .me-0 { margin-right: 0; }
.ms-1 { margin-left: 0.25rem; } .me-1 { margin-right: 0.25rem; }
.ms-2 { margin-left: 0.5rem; }  .me-2 { margin-right: 0.5rem; }
.ms-3 { margin-left: 1rem; }    .me-3 { margin-right: 1rem; }
.ms-4 { margin-left: 1.5rem; }  .me-4 { margin-right: 1.5rem; }
.ms-5 { margin-left: 3rem; }    .me-5 { margin-right: 3rem; }
.ms-auto { margin-left: auto; } .me-auto { margin-right: auto; }

.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 1rem; margin-right: 1rem; }
.mx-4 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-5 { margin-left: 3rem; margin-right: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* Padding sides – same pattern (pt, pb, ps, pe, px, py) */
.pt-0 { padding-top: 0; } .pb-0 { padding-bottom: 0; }
.pt-1 { padding-top: 0.25rem; } .pb-1 { padding-bottom: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }  .pb-2 { padding-bottom: 0.5rem; }
.pt-3 { padding-top: 1rem; }    .pb-3 { padding-bottom: 1rem; }
.pt-4 { padding-top: 1.5rem; }  .pb-4 { padding-bottom: 1.5rem; }
.pt-5 { padding-top: 3rem; }    .pb-5 { padding-bottom: 3rem; }

.ps-0 { padding-left: 0; }  .pe-0 { padding-right: 0; }
.ps-1 { padding-left: 0.25rem; } .pe-1 { padding-right: 0.25rem; }
.ps-2 { padding-left: 0.5rem; }  .pe-2 { padding-right: 0.5rem; }
.ps-3 { padding-left: 1rem; }    .pe-3 { padding-right: 1rem; }
.ps-4 { padding-left: 1.5rem; }  .pe-4 { padding-right: 1.5rem; }
.ps-5 { padding-left: 3rem; }    .pe-5 { padding-right: 3rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* Gap (for flex/grid) */
.gap-0 { gap: 0; } .gap-1 { gap: 0.25rem; } .gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; } .gap-4 { gap: 1.5rem; } .gap-5 { gap: 3rem; }

/* Row gutters */
.g-0, .gx-0 { --bs-gutter-x: 0; } .g-0, .gy-0 { --bs-gutter-y: 0; }
.g-1, .gx-1 { --bs-gutter-x: 0.25rem; } .g-1, .gy-1 { --bs-gutter-y: 0.25rem; }
.g-2, .gx-2 { --bs-gutter-x: 0.5rem; }  .g-2, .gy-2 { --bs-gutter-y: 0.5rem; }
.g-3, .gx-3 { --bs-gutter-x: 1rem; }    .g-3, .gy-3 { --bs-gutter-y: 1rem; }
.g-4, .gx-4 { --bs-gutter-x: 1.5rem; }  .g-4, .gy-4 { --bs-gutter-y: 1.5rem; }
.g-5, .gx-5 { --bs-gutter-x: 3rem; }    .g-5, .gy-5 { --bs-gutter-y: 3rem; }
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  margin-top: calc(-1 * var(--bs-gutter-y));
}
.row > * {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* ---------- SIZING ---------- */
.w-25   { width: 25%; }     .h-25   { height: 25%; }
.w-50   { width: 50%; }     .h-50   { height: 50%; }
.w-75   { width: 75%; }     .h-75   { height: 75%; }
.w-100  { width: 100%; }    .h-100  { height: 100%; }
.w-auto { width: auto; }    .h-auto { height: auto; }
.mw-100 { max-width: 100%; }
.mh-100 { max-height: 100%; }
.vw-100 { width: 100vw; }
.vh-100 { height: 100vh; }
.min-vw-100 { min-width: 100vw; }
.min-vh-100 { min-height: 100vh; }

/* ---------- DISPLAY ---------- */
.d-none         { display: none; }
.d-inline       { display: inline; }
.d-inline-block { display: inline-block; }
.d-block        { display: block; }
.d-grid         { display: grid; }
.d-table        { display: table; }
.d-table-cell   { display: table-cell; }
.d-flex         { display: flex; }
.d-inline-flex  { display: inline-flex; }

/* ---------- FLEX ---------- */
.flex-row            { flex-direction: row; }
.flex-column         { flex-direction: column; }
.flex-row-reverse    { flex-direction: row-reverse; }
.flex-column-reverse { flex-direction: column-reverse; }
.flex-wrap           { flex-wrap: wrap; }
.flex-nowrap         { flex-wrap: nowrap; }
.flex-wrap-reverse   { flex-wrap: wrap-reverse; }
.flex-fill           { flex: 1 1 auto; }
.flex-grow-0         { flex-grow: 0; }
.flex-grow-1         { flex-grow: 1; }
.flex-shrink-0       { flex-shrink: 0; }
.flex-shrink-1       { flex-shrink: 1; }

.justify-content-start    { justify-content: flex-start; }
.justify-content-end      { justify-content: flex-end; }
.justify-content-center   { justify-content: center; }
.justify-content-between  { justify-content: space-between; }
.justify-content-around   { justify-content: space-around; }
.justify-content-evenly   { justify-content: space-evenly; }

.align-items-start    { align-items: flex-start; }
.align-items-end      { align-items: flex-end; }
.align-items-center   { align-items: center; }
.align-items-baseline { align-items: baseline; }
.align-items-stretch  { align-items: stretch; }

.align-self-start    { align-self: flex-start; }
.align-self-end      { align-self: flex-end; }
.align-self-center   { align-self: center; }
.align-self-baseline { align-self: baseline; }
.align-self-stretch  { align-self: stretch; }

/* ---------- TEXT ---------- */
.text-start   { text-align: left; }
.text-center  { text-align: center; }
.text-end     { text-align: right; }
.text-lowercase   { text-transform: lowercase; }
.text-uppercase   { text-transform: uppercase; }
.text-capitalize  { text-transform: capitalize; }
.text-decoration-none        { text-decoration: none; }
.text-decoration-underline   { text-decoration: underline; }
.text-decoration-line-through { text-decoration: line-through; }
.text-wrap     { white-space: normal; }
.text-nowrap   { white-space: nowrap; }
.text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-break    { word-wrap: break-word; word-break: break-word; }

/* Font weight / style */
.fw-lighter { font-weight: lighter; }
.fw-light   { font-weight: 300; }
.fw-normal  { font-weight: 400; }
.fw-medium  { font-weight: 500; }
.fw-semibold{ font-weight: 600; }
.fw-bold    { font-weight: 700; }
.fw-bolder  { font-weight: bolder; }
.fst-italic { font-style: italic; }
.fst-normal { font-style: normal; }
.font-monospace { font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

/* Font size */
.fs-1 { font-size: 2.5rem; }
.fs-2 { font-size: 2rem; }
.fs-3 { font-size: 1.75rem; }
.fs-4 { font-size: 1.5rem; }
.fs-5 { font-size: 1.25rem; }
.fs-6 { font-size: 1rem; }

/* Line height */
.lh-1    { line-height: 1; }
.lh-sm   { line-height: 1.25; }
.lh-base { line-height: 1.5; }
.lh-lg   { line-height: 2; }

/* Text Colors */
.text-primary   { --bs-text-opacity: 1; color: rgba(var(--bs-primary-rgb, 13,110,253), var(--bs-text-opacity)); }
.text-secondary { --bs-text-opacity: 1; color: rgba(var(--bs-secondary-rgb, 108,117,125), var(--bs-text-opacity)); }
.text-success   { --bs-text-opacity: 1; color: rgba(var(--bs-success-rgb, 25,135,84), var(--bs-text-opacity)); }
.text-danger    { --bs-text-opacity: 1; color: rgba(var(--bs-danger-rgb, 220,53,69), var(--bs-text-opacity)); }
.text-warning   { --bs-text-opacity: 1; color: rgba(var(--bs-warning-rgb, 255,193,7), var(--bs-text-opacity)); }
.text-info      { --bs-text-opacity: 1; color: rgba(var(--bs-info-rgb, 13,202,240), var(--bs-text-opacity)); }
.text-light     { --bs-text-opacity: 1; color: rgba(var(--bs-light-rgb, 248,249,250), var(--bs-text-opacity)); }
.text-dark      { --bs-text-opacity: 1; color: rgba(var(--bs-dark-rgb, 33,37,41), var(--bs-text-opacity)); }
.text-white     { --bs-text-opacity: 1; color: rgba(255,255,255, var(--bs-text-opacity)); }
.text-body      { color: var(--bs-body-color); }
.text-muted     { color: var(--secondary-color); }

/* Text Background combos */
.text-bg-primary   { color: #fff; background-color: var(--bs-primary); }
.text-bg-secondary { color: #fff; background-color: var(--secondary-color); }
.text-bg-success   { color: #fff; background-color: var(--bs-success); }
.text-bg-danger    { color: #fff; background-color: var(--bs-danger); }
.text-bg-warning   { color: #000; background-color: var(--bs-warning); }
.text-bg-info      { color: #000; background-color: var(--bs-info); }
.text-bg-light     { color: #000; background-color: var(--bs-light); }
.text-bg-dark      { color: #fff; background-color: var(--dark-color); }

/* ---------- BACKGROUND ---------- */
.bg-primary   { --bs-bg-opacity: 1; background-color: rgba(var(--bs-primary-rgb, 13,110,253), var(--bs-bg-opacity)); }
.bg-secondary { --bs-bg-opacity: 1; background-color: rgba(var(--bs-secondary-rgb, 108,117,125), var(--bs-bg-opacity)); }
.bg-success   { --bs-bg-opacity: 1; background-color: rgba(var(--bs-success-rgb, 25,135,84), var(--bs-bg-opacity)); }
.bg-danger    { --bs-bg-opacity: 1; background-color: rgba(var(--bs-danger-rgb, 220,53,69), var(--bs-bg-opacity)); }
.bg-warning   { --bs-bg-opacity: 1; background-color: rgba(var(--bs-warning-rgb, 255,193,7), var(--bs-bg-opacity)); }
.bg-info      { --bs-bg-opacity: 1; background-color: rgba(var(--bs-info-rgb, 13,202,240), var(--bs-bg-opacity)); }
.bg-light     { --bs-bg-opacity: 1; background-color: rgba(var(--bs-light-rgb, 248,249,250), var(--bs-bg-opacity)); }
.bg-dark      { --bs-bg-opacity: 1; background-color: rgba(var(--bs-dark-rgb, 33,37,41), var(--bs-bg-opacity)); }
.bg-white     { --bs-bg-opacity: 1; background-color: rgba(255,255,255, var(--bs-bg-opacity)); }
.bg-transparent { background-color: transparent; }
.bg-gradient  { background-image: var(--bs-gradient); }

/* ---------- BORDERS ---------- */
.border         { border: 1px solid var(--bs-border-color); }
.border-0       { border: 0; }
.border-top     { border-top: 1px solid var(--bs-border-color); }
.border-end     { border-right: 1px solid var(--bs-border-color); }
.border-bottom  { border-bottom: 1px solid var(--bs-border-color); }
.border-start   { border-left: 1px solid var(--bs-border-color); }

.border-primary   { border-color: var(--bs-primary); }
.border-secondary { border-color: var(--secondary-color); }
.border-success   { border-color: var(--bs-success); }
.border-danger    { border-color: var(--bs-danger); }
.border-warning   { border-color: var(--bs-warning); }
.border-info      { border-color: var(--bs-info); }
.border-light     { border-color: var(--bs-light); }
.border-dark      { border-color: var(--dark-color); }
.border-white     { border-color: var(--bs-white); }

.rounded    { border-radius: var(--bs-border-radius); }
.rounded-0  { border-radius: 0; }
.rounded-1  { border-radius: var(--bs-border-radius-sm); }
.rounded-2  { border-radius: var(--bs-border-radius); }
.rounded-3  { border-radius: var(--bs-border-radius-lg); }
.rounded-4  { border-radius: var(--bs-border-radius-xl); }
.rounded-5  { border-radius: var(--bs-border-radius-xxl); }
.rounded-circle { border-radius: 50%; }
.rounded-pill   { border-radius: var(--bs-border-radius-pill); }
.rounded-top    { border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0; }
.rounded-end    { border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0; }
.rounded-bottom { border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius); }
.rounded-start  { border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius); }

/* ---------- SHADOWS ---------- */
.shadow-none { box-shadow: none; }
.shadow-sm   { box-shadow: var(--bs-shadow-sm); }
.shadow      { box-shadow: var(--bs-shadow); }
.shadow-lg   { box-shadow: var(--bs-shadow-lg); }

/* ---------- POSITION ---------- */
.position-static  { position: static; }
.position-relative{ position: relative; }
.position-absolute{ position: absolute; }
.position-fixed   { position: fixed; }
.position-sticky  { position: sticky; }
.top-0    { top: 0; }    .bottom-0 { bottom: 0; }
.top-50   { top: 50%; }  .bottom-50 { bottom: 50%; }
.start-0  { left: 0; }   .end-0 { right: 0; }
.start-50 { left: 50%; } .end-50 { right: 50%; }
.translate-middle   { transform: translate(-50%, -50%); }
.translate-middle-x { transform: translateX(-50%); }
.translate-middle-y { transform: translateY(-50%); }

/* ---------- VISIBILITY & OPACITY ---------- */
.visible   { visibility: visible; }
.invisible { visibility: hidden; }
.opacity-0  { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100{ opacity: 1; }

/* ---------- OVERFLOW ---------- */
.overflow-auto     { overflow: auto; }
.overflow-hidden   { overflow: hidden; }
.overflow-visible  { overflow: visible; }
.overflow-scroll   { overflow: scroll; }
.overflow-x-auto   { overflow-x: auto; }
.overflow-y-hidden { overflow-y: hidden; }

/* ---------- FLOAT & CLEAR ---------- */
.float-start { float: left; }
.float-end   { float: right; }
.float-none  { float: none; }
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* ---------- TABLE ---------- */
.table { width: 100%; margin-bottom: 1rem; color: var(--bs-body-color); }
.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: rgba(0,0,0,0.05);
}
.table-hover > tbody > tr:hover > * {
  background-color: rgba(0,0,0,0.075);
}
.table-bordered { border: 1px solid var(--bs-border-color); }
.table-bordered > :not(caption) > * > * { border-width: 1px; }
.table-borderless > :not(caption) > * > * { border-bottom-width: 0; }
.table-sm > :not(caption) > * > * { padding: 0.25rem; }
.table-dark   { background-color: var(--dark-color); color: #fff; }
.table-light  { background-color: var(--bs-light); }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- IMG ---------- */
.img-fluid    { max-width: 100%; height: auto; }
.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-white);
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

/* ---------- OPACITY (TEXT & BACKGROUND) ---------- */
.text-opacity-25 { --bs-text-opacity: 0.25; }
.text-opacity-50 { --bs-text-opacity: 0.5; }
.text-opacity-75 { --bs-text-opacity: 0.75; }
.text-opacity-100{ --bs-text-opacity: 1; }
.bg-opacity-10 { --bs-bg-opacity: 0.1; }
.bg-opacity-25 { --bs-bg-opacity: 0.25; }
.bg-opacity-50 { --bs-bg-opacity: 0.5; }
.bg-opacity-75 { --bs-bg-opacity: 0.75; }
.bg-opacity-100{ --bs-bg-opacity: 1; }

/* ---------- Z-INDEX ---------- */
.z-n1 { z-index: -1; }
.z-0  { z-index: 0; }
.z-1  { z-index: 1; }
.z-2  { z-index: 2; }
.z-3  { z-index: 3; }

/* ---------- LISTS ---------- */
.list-unstyled { padding-left: 0; list-style: none; }
.list-inline { padding-left: 0; list-style: none; }
.list-inline-item { display: inline-block; }
.list-inline-item:not(:last-child) { margin-right: 0.5rem; }

/* ---------- ACCESSIBILITY ---------- */
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------- STACKS ---------- */
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}
.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

/* ---------- INTERACTIONS ---------- */
.user-select-all   { user-select: all; }
.user-select-auto  { user-select: auto; }
.user-select-none  { user-select: none; }
.pe-none { pointer-events: none; }
.pe-auto { pointer-events: auto; }

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* ---------- SM (≥576px) ---------- */
@media (min-width: 576px) {
  .container { max-width: 540px; }

  .col-sm-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-sm-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3  { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6  { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9  { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
  .col-sm-auto { flex: 0 0 auto; width: auto; }

  .d-sm-none  { display: none; }
  .d-sm-block { display: block; }
  .d-sm-flex  { display: flex; }
  .d-sm-grid  { display: grid; }
  .d-sm-inline-flex { display: inline-flex; }

  .text-sm-start  { text-align: left; }
  .text-sm-center { text-align: center; }
  .text-sm-end    { text-align: right; }

  .float-sm-start { float: left; }
  .float-sm-end   { float: right; }
  .float-sm-none  { float: none; }

  /* Spacing sm */
  .m-sm-0 { margin: 0; } .p-sm-0 { padding: 0; }
  .m-sm-1 { margin: 0.25rem; } .p-sm-1 { padding: 0.25rem; }
  .m-sm-2 { margin: 0.5rem; }  .p-sm-2 { padding: 0.5rem; }
  .m-sm-3 { margin: 1rem; }    .p-sm-3 { padding: 1rem; }
  .m-sm-4 { margin: 1.5rem; }  .p-sm-4 { padding: 1.5rem; }
  .m-sm-5 { margin: 3rem; }    .p-sm-5 { padding: 3rem; }
  .m-sm-auto { margin: auto; }
}

/* ---------- MD (≥768px) ---------- */
@media (min-width: 768px) {
  .container { max-width: 720px; }

  .col-md-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3  { flex: 0 0 25%; max-width: 25%; }
  .col-md-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6  { flex: 0 0 50%; max-width: 50%; }
  .col-md-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9  { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
  .col-md-auto { flex: 0 0 auto; width: auto; }

  .d-md-none  { display: none; }
  .d-md-block { display: block; }
  .d-md-flex  { display: flex; }
  .d-md-grid  { display: grid; }
  .d-md-inline-flex { display: inline-flex; }

  .text-md-start  { text-align: left; }
  .text-md-center { text-align: center; }
  .text-md-end    { text-align: right; }

  .float-md-start { float: left; }
  .float-md-end   { float: right; }
  .float-md-none  { float: none; }

  .m-md-0 { margin: 0; } .p-md-0 { padding: 0; }
  .m-md-1 { margin: 0.25rem; } .p-md-1 { padding: 0.25rem; }
  .m-md-2 { margin: 0.5rem; }  .p-md-2 { padding: 0.5rem; }
  .m-md-3 { margin: 1rem; }    .p-md-3 { padding: 1rem; }
  .m-md-4 { margin: 1.5rem; }  .p-md-4 { padding: 1.5rem; }
  .m-md-5 { margin: 3rem; }    .p-md-5 { padding: 3rem; }
  .m-md-auto { margin: auto; }
}

/* ---------- LG (≥992px) ---------- */
@media (min-width: 992px) {
  .container { max-width: 960px; }

  .col-lg-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-lg-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3  { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6  { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9  { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
  .col-lg-auto { flex: 0 0 auto; width: auto; }

  .d-lg-none  { display: none; }
  .d-lg-block { display: block; }
  .d-lg-flex  { display: flex; }
  .d-lg-grid  { display: grid; }
  .d-lg-inline-flex { display: inline-flex; }

  .text-lg-start  { text-align: left; }
  .text-lg-center { text-align: center; }
  .text-lg-end    { text-align: right; }

  .float-lg-start { float: left; }
  .float-lg-end   { float: right; }
  .float-lg-none  { float: none; }

  .m-lg-0 { margin: 0; } .p-lg-0 { padding: 0; }
  .m-lg-1 { margin: 0.25rem; } .p-lg-1 { padding: 0.25rem; }
  .m-lg-2 { margin: 0.5rem; }  .p-lg-2 { padding: 0.5rem; }
  .m-lg-3 { margin: 1rem; }    .p-lg-3 { padding: 1rem; }
  .m-lg-4 { margin: 1.5rem; }  .p-lg-4 { padding: 1.5rem; }
  .m-lg-5 { margin: 3rem; }    .p-lg-5 { padding: 3rem; }
  .m-lg-auto { margin: auto; }
}

/* ---------- XL (≥1200px) ---------- */
@media (min-width: 1200px) {
  .container { max-width: 1140px; }

  .col-xl-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-xl-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-xl-3  { flex: 0 0 25%; max-width: 25%; }
  .col-xl-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xl-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xl-6  { flex: 0 0 50%; max-width: 50%; }
  .col-xl-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xl-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xl-9  { flex: 0 0 75%; max-width: 75%; }
  .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
  .col-xl-auto { flex: 0 0 auto; width: auto; }

  .d-xl-none  { display: none; }
  .d-xl-block { display: block; }
  .d-xl-flex  { display: flex; }
  .d-xl-grid  { display: grid; }
  .d-xl-inline-flex { display: inline-flex; }

  .text-xl-start  { text-align: left; }
  .text-xl-center { text-align: center; }
  .text-xl-end    { text-align: right; }

  .m-xl-0 { margin: 0; } .p-xl-0 { padding: 0; }
  .m-xl-1 { margin: 0.25rem; } .p-xl-1 { padding: 0.25rem; }
  .m-xl-2 { margin: 0.5rem; }  .p-xl-2 { padding: 0.5rem; }
  .m-xl-3 { margin: 1rem; }    .p-xl-3 { padding: 1rem; }
  .m-xl-4 { margin: 1.5rem; }  .p-xl-4 { padding: 1.5rem; }
  .m-xl-5 { margin: 3rem; }    .p-xl-5 { padding: 3rem; }
  .m-xl-auto { margin: auto; }
}

/* ---------- XXL (≥1400px) ---------- */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }

  .col-xxl-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-xxl-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-xxl-3  { flex: 0 0 25%; max-width: 25%; }
  .col-xxl-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xxl-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xxl-6  { flex: 0 0 50%; max-width: 50%; }
  .col-xxl-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xxl-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xxl-9  { flex: 0 0 75%; max-width: 75%; }
  .col-xxl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-xxl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-xxl-12 { flex: 0 0 100%; max-width: 100%; }
  .col-xxl-auto { flex: 0 0 auto; width: auto; }

  .d-xxl-none  { display: none; }
  .d-xxl-block { display: block; }
  .d-xxl-flex  { display: flex; }
  .d-xxl-grid  { display: grid; }
  .d-xxl-inline-flex { display: inline-flex; }

  .text-xxl-start  { text-align: left; }
  .text-xxl-center { text-align: center; }
  .text-xxl-end    { text-align: right; }

  .m-xxl-0 { margin: 0; } .p-xxl-0 { padding: 0; }
  .m-xxl-1 { margin: 0.25rem; } .p-xxl-1 { padding: 0.25rem; }
  .m-xxl-2 { margin: 0.5rem; }  .p-xxl-2 { padding: 0.5rem; }
  .m-xxl-3 { margin: 1rem; }    .p-xxl-3 { padding: 1rem; }
  .m-xxl-4 { margin: 1.5rem; }  .p-xxl-4 { padding: 1.5rem; }
  .m-xxl-5 { margin: 3rem; }    .p-xxl-5 { padding: 3rem; }
  .m-xxl-auto { margin: auto; }
}


      .site-header {
            width: 100%;
            max-width: 1920px;
            margin: 0 auto;
            background: var(--bs-white);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            position: sticky;
            top: 0;
            z-index: 1050;
            transition: box-shadow 0.3s ease;
        }

        /* ---------- TOP HEADER (white) ---------- */
        .logo-dark {
            width: 180px;
        }

        .top-header {
            height: 80px;
            min-height: 80px;
            background: var(--bs-white);
            border-bottom: 1px solid var(--bs-border-color);
            padding: 0 40px;
            display: flex;
            align-items: center;
            transition: height 0.3s ease;
        }

        .top-header .row {
            width: 100%;
            margin: 0;
            align-items: center;
            display: flex;
            flex-wrap: wrap;
        }

        .top-header .row>* {
            padding: 0;
        }

        /* ---------- LOGO ---------- */
        .logo {
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            font-size: 1.75rem;
            font-weight: 600;
            letter-spacing: -0.5px;
            white-space: nowrap;
        }

        .logo .biz {
            color: var(--dark-color);
        }
        .logo .fire {
            color: var(--primary-color);
        }

        .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 38px;
            background: var(--primary-color);
            border-radius: 6px;
            color: var(--bs-white);
            font-weight: 600;
            line-height: 1;
            flex-shrink: 0;
        }
        .logo-icon svg {
            width: 22px;
            height: 28px;
            fill: currentColor;
        }

        /* ---------- UTILITY NAV (center) ---------- */
        .utility-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .utility-nav .nav-link {
            color: var(--dark-color);
            font-weight: 400;
            text-decoration: none;
            padding: 4px 0;
            transition: color 0.3s ease;
            position: relative;
        }

        .utility-nav .nav-link:hover {
            color: var(--primary-color);
        }

        .utility-nav .divider {
            color: var(--bs-border-color);
            font-weight: 300;
            user-select: none;
        }

        /* ---------- PHONE + CTA (right) ---------- */
        .header-contact {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: nowrap;
            justify-content: flex-end;
        }

        .phone-block {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--dark-color);
            transition: opacity 0.3s ease;
        }
        .phone-block:hover {
            opacity: 0.85;
        }

        .phone-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--primary-color);
            border-radius: 50%;
            color: var(--bs-white);
            flex-shrink: 0;
        }
        .phone-icon svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .phone-number {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 0.3px;
            line-height: 1.2;
        }

        .phone-sub {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--dark-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.2;
            opacity: 0.7;
        }

        .phone-text-wrap {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        /* ---------- CTA BUTTON ---------- */
        .btn-schedule {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-color);
            color: var(--bs-white);
            font-weight: 600;
            padding: 15px 42px;
            border-radius: 50px;
            border: none;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.3s ease,
                transform 0.3s ease,
                box-shadow 0.3s ease;
            cursor: pointer;
            letter-spacing: 0.3px;
            min-height: 40px;
            font-size: 18px;
        }
        .btn-schedule:hover {
            background: #8a1730;
            color: var(--bs-white);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(169, 31, 56, 0.30);
        }
        .btn-schedule:active {
            transform: translateY(0);
            box-shadow: none;
        }

        /* ============================================================
           BOTTOM NAV — with WHITE MEGA MENU
           ============================================================ */
        .bottom-nav {
            background: var(--bs-dark);
            height: 70px;
            min-height: 70px;
            padding: 0 40px;
            display: flex;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
        }

        .bottom-nav .nav-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            flex-wrap: nowrap;
            width: 100%;
            margin: 0;
            padding: 0;
            list-style: none;
            position: relative;
        }

        .bottom-nav .nav-menu .nav-item {
            display: flex;
            align-items: center;
            position: relative;
        }

        .bottom-nav .nav-menu .nav-link {
            color: rgba(255, 255, 255, 0.92);
            font-weight: 500;
            text-decoration: none;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 0;
            transition: color 0.3s ease,
                opacity 0.3s ease;
            letter-spacing: 0.2px;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            background: none;
            border-top: none;
            border-left: none;
            border-right: none;
            font-family: inherit;
            font-size: inherit;
            font-weight: inherit;
        }

        .bottom-nav .nav-menu .nav-link:hover {
            color: var(--bs-white);
            border-bottom-color: var(--primary-color);
        }

        .bottom-nav .nav-menu .nav-link .chevron {
            font-size: 0.6rem;
            opacity: 0.6;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .bottom-nav .nav-menu .nav-link:hover .chevron {
            transform: rotate(180deg);
            opacity: 1;
        }

        /* ---------- MEGA MENU — WHITE THEME ---------- */
        .mega-menu {
            position: absolute;
            top: calc(100% + 6px);
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            background: var(--bs-white);
            min-width: 720px;
            width: max-content;
            max-width: 1100px;
            padding: 32px 36px;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
            z-index: 1060;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px 24px;
            border: 1px solid var(--bs-border-color);
            border-top-width: 3px;
            border-top-color: var(--primary-color);
        }

        /* — show on hover — */
        .bottom-nav .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        /* — columns — */
        .mega-col {
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 140px;
        }

        .mega-col .mega-heading {
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--bs-border-color);
            margin-bottom: 6px;
        }

        .mega-col .mega-link {
            color: #444444;
            text-decoration: none;
            padding: 5px 0;
            transition: color 0.2s ease, padding-left 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid transparent;
        }

        .mega-col .mega-link:hover {
            color: var(--primary-color);
            padding-left: 8px;
        }

        .mega-col .mega-link .mega-icon {
            color: var(--primary-color);
            font-weight: 300;
            opacity: 0.6;
            font-size: 16px;
        }

        .mega-col .mega-link:hover .mega-icon {
            opacity: 1;
        }

        .mega-col .mega-link .badge-new {
            background: var(--primary-color);
            color: var(--bs-white);
            font-size: 16px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            margin-left: auto;
        }

        /* — promo card (white theme) — */
        .mega-promo {
            grid-column: span 1;
            background: rgba(169, 31, 56, 0.06);
            border-radius: 8px;
            padding: 18px 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: 1px solid rgba(169, 31, 56, 0.15);
            min-height: 140px;
        }

        .mega-promo .promo-title {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .mega-promo .promo-desc {
            color: rgba(0, 0, 0, 0.65);
            line-height: 1.4;
        }

        .mega-promo .promo-cta {
            display: inline-block;
            margin-top: 12px;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s;
        }
        .mega-promo .promo-cta:hover {
            color: #8a1730;
            text-decoration: underline;
        }

        /* ---------- MEGA MENU — alignment variants ---------- */
        .bottom-nav .nav-item:first-child .mega-menu {
            left: 0;
            transform: translateX(0) translateY(8px);
        }
        .bottom-nav .nav-item:first-child:hover .mega-menu {
            transform: translateX(0) translateY(0);
        }

        .bottom-nav .nav-item:nth-child(2) .mega-menu {
            left: 0;
            transform: translateX(0) translateY(8px);
        }
        .bottom-nav .nav-item:nth-child(2):hover .mega-menu {
            transform: translateX(0) translateY(0);
        }

        .bottom-nav .nav-item:last-child .mega-menu {
            left: auto;
            right: 0;
            transform: translateX(0) translateY(8px);
        }
        .bottom-nav .nav-item:last-child:hover .mega-menu {
            transform: translateX(0) translateY(0);
        }

        .bottom-nav .nav-item:nth-child(6) .mega-menu {
            left: auto;
            right: 0;
            transform: translateX(0) translateY(8px);
        }
        .bottom-nav .nav-item:nth-child(6):hover .mega-menu {
            transform: translateX(0) translateY(0);
        }

        /* ---------- HAMBURGER (mobile) ---------- */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 6px 4px;
            cursor: pointer;
            background: none;
            border: none;
            outline: none;
            transition: opacity 0.3s ease;
            z-index: 1060;
            margin-left: 8px;
        }
        .hamburger:hover {
            opacity: 0.7;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--bs-dark);
            border-radius: 2px;
            transition: transform 0.3s ease,
                opacity 0.3s ease,
                background 0.3s ease;
            transform-origin: center;
        }

        /* Hamburger animation when menu is open */
        #menu-toggle:checked ~ .top-header .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        #menu-toggle:checked ~ .top-header .hamburger span:nth-child(2) {
            opacity: 0;
        }
        #menu-toggle:checked ~ .top-header .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        /* ============================================================
           OFF CANVAS — with ACCORDION MEGA MENU (mobile)
           ============================================================ */
        #menu-toggle {
            display: none;
        }

        .offcanvas-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease,
                visibility 0.3s ease;
            backdrop-filter: blur(2px);
        }

        .offcanvas-drawer {
            position: fixed;
            top: 0;
            right: -380px;
            width: 340px;
            max-width: 88vw;
            height: 100%;
            background: var(--bs-white);
            z-index: 1050;
            padding: 28px 20px 40px;
            box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
            transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .offcanvas-drawer .drawer-close {
            display: none;
            align-self: flex-end;
            background: none;
            border: none;
            font-size: 2rem;
            line-height: 1;
            cursor: pointer;
            color: var(--dark-color);
            padding: 4px 8px;
            transition: color 0.3s ease;
        }
        .offcanvas-drawer .drawer-close:hover {
            color: var(--primary-color);
        }

        .offcanvas-drawer .drawer-logo {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .offcanvas-drawer .drawer-logo .biz {
            color: var(--dark-color);
        }
        .offcanvas-drawer .drawer-logo .fire {
            color: var(--primary-color);
        }

        /* ---- drawer nav with accordion ---- */
        .offcanvas-drawer .drawer-nav {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 2px;
            flex: 1 1 auto;
        }

        .offcanvas-drawer .drawer-nav .nav-item {
            border-bottom: 1px solid var(--bs-border-color);
        }

        .offcanvas-drawer .drawer-nav .nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 8px;
            color: var(--dark-color);
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease,
                padding-left 0.3s ease;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
            font-family: inherit;
            line-height: 1.4;
            font-size: 1rem;
        }

        .offcanvas-drawer .drawer-nav .nav-link:hover {
            color: var(--primary-color);
            padding-left: 16px;
        }

        .offcanvas-drawer .drawer-nav .nav-link .chevron {
            font-size: 16px;
            opacity: 0.5;
            margin-left: 4px;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        /* ---- accordion mega inside offcanvas ---- */
        .drawer-mega {
            padding: 0 8px 12px 12px;
            display: none;
            background: #f9f9f9;
            border-radius: 4px;
            margin-top: 2px;
            margin-bottom: 4px;
        }

        .drawer-mega .mega-col {
            padding: 6px 0;
            gap: 2px;
        }

        .drawer-mega .mega-col .mega-heading {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            color: var(--primary-color);
            padding: 6px 0 2px 0;
            border-bottom: 1px solid var(--bs-border-color);
            margin-bottom: 4px;
            display: block;
            font-size: 0.85rem;
        }

        .drawer-mega .mega-col .mega-link {
            display: block;
            padding: 5px 4px 5px 12px;
            color: #444444;
            text-decoration: none;
            transition: color 0.2s, padding-left 0.2s;
            border-radius: 2px;
            font-size: 0.95rem;
        }

        .drawer-mega .mega-col .mega-link:hover {
            color: var(--primary-color);
            padding-left: 18px;
            background: rgba(169, 31, 56, 0.05);
        }

        .drawer-mega .mega-col .mega-link .mega-icon {
            color: var(--primary-color);
            font-weight: 300;
            opacity: 0.5;
            margin-right: 4px;
        }

        .drawer-mega .mega-promo {
            background: rgba(169, 31, 56, 0.06);
            border: 1px solid rgba(169, 31, 56, 0.12);
            border-radius: 6px;
            padding: 14px 14px;
            margin-top: 6px;
        }

        .drawer-mega .mega-promo .promo-title {
            font-weight: 600;
            color: var(--dark-color);
        }

        .drawer-mega .mega-promo .promo-desc {
            color: rgba(0, 0, 0, 0.6);
        }

        .drawer-mega .mega-promo .promo-cta {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
        }
        .drawer-mega .mega-promo .promo-cta:hover {
            text-decoration: underline;
        }

        /* ---- accordion toggle using checkbox hack ---- */
        .drawer-nav .nav-item {
            position: relative;
        }

        .drawer-nav .nav-item .acc-toggle {
            display: none;
        }

        .drawer-nav .nav-item .acc-toggle:checked~.drawer-mega {
            display: grid !important;
            grid-template-columns: 1fr 1fr;
            gap: 12px 16px;
        }

        .drawer-nav .nav-item .acc-toggle:checked~.nav-link .chevron {
            transform: rotate(180deg);
        }

        .drawer-nav .nav-item .drawer-mega {
            display: none;
            padding: 8px 4px 12px 8px;
            background: #f7f7f7;
            border-radius: 4px;
            margin: 2px 0 6px 0;
        }

        /* ---------- offcanvas phone & CTA ---------- */
        .offcanvas-drawer .drawer-phone {
            margin-top: auto;
            padding-top: 16px;
            border-top: 1px solid var(--bs-border-color);
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .offcanvas-drawer .drawer-phone .number {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        .offcanvas-drawer .drawer-phone .sub {
            color: var(--dark-color);
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .offcanvas-drawer .drawer-btn {
            margin-top: 12px;
            text-align: center;
            width: 100%;
        }

        /* ----- toggle states ----- */
        #menu-toggle:checked~.offcanvas-overlay {
            opacity: 1;
            visibility: visible;
        }
        #menu-toggle:checked~.offcanvas-drawer {
            right: 0;
        }

        /* ============================================================
           RESPONSIVE
           ============================================================ */

        /* ---------- TABLET (≤ 991.98px) ---------- */
        @media (max-width: 991.98px) {
            .top-header {
                height: auto;
                min-height: 80px;
                padding: 12px 24px;
            }

            .top-header .row {
                flex-wrap: wrap;
                gap: 10px 0;
            }

            .top-header .row .col-auto:first-child {
                flex: 0 0 auto;
            }

            .top-header .row .col.d-none {
                display: block !important;
                flex: 1;
                order: 2;
                width: 100%;
                margin-top: 6px;
            }

            .top-header .row .col-auto:last-child {
                margin-left: auto;
                order: 1;
            }

            .utility-nav {
                overflow-x: auto;
                overflow-y: hidden;
                justify-content: center;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding: 4px 0;
                gap: 8px;
                display: flex !important;
                width: 100%;
            }
            .utility-nav::-webkit-scrollbar {
                display: none;
            }
            .utility-nav .nav-link {
                padding: 4px 6px;
                flex-shrink: 0;
                font-size: 0.85rem;
            }
            .utility-nav .divider {
                flex-shrink: 0;
            }

            .header-contact {
                gap: 12px;
            }
            .phone-block .phone-icon {
                width: 30px;
                height: 30px;
            }
            .phone-block .phone-icon svg {
                width: 14px;
                height: 14px;
            }
            .phone-number {
                font-size: 16px;
            }
            .phone-sub {
                font-size: 0.55rem;
            }

            .btn-schedule {
                font-size: 0.8rem;
                padding: 10px 20px;
                min-height: 40px;
            }

            .bottom-nav {
                height: 60px;
                min-height: 60px;
                padding: 0 24px;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                        display: none;
            }
            .bottom-nav::-webkit-scrollbar {
                display: none;
            }
            .bottom-nav .nav-menu {
                gap: 24px;
                justify-content: flex-start;
                flex-wrap: nowrap;
                width: auto;
                padding: 4px 0;
            }
            .bottom-nav .nav-menu .nav-link {
                font-size: 0.85rem;
                flex-shrink: 0;
            }

            /* tablet: mega menu still works, but smaller */
            .mega-menu {
                min-width: 400px;
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
                padding: 24px;
                left: 0 !important;
                right: auto !important;
                transform: translateX(0) translateY(8px) !important;
                max-width: 90vw;
            }
            .bottom-nav .nav-item:hover .mega-menu {
                transform: translateX(0) translateY(0) !important;
            }
            .bottom-nav .nav-item:last-child .mega-menu {
                left: auto !important;
                right: 0 !important;
                transform: translateX(0) translateY(8px) !important;
            }
            .bottom-nav .nav-item:last-child:hover .mega-menu {
                transform: translateX(0) translateY(0) !important;
            }
            .bottom-nav .nav-item:nth-child(6) .mega-menu {
                left: auto !important;
                right: 0 !important;
                transform: translateX(0) translateY(8px) !important;
            }
            .bottom-nav .nav-item:nth-child(6):hover .mega-menu {
                transform: translateX(0) translateY(0) !important;
            }
            .mega-promo {
                grid-column: span 2;
                min-height: auto;
            }
            
            /* Show hamburger on tablet */
            .hamburger {
                display: flex !important;
            }
            
            /* Hide drawer close button on tablet/mobile */
            .offcanvas-drawer .drawer-close {
                display: none !important;
            }
        }

        /* ---------- MOBILE (≤ 767.98px) ---------- */
        @media (max-width: 767.98px) {
            .top-header {
                height: auto;
                min-height: 70px;
                padding: 10px 16px;
                flex-wrap: wrap;
                gap: 6px 0;
                border-bottom: 1px solid var(--bs-border-color);
            }

            .top-header .row {
                flex-wrap: wrap;
                gap: 6px 0;
            }
            .top-header .row>[class*="col-"] {
                flex: 0 0 auto;
                width: auto;
                padding: 0;
            }

            /* .top-header .row .col-auto:first-child {
                flex: 1 1 auto;
                max-width: 60%;
            } */
            .top-header .row .col-auto:last-child {
                margin-left: auto;
            }
            
            .top-header .row .col.d-none {
                display: none !important;
            }

            /* HIDE utility nav on mobile */
            .utility-nav {
                display: none !important;
            }

            /* SHOW hamburger on mobile */
            .hamburger {
                display: flex !important;
                margin-left: 4px;
            }

            .header-contact {
                flex-wrap: wrap;
                gap: 6px 10px;
                justify-content: flex-start;
                width: 100%;
                padding-top: 6px;
                border-top: 1px solid var(--bs-border-color);
                margin-top: 2px;
            }
            .phone-block {
                gap: 6px;
            }
            .phone-block .phone-icon {
                width: 28px;
                height: 28px;
            }
            .phone-block .phone-icon svg {
                width: 13px;
                height: 13px;
            }
            
            /* Hide phone text on mobile */
            .phone-text-wrap {
                display: none !important;
            }
            
            .btn-schedule {
                font-size: 0.75rem;
                padding: 8px 16px;
                min-height: 36px;
                min-width: 80px;
                margin-left: 4px;
            }

            .bottom-nav {
                height: 56px;
                min-height: 56px;
                padding: 0 16px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .bottom-nav::-webkit-scrollbar {
                display: none;
            }
            .bottom-nav .nav-menu {
                gap: 16px;
                justify-content: flex-start;
                flex-wrap: nowrap;
                padding: 4px 0;
                width: auto;
            }
            .bottom-nav .nav-menu .nav-link {
                font-size: 0.8rem;
                flex-shrink: 0;
                gap: 4px;
                padding: 4px 0;
            }
            .bottom-nav .nav-menu .nav-link .chevron {
                font-size: 0.5rem;
            }

            /* hide desktop mega on mobile */
            .mega-menu {
                display: none !important;
            }

            /* offcanvas width */
            .offcanvas-drawer {
                width: 300px;
                padding: 20px 16px 28px;
                right: -320px;
            }
            #menu-toggle:checked~.offcanvas-drawer {
                right: 0;
            }

            /* mobile accordion: 1 column */
            .drawer-nav .nav-item .acc-toggle:checked~.drawer-mega {
                grid-template-columns: 1fr !important;
                gap: 8px;
            }

            .drawer-mega .mega-promo {
                grid-column: span 1;
            }

            .offcanvas-drawer .drawer-nav .nav-link {
                padding: 10px 6px;
                font-size: 0.95rem;
            }
            
            .drawer-mega .mega-col .mega-heading {
                font-size: 0.8rem;
            }
            
            .drawer-mega .mega-col .mega-link {
                font-size: 0.85rem;
                padding: 4px 4px 4px 10px;
            }
            
            /* Hide drawer close button on mobile */
            .offcanvas-drawer .drawer-close {
                display: none !important;
            }
        }

        /* ---------- EXTRA SMALL (≤ 400px) ---------- */
        @media (max-width: 400px) {
            .top-header {
                padding: 8px 12px;
                min-height: 60px;
            }
            .logo {
                font-size: 1.3rem;
            }
            .logo-dark {
                width: 120px;
            }
            .logo-icon {
                width: 28px;
                height: 32px;
                font-size: 16px;
            }
            .logo-icon svg {
                width: 18px;
                height: 22px;
            }
            .phone-number {
                font-size: 0.8rem;
            }
            .phone-sub {
                font-size: 0.5rem;
            }
            .btn-schedule {
                font-size: 0.65rem;
                padding: 6px 12px;
                min-height: 32px;
                min-width: 60px;
            }
            .header-contact {
                gap: 4px 6px;
            }
            .bottom-nav .nav-menu {
                gap: 12px;
            }
            .bottom-nav .nav-menu .nav-link {
                font-size: 0.7rem;
            }

            .offcanvas-drawer {
                width: 270px;
                padding: 16px 12px 24px;
                right: -290px;
            }
            
            .drawer-mega .mega-col .mega-link {
                font-size: 0.8rem;
            }
            
            .hamburger span {
                width: 24px;
                height: 2.5px;
            }
        }

        /* ---------- ACCESSIBILITY ---------- */
        .visually-hidden {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        /* scrollbar styling */
        .bottom-nav::-webkit-scrollbar,
        .utility-nav::-webkit-scrollbar {
            height: 3px;
        }
        .bottom-nav::-webkit-scrollbar-track,
        .utility-nav::-webkit-scrollbar-track {
            background: transparent;
        }
        .bottom-nav::-webkit-scrollbar-thumb,
        .utility-nav::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.25);
            border-radius: 10px;
        }
        .bottom-nav::-webkit-scrollbar-thumb:hover,
        .utility-nav::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        /* .site-header {
            width: 100%;
            max-width: 1920px;
            margin: 0 auto;
            background: var(--bs-white);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            position: sticky;
            top: 0;
            z-index: 1050;
            transition: box-shadow 0.3s ease;
        }

.logo-dark{
    width: 180px;
}

        .top-header {
            height: 80px;
            min-height: 80px;
            background: var(--bs-white);
            border-bottom: 1px solid var(--bs-border-color);
            padding: 0 40px;
            display: flex;
            align-items: center;
            transition: height 0.3s ease;
        }

        .top-header .row {
            width: 100%;
            margin: 0;
            align-items: center;
        }

        .top-header .row>* {
            padding: 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            font-size: 1.75rem;
            font-weight: 600;
            letter-spacing: -0.5px;
            white-space: nowrap;
        }

        .logo .biz {
            color: var(--dark-color);
        }
        .logo .fire {
            color: var(--primary-color);
        }

        .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 38px;
            background: var(--primary-color);
            border-radius: 6px;
            color: var(--bs-white); 
            font-weight: 600;
            line-height: 1;
            flex-shrink: 0;
        }
        .logo-icon svg {
            width: 22px;
            height: 28px;
            fill: currentColor;
        }

        .utility-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .utility-nav .nav-link {
            color: var(--dark-color); 
            font-weight: 400;
            text-decoration: none;
            padding: 4px 0;
            transition: color 0.3s ease;
            position: relative;
        }

        .utility-nav .nav-link:hover {
            color: var(--primary-color);
        }

        .utility-nav .divider {
            color: var(--bs-border-color);
            font-weight: 300;
            user-select: none;
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: nowrap;
            justify-content: flex-end;
        }

        .phone-block {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--dark-color);
            transition: opacity 0.3s ease;
        }
        .phone-block:hover {
            opacity: 0.85;
        }

        .phone-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--primary-color);
            border-radius: 50%;
            color: var(--bs-white);
            flex-shrink: 0;
        }
        .phone-icon svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .phone-number {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 0.3px;
            line-height: 1.2;
        }

        .phone-sub {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--dark-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.2;
            opacity: 0.7;
        }

        .phone-text-wrap {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .btn-schedule {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-color);
            color: var(--bs-white);
            font-weight: 600;
            padding: 15px 42px;
            border-radius: 50px;
            border: none;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.3s ease,
                transform 0.3s ease,
                box-shadow 0.3s ease;
            cursor: pointer;
            letter-spacing: 0.3px;
            min-height: 40px;
        }
        .btn-schedule:hover {
            background: #8a1730;
            color: var(--bs-white);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(169, 31, 56, 0.30);
        }
        .btn-schedule:active {
            transform: translateY(0);
            box-shadow: none;
        }


        .bottom-nav {
            background: var(--dark);
            height: 70px;
            min-height: 70px;
            padding: 0 40px;
            display: flex;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
        }

        .bottom-nav .nav-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            flex-wrap: nowrap;
            width: 100%;
            margin: 0;
            padding: 0;
            list-style: none;
            position: relative;
        }

        .bottom-nav .nav-menu .nav-item {
            display: flex;
            align-items: center;
            position: relative;
        }

        .bottom-nav .nav-menu .nav-link {
            color: rgba(255, 255, 255, 0.92);
            font-weight: 500;
            text-decoration: none;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 0;
            transition: color 0.3s ease,
                opacity 0.3s ease;
            letter-spacing: 0.2px;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            background: none;
            border-top: none;
            border-left: none;
            border-right: none;
            font-family: inherit;
            font-size: inherit;
            font-weight: inherit;
        }

        .bottom-nav .nav-menu .nav-link:hover {
            color: var(--bs-white);
            border-bottom-color: var(--primary-color);
        }

        .bottom-nav .nav-menu .nav-link .chevron {
            font-size: 0.6rem;
            opacity: 0.6;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .bottom-nav .nav-menu .nav-link:hover .chevron {
            transform: rotate(180deg);
            opacity: 1;
        }

        .mega-menu {
            position: absolute;
            top: calc(100% + 6px);
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            background: var(--bs-white);
            min-width: 720px;
            width: max-content;
            max-width: 1100px;
            padding: 32px 36px;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
            z-index: 1060;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px 24px;
            border: 1px solid var(--bs-border-color);
            border-top-width: 3px;
            border-top-color: var(--primary-color);
        }

        .bottom-nav .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .mega-col {
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 140px;
        }

        .mega-col .mega-heading {
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--bs-border-color);
            margin-bottom: 6px;
        }

        .mega-col .mega-link {
            color: #444444;
             text-decoration: none;
            padding: 5px 0;
            transition: color 0.2s ease, padding-left 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid transparent;
        }

        .mega-col .mega-link:hover {
            color: var(--primary-color);
            padding-left: 8px;
        }

        .mega-col .mega-link .mega-icon {
            color: var(--primary-color);
            font-weight: 300;
            opacity: 0.6;
            font-size: 16px;
        }

        .mega-col .mega-link:hover .mega-icon {
            opacity: 1;
        }

        .mega-col .mega-link .badge-new {
            background: var(--primary-color);
            color: var(--bs-white);
            font-size: 16px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            margin-left: auto;
        }

        .mega-promo {
            grid-column: span 1;
            background: rgba(169, 31, 56, 0.06);
            border-radius: 8px;
            padding: 18px 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: 1px solid rgba(169, 31, 56, 0.15);
            min-height: 140px;
        }

        .mega-promo .promo-title {
            color: var(--dark-color);
            font-weight: 600; 
            margin-bottom: 4px;
        }

        .mega-promo .promo-desc {
            color: rgba(0, 0, 0, 0.65);
            line-height: 1.4;
        }

        .mega-promo .promo-cta {
            display: inline-block;
            margin-top: 12px;
            color: var(--primary-color);
            font-weight: 600; 
            text-decoration: none;
            transition: color 0.2s;
        }
        .mega-promo .promo-cta:hover {
            color: #8a1730;
            text-decoration: underline;
        }

        .bottom-nav .nav-item:first-child .mega-menu {
            left: 0;
            transform: translateX(0) translateY(8px);
        }
        .bottom-nav .nav-item:first-child:hover .mega-menu {
            transform: translateX(0) translateY(0);
        }

        .bottom-nav .nav-item:nth-child(2) .mega-menu {
            left: 0;
            transform: translateX(0) translateY(8px);
        }
        .bottom-nav .nav-item:nth-child(2):hover .mega-menu {
            transform: translateX(0) translateY(0);
        }

        .bottom-nav .nav-item:last-child .mega-menu {
            left: auto;
            right: 0;
            transform: translateX(0) translateY(8px);
        }
        .bottom-nav .nav-item:last-child:hover .mega-menu {
            transform: translateX(0) translateY(0);
        }

        .bottom-nav .nav-item:nth-child(6) .mega-menu {
            left: auto;
            right: 0;
            transform: translateX(0) translateY(8px);
        }
        .bottom-nav .nav-item:nth-child(6):hover .mega-menu {
            transform: translateX(0) translateY(0);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 6px 4px;
            cursor: pointer;
            background: none;
            border: none;
            outline: none;
            transition: opacity 0.3s ease;
            z-index: 1060;
        }
        .hamburger:hover {
            opacity: 0.7;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--text);
            border-radius: 2px;
            transition: transform 0.3s ease,
                opacity 0.3s ease,
                background 0.3s ease;
            transform-origin: center;
        }


        #menu-toggle {
            display: none;
        }

        .offcanvas-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease,
                visibility 0.3s ease;
            backdrop-filter: blur(2px);
        }

        .offcanvas-drawer {
            position: fixed;
            top: 0;
            right: -380px;
            width: 340px;
            max-width: 88vw;
            height: 100%;
            background: var(--bs-white);
            z-index: 1050;
            padding: 28px 20px 40px;
            box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
            transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .offcanvas-drawer .drawer-close {
            align-self: flex-end;
            background: none;
            border: none;
            font-size: 2rem;
            line-height: 1;
            cursor: pointer;
            color: var(--dark-color);
            padding: 4px 8px;
            transition: color 0.3s ease;
        }
        .offcanvas-drawer .drawer-close:hover {
            color: var(--primary-color);
        }

        .offcanvas-drawer .drawer-logo {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .offcanvas-drawer .drawer-logo .biz {
            color: var(--dark-color);
        }
        .offcanvas-drawer .drawer-logo .fire {
            color: var(--primary-color);
        }

        .offcanvas-drawer .drawer-nav {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 2px;
            flex: 1 1 auto;
        }

        .offcanvas-drawer .drawer-nav .nav-item {
            border-bottom: 1px solid var(--bs-border-color);
        }

        .offcanvas-drawer .drawer-nav .nav-link {
            display: block;
            padding: 12px 8px;
            color: var(--dark-color); 
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease,
                padding-left 0.3s ease;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
            font-family: inherit;
            line-height: 1.4;
        }

        .offcanvas-drawer .drawer-nav .nav-link:hover {
            color: var(--primary-color);
            padding-left: 16px;
        }

        .offcanvas-drawer .drawer-nav .nav-link .chevron {
            font-size: 16px;
            opacity: 0.5;
            margin-left: 4px;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .drawer-mega {
            padding: 0 8px 12px 12px;
            display: none;
            background: #f9f9f9;
            border-radius: 4px;
            margin-top: 2px;
            margin-bottom: 4px;
        }

        .drawer-mega .mega-col {
            padding: 6px 0;
            gap: 2px;
        }

        .drawer-mega .mega-col .mega-heading {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            color: var(--primary-color);
            padding: 6px 0 2px 0;
            border-bottom: 1px solid var(--bs-border-color);
            margin-bottom: 4px;
        }

        .drawer-mega .mega-col .mega-link {
            display: block;
            padding: 5px 4px 5px 12px;
            color: #444444; 
            text-decoration: none;
            transition: color 0.2s, padding-left 0.2s;
            border-radius: 2px;
        }

        .drawer-mega .mega-col .mega-link:hover {
            color: var(--primary-color);
            padding-left: 18px;
            background: rgba(169, 31, 56, 0.05);
        }

        .drawer-mega .mega-col .mega-link .mega-icon {
            color: var(--primary-color);
            font-weight: 300;
            opacity: 0.5; 
            margin-right: 4px;
        }

        .drawer-mega .mega-promo {
            background: rgba(169, 31, 56, 0.06);
            border: 1px solid rgba(169, 31, 56, 0.12);
            border-radius: 6px;
            padding: 14px 14px;
            margin-top: 6px;
        }

        .drawer-mega .mega-promo .promo-title {
            font-weight: 600; 
            color: var(--dark-color);
        }

        .drawer-mega .mega-promo .promo-desc {
            color: rgba(0, 0, 0, 0.6);
        }

        .drawer-mega .mega-promo .promo-cta {
            color: var(--primary-color);
            font-weight: 600;  
            text-decoration: none;
        }
        .drawer-mega .mega-promo .promo-cta:hover {
            text-decoration: underline;
        }

        .drawer-nav .nav-item {
            position: relative;
        }

        .drawer-nav .nav-item .acc-toggle {
            display: none;
        }

        .drawer-nav .nav-item .acc-toggle:checked~.drawer-mega {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 16px;
        }

        .drawer-nav .nav-item .nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }

        .drawer-nav .nav-item .nav-link .chevron {
            transition: transform 0.3s ease;
            font-size: 16px;
        }

        .drawer-nav .nav-item .acc-toggle:checked~.nav-link .chevron {
            transform: rotate(180deg);
        }

        .drawer-nav .nav-item .drawer-mega {
            display: none;
            padding: 8px 4px 12px 8px;
            background: #f7f7f7;
            border-radius: 4px;
            margin: 2px 0 6px 0;
        }

        .offcanvas-drawer .drawer-phone {
            margin-top: auto;
            padding-top: 16px;
            border-top: 1px solid var(--bs-border-color);
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .offcanvas-drawer .drawer-phone .number {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        .offcanvas-drawer .drawer-phone .sub {
           
            color: var(--dark-color);
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .offcanvas-drawer .drawer-btn {
            margin-top: 12px;
        }

        #menu-toggle:checked~.offcanvas-overlay {
            opacity: 1;
            visibility: visible;
        }
        #menu-toggle:checked~.offcanvas-drawer {
            right: 0;
        }



        @media (max-width: 991.98px) {
            .top-header {
                height: 90px;
                min-height: 90px;
                padding: 0 24px;
            }

            .utility-nav {
                overflow-x: auto;
                overflow-y: hidden;
                justify-content: flex-start;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding: 4px 0;
                gap: 8px;
            }
            .utility-nav::-webkit-scrollbar {
                display: none;
            }
            .utility-nav .nav-link {
                 
                padding: 4px 6px;
                flex-shrink: 0;
            }
            .utility-nav .divider {
                flex-shrink: 0;
            }

            .header-contact {
                gap: 12px;
            }
            .phone-block .phone-icon {
                width: 30px;
                height: 30px;
            }
            .phone-block .phone-icon svg {
                width: 14px;
                height: 14px;
            }
            .phone-number {
                font-size: 18px;
            }
            .phone-sub {
                font-size: 0.6rem;
            }

            .btn-schedule {
                font-size: 0.8rem;
                padding: 12px 20px;
                min-height: 44px;
            }

            .bottom-nav {
                height: 60px;
                min-height: 60px;
                padding: 0 24px;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .bottom-nav::-webkit-scrollbar {
                display: none;
            }
            .bottom-nav .nav-menu {
                gap: 24px;
                justify-content: flex-start;
                flex-wrap: nowrap;
                width: auto;
                padding: 4px 0;
            }
            .bottom-nav .nav-menu .nav-link {
                font-size: 0.9rem;
                flex-shrink: 0;
            }

            .mega-menu {
                min-width: 400px;
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
                padding: 24px;
                left: 0 !important;
                right: auto !important;
                transform: translateX(0) translateY(8px) !important;
                max-width: 90vw;
            }
            .bottom-nav .nav-item:hover .mega-menu {
                transform: translateX(0) translateY(0) !important;
            }
            .bottom-nav .nav-item:last-child .mega-menu {
                left: auto !important;
                right: 0 !important;
                transform: translateX(0) translateY(8px) !important;
            }
            .bottom-nav .nav-item:last-child:hover .mega-menu {
                transform: translateX(0) translateY(0) !important;
            }
            .bottom-nav .nav-item:nth-child(6) .mega-menu {
                left: auto !important;
                right: 0 !important;
                transform: translateX(0) translateY(8px) !important;
            }
            .bottom-nav .nav-item:nth-child(6):hover .mega-menu {
                transform: translateX(0) translateY(0) !important;
            }
            .mega-promo {
                grid-column: span 2;
                min-height: auto;
            }
        }

        @media (max-width: 767.98px) {
            .top-header {
                height: auto;
                min-height: 70px;
                padding: 10px 16px;
                flex-wrap: wrap;
                gap: 6px 0;
                border-bottom: 1px solid var(--bs-border-color);
            }

            .top-header .row {
                flex-wrap: wrap;
                gap: 6px 0;
            }
            .top-header .row>[class*="col-"] {
                flex: 0 0 auto;
                width: auto;
                padding: 0;
            }

            .top-header .row .col-auto:first-child {
                flex: 1 1 auto;
                max-width: 60%;
            }
            .top-header .row .col-auto:last-child {
                margin-left: auto;
            }

            .utility-nav {
                display: none !important;
            }

            .hamburger {
                display: flex;
            }

            .header-contact {
                flex-wrap: wrap;
                gap: 6px 12px;
                justify-content: flex-start;
                width: 100%;
                padding-top: 6px;
                border-top: 1px solid var(--bs-border-color);
                margin-top: 2px;
            }
            .phone-block {
                gap: 6px;
            }
            .phone-block .phone-icon {
                width: 28px;
                height: 28px;
            }
            .phone-block .phone-icon svg {
                width: 13px;
                height: 13px;
            }
            .phone-number {
                
            }
            .phone-sub {
                font-size: 0.55rem;
            }
            .btn-schedule {
                font-size: 0.75rem;
                padding: 10px 16px;
                min-height: 38px;
                min-width: 100px;
            }

            .bottom-nav {
                height: 56px;
                min-height: 56px;
                padding: 0 16px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .bottom-nav::-webkit-scrollbar {
                display: none;
            }
            .bottom-nav .nav-menu {
                gap: 16px;
                justify-content: flex-start;
                flex-wrap: nowrap;
                padding: 4px 0;
                width: auto;
            }
            .bottom-nav .nav-menu .nav-link {
                font-size: 0.8rem;
                flex-shrink: 0;
                gap: 4px;
                padding: 4px 0;
            }
            .bottom-nav .nav-menu .nav-link .chevron {
                font-size: 0.5rem;
            }

            .mega-menu {
                display: none !important;
            }

            .offcanvas-drawer {
                width: 300px;
                padding: 20px 16px 28px;
                right: -320px;
            }
            #menu-toggle:checked~.offcanvas-drawer {
                right: 0;
            }

            .drawer-nav .nav-item .acc-toggle:checked~.drawer-mega {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .drawer-mega .mega-promo {
                grid-column: span 1;
            }

            .offcanvas-drawer .drawer-nav .nav-link {
                
                padding: 10px 6px;
            }
        }

        @media (max-width: 400px) {
            .top-header {
                padding: 8px 12px;
                min-height: 60px;
            }
            .logo {
                font-size: 1.3rem;
            }
            .logo-icon {
                width: 28px;
                height: 32px;
                font-size: 16px;
            }
            .logo-icon svg {
                width: 18px;
                height: 22px;
            }
            .phone-number {
                font-size: 0.8rem;
            }
            .phone-sub {
                font-size: 0.5rem;
            }
            .btn-schedule {
                font-size: 0.65rem;
                padding: 8px 12px;
                min-height: 32px;
                min-width: 70px;
            }
            .header-contact {
                gap: 4px 8px;
            }
            .bottom-nav .nav-menu {
                gap: 12px;
            }
           
            .offcanvas-drawer {
                width: 270px;
                padding: 16px 12px 24px;
                right: -290px;
            }
        }

        .visually-hidden {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        .bottom-nav::-webkit-scrollbar,
        .utility-nav::-webkit-scrollbar {
            height: 3px;
        }
        .bottom-nav::-webkit-scrollbar-track,
        .utility-nav::-webkit-scrollbar-track {
            background: transparent;
        }
        .bottom-nav::-webkit-scrollbar-thumb,
        .utility-nav::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.25);
            border-radius: 10px;
        }
        .bottom-nav::-webkit-scrollbar-thumb:hover,
        .utility-nav::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.4);
        } */

        /* ---------- FOOTER MAIN (DARK) ---------- */
        .site-footer {
            background: var(--bs-dark);
            color: #f0f0f0;
            border-top: 3px solid var(--primary-color);
        }

        .footer-main {
            padding: 3rem 0 2rem;
        }

        /* Logo */
        .footer-brand .logo {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: -0.5px;
            margin-bottom: 0.5rem;
        }

        .footer-brand .logo .biz {
            color: var(--bs-white);
        }
        .footer-brand .logo .fire {
            color: var(--primary-color);
        }

        .footer-brand .logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 38px;
            background: var(--primary-color);
            border-radius: 6px;
            color: var(--bs-white);
            flex-shrink: 0;
        }
        .footer-brand .logo .logo-icon svg {
            width: 22px;
            height: 28px;
            fill: currentColor;
        }

        .brand-tagline {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-top: 0.25rem;
            max-width: 200px;
            line-height: 1.5;
        }

        /* Headings */
        .footer-heading {
            color: #ffffff;
            
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 18px;
            padding-bottom: 0.6rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.08);
            position: relative;
        }

        /* Adding a subtle 3-color accent to headings (Primary, Gold/Orange, Mint) */
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        /* Different accent colors for each column (3 color content) */
        .col-lg-3:nth-child(2) .footer-heading::after {
            background: #f39c12;
            /* Gold accent for Residential */
        }
        .col-lg-3:nth-child(3) .footer-heading::after {
            background: #2ecc71;
            /* Green accent for Commercial */
        }
        .col-lg-3:nth-child(4) .footer-heading::after {
            background: #3498db;
            /* Blue accent for Company */
        }

        /* Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.4rem;
        }

        .footer-links li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: inline-block;
            padding: 2px 0;
            position: relative;
        }

        .footer-links li a:hover {
            color: #ffffff;
            padding-left: 6px;
        }

        .footer-links li a::before {
            content: '›';
            color: var(--primary-color);
            opacity: 0;
            transition: opacity 0.3s ease, margin-right 0.3s ease;
            margin-right: 0;
            font-weight: 600;
        }

        .footer-links li a:hover::before {
            opacity: 1;
            margin-right: 6px;
        }

        /* ---------- FOOTER BOTTOM (WHITE) ---------- */
        .footer-bottom {
            background: var(--bs-white);
            color: var(--dark-color);
            border-top: 1px solid var(--bs-border-color);
            padding: 18px 0;
        }

        .legal-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
        }

        .legal-links li a {
            color: var(--dark-color);
            text-decoration: none;
             
            transition: color 0.3s ease;
            opacity: 0.7;
        }

        .legal-links li a:hover {
            color: var(--primary-color);
            opacity: 1;
            text-decoration: underline;
        }

        .copyright {
            margin: 0;
            text-align: right;
             
            color: var(--dark-color);
            opacity: 0.6;
        }

        .footer-brand {
    margin-top: 28px;
}

        /* ---------- RESPONSIVE FOOTER ---------- */

        /* Tablet */
        @media (max-width: 991.98px) {
            .footer-main {
                padding: 2.5rem 0 1.5rem;
            }

            .col-md-6 {
                flex: 0 0 50%;
                max-width: 50%;
                margin-bottom: 2rem;
            }

            .brand-tagline {
                max-width: 100%;
            }

            .footer-bottom .legal-links {
                gap: 0.3rem 18px;
            }
        }

        /* Mobile */
        @media (max-width: 767.98px) {
            .footer-main {
                padding: 2rem 0 0.5rem;
            }

            .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 1.8rem;
            }

            .footer-heading {
                font-size: 18px;
                margin-bottom: 0.8rem;
            }

            .footer-links li a {
                font-size: 0.9rem;
            }

            .footer-bottom .row {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom .legal-links {
                justify-content: center;
                margin-bottom: 0.5rem;
            }

            .copyright {
                text-align: center;
                font-size: 0.8rem;
            }

            .footer-brand .logo {
                font-size: 1.6rem;
            }
        }

        /* Extra Small */
        @media (max-width: 400px) {
            .footer-bottom .legal-links {
                flex-direction: column;
                gap: 0.7rem;
            }
        }



        /* services-hotwater page*/

/*=========================================
Hero Section
=========================================*/
.hero-section {
  background: linear-gradient(135deg, #3d070f 0%, #150304 50%, #050101 100%);
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
}

@media (min-width: 992px) {
  .hero-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .hero-row {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 0;
}

.hero-highlight {
  color: var(--primary-color, #d81338);
}

.hero-footer {
  background-color: #070101;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hero-footer-row {
  row-gap: 1rem;
}

.hero-footer-container{
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero-footer-row {
    column-gap: 1rem;
  }
  .hero-footer-btn-col {
    text-align: right;
  }
}

.hero-footer-text {
  color: #f3f4f6;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0;
}

.hero-btn {
  background-color: var(--primary-color, #d81338);
  color: #ffffff;
  font-weight: 600;
  
  letter-spacing: 0.5px;
  padding: 0.85rem 2rem;
  border-radius: var(--bs-border-radius, 0.375rem);
  border: none;
  transition: background-color 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.hero-btn:hover {
  background-color: var(--primary-hover, #b50f2e);
  color: #ffffff;
}

/*=========================================
Partnership Section
=========================================*/
.partnership-section {
  color: var(--text-light, #ffffff);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .partnership-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.partnership-row {
  row-gap: 3rem;
}

@media (min-width: 992px) {
  .partnership-row {
    column-gap: 3rem;
  }
}

.partnership-wrapper {
  overflow: hidden;
  border-radius: var(--bs-border-radius-lg, 0.75rem);
  box-shadow: var(--bs-shadow-lg, 0 1rem 3rem rgba(0, 0, 0, 0.175));
}

.partnership-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.partnership-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.partnership-description {
  color: #a3a6a9;
  
  line-height: 1.7;
  margin-bottom: 0;
}

/*=========================================
CTA Strip Section
=========================================*/
.cta-strip-section {
  background: linear-gradient(135deg, #c80f3b 0%, #800622 100%);
  color: #ffffff;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.cta-strip-row {
  row-gap: 1.5rem;
}

@media (min-width: 992px) {
  .cta-strip-row {
    column-gap: 1.5rem;
  }
}

.cta-strip-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 992px) {
  .cta-strip-info {
    justify-content: flex-start;
  }
}

.cta-strip-icon-wrap {
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color, #d81338);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.cta-strip-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.cta-strip-message {
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0;
}

.cta-strip-phone {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.cta-strip-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 992px) {
  .cta-strip-actions {
    justify-content: flex-end;
  }
}

.cta-strip-label {
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
}

.cta-strip-chat-btn {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
 
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-strip-chat-btn:hover {
  background-color: #ffffff;
  color: var(--primary-color, #d81338);
}

.cta-strip-chat-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 991.98px) {
  .cta-strip-section .row {
    text-align: center;
  }
}

/*=========================================
How It Works Section
=========================================*/
.how-it-works-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .how-it-works-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.how-it-works-row {
  row-gap: 3rem;
}

@media (min-width: 992px) {
  .how-it-works-row {
    column-gap: 3rem;
  }
}

.how-it-works-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how-it-works-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.25;
  margin-bottom: 0;
}

.how-it-works-description {
  color: #a3a6a9;
  
  line-height: 1.7;
  margin-bottom: 0;
}

.how-it-works-image-wrap {
  overflow: hidden;
  border-radius: var(--bs-border-radius-lg, 0.75rem);
  box-shadow: var(--bs-shadow-lg, 0 1rem 3rem rgba(0, 0, 0, 0.175));
}

.how-it-works-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/*=========================================
Get Approved Section
=========================================*/
.get-approved-section {
  background: linear-gradient(135deg, #c80f3b 0%, #800622 100%);
  color: #ffffff;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.get-approved-row {
  row-gap: 1.5rem;
}

@media (min-width: 992px) {
  .get-approved-row {
    column-gap: 1.5rem;
  }
}

.get-approved-left-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .get-approved-left-wrap {
    justify-content: flex-start;
  }
}

.get-approved-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
}

.get-approved-right-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .get-approved-right-wrap {
    justify-content: flex-end;
  }
}

.get-approved-action-btn {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.get-approved-action-btn:hover {
  background-color: #ffffff;
  color: var(--primary-color, #d81338);
}

.get-approved-action-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 991.98px) {
  .get-approved-section .row {
    text-align: center;
  }
}

/*=========================================
Benefits Section
=========================================*/
.benefits-section {
  background-color: #ffffff;

}

@media (min-width: 992px) {
  .benefits-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.benefits-row {
  row-gap: 3rem;
}

@media (min-width: 992px) {
  .benefits-row {
    column-gap: 3rem;
  }
}

.benefits-header {
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .benefits-header {
    margin-bottom: 3rem;
  }

 
}



.benefits-subtitle {
  color: var(--dark-color);
  
  line-height: 1.6;
  margin-bottom: 0;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefits-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color, #d81338);
  flex-shrink: 0;
}

.benefits-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits-item-title {
  color: var(--primary-color, #d81338);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  margin: 0;
}

.benefits-item-description {
  color: #6c757d;
  
  margin-bottom: 0;
  line-height: 1.5;
}

.benefits-card-wrap {
  border-radius: var(--bs-border-radius-lg, 0.75rem);
  overflow: hidden;
  box-shadow: var(--bs-shadow-lg, 0 1rem 3rem rgba(0, 0, 0, 0.15));
}

.benefits-card-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.benefits-promo-card {
  background-color: #161616;
  padding: 2rem;
  color: #ffffff;
}

.benefits-promo-title {
  color: var(--primary-color, #d81338);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.benefits-promo-heading {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.benefits-promo-btn {
  background-color: var(--primary-color, #d81338);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
  border: none;
}

.benefits-promo-btn:hover {
  background-color: var(--primary-hover, #b50f2e);
  color: #ffffff;
}

/*=========================================
Schedule CTA Section
=========================================*/
.schedule-cta-section {
  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .schedule-cta-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.schedule-cta-row {
  row-gap: 3rem;
}

@media (min-width: 992px) {
  .schedule-cta-row {
    column-gap: 3rem;
  }
}

.schedule-card {
  background: linear-gradient(135deg, #7c1a1a 0%, #1e0909 100%);
  border-radius: var(--bs-border-radius-lg, 0.75rem);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.schedule-card-top {
  padding: 2.5rem 2.25rem;
}

.schedule-card-header-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.schedule-card-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color, #d81338);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.schedule-card-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.schedule-card-subtitle {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 400;
}

.schedule-card-title {
  color: #ffffff;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0;
}

.schedule-card-footer {
  background-color: #0c0404;
  padding: 1.25rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.schedule-phone-link {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.schedule-phone-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.schedule-action-btn {
  background-color: var(--primary-color, #d81338);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease;
  border: none;
}

.schedule-action-btn:hover {
  background-color: var(--primary-hover, #b50f2e);
  color: #ffffff;
}

.schedule-action-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.schedule-content-wrap {
  padding-left: 0;
}

@media (min-width: 992px) {
  .schedule-content-wrap {
    padding-left: 1rem;
  }
}

.schedule-right-title {
  font-size: clamp(2.25rem, 3.2vw, 3rem);
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.schedule-right-description {
  color: #6c757d;
  
  line-height: 1.6;
  margin-bottom: 0;
}

.schedule-phone-inline-link {
  text-decoration: none;
}

.schedule-highlight {
  color: var(--primary-color, #d81338);
  font-weight: 600;
}

/*=========================================
Certifications Section
=========================================*/
.cert-section {
    background-color: #fbfbfb;
    overflow: hidden;
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .cert-section {
        padding: 5rem 0;
    }
}

.cert-wrap {
    width: 100%;
}

.cert-carousel-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .cert-carousel-wrap {
        gap: 1.5rem;
    }
}

.cert-prev-action-btn,
.cert-next-action-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #555555;
    transition: color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-prev-action-btn:hover,
.cert-next-action-btn:hover {
    color: var(--primary-color, #d81338);
}

.cert-prev-action-btn svg,
.cert-next-action-btn svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cert-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-grow: 1;
}

.cert-track::-webkit-scrollbar {
    display: none;
}

.cert-card {
    flex: 0 0 calc(16.666% - 1.05rem); 
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    scroll-snap-align: start;
    transition: box-shadow 0.2s ease-in-out;
}

.cert-card:hover {
    box-shadow: var(--bs-shadow-sm, 0 4px 10px rgba(0,0,0,0.05));
}

.cert-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.65);
    transition: all 0.3s ease;
}

.cert-card:hover .cert-logo-img {
    filter: grayscale(0%) opacity(1);
}

@media (max-width: 1200px) {
    .cert-card { flex: 0 0 calc(20% - 1rem); }
}

@media (max-width: 992px) {
    .cert-card { flex: 0 0 calc(25% - 0.93rem); }
}

@media (max-width: 768px) {
    .cert-card { flex: 0 0 calc(33.333% - 0.83rem); }
}

@media (max-width: 576px) {
    .cert-card { flex: 0 0 calc(50% - 0.625rem); }
    .cert-prev-action-btn,
    .cert-next-action-btn { display: none; }
}


/* contact-page */

/*==================================================
Contact Hero Section
==================================================*/

.contact-hero-section {
    background: linear-gradient(90deg, #7c1919 0%, #2e0606 55%, #020000 100%);
    padding: 8rem 0;
    width: 100%;
}

.contact-hero-wrapper {
    width: 100%;
}

.contact-hero-content {
    width: 100%;
}

.contact-hero-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact-hero-subtitle {
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 0;
    font-size: 1.35rem;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .contact-hero-section { 
        padding: 5rem 0; 
    }
    .contact-hero-title { 
        font-size: 2.75rem; 
    }
    .contact-hero-subtitle { 
        font-size: 1.15rem; 
    }
}

@media (min-width: 768px) {
    .contact-hero-section { 
        padding: 9rem 0; 
    }
    .contact-hero-title { 
        font-size: 4rem; 
    }
    .contact-hero-subtitle { 
        font-size: 1.5rem; 
    }
}

@media (min-width: 992px) {
    .contact-hero-title { 
        font-size: 4.5rem; 
    }
}


/*==================================================
Contact Form Section
==================================================*/

.contact-form-section {
    background-color:  #ffffff;

}

@media (min-width: 992px) {
   
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form-grid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

@media (min-width: 992px) {
    .contact-form-grid {
        --bs-gutter-x: 2rem;
        --bs-gutter-y: 2rem;
    }
}

.contact-info-card,
.contact-form-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: var(--bs-border-radius-lg, 0.75rem);
    box-shadow: var(--bs-shadow-sm, 0 4px 15px rgba(0, 0, 0, 0.04));
    height: 100%;
    padding: 2rem;
}

@media (min-width: 992px) {
    .contact-info-card,
    .contact-form-card {
        padding: 3rem;
    }
}

.contact-info-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    margin-top: 0px;
    color: var(--secondary-color);
}

.contact-info-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    
}

.contact-info-list {
    margin-top: 1.5rem;
}

.contact-info-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.contact-info-item.contact-info-item-mail {
    align-items: flex-start;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 72px;
    right: 0;
    height: 1px;
    background-color: var(--border-color, #e5e7eb);
}

.contact-info-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #ce112d);
    flex-shrink: 0;
}

.contact-info-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-info-icon-wrapper svg.contact-info-stroke-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-item.contact-info-item-mail .contact-info-item-content {
    padding-top: 0.25rem;
}

.contact-info-item-label {
   
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.contact-info-item-value {
    color: var(--primary-color, #ce112d);
    font-weight: 600;
   
}

.contact-info-item-address {
    color: #6c757d;
    line-height: 1.4;
}

.contact-form-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    font-size: 1.75rem;
    margin-top: 0px;
    color: var(--secondary-color);
}

.contact-form-row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
    margin-bottom: 1rem;
}

.contact-form-group.contact-form-group-full {
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.contact-form-label {
    display: block;
    margin-bottom: 0.4rem;
    
    font-weight: 400;
    color: var(--text-dark, #212529);
}

.contact-form-input,
.contact-form-textarea {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dark, #212529);
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: var(--bs-border-radius, 0.375rem);
    transition: border-color 0.15s ease-in-out;
    font-family: inherit;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    border-color: var(--primary-color, #ce112d);
    outline: 0;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-submit-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0.85rem 1.5rem;
    border-radius: var(--bs-border-radius, 0.375rem);
    color: #ffffff;
    background-color: var(--primary-color, #ce112d);
    transition: background-color 0.2s ease-in-out;
    width: 100%;
   
}

.contact-form-submit-btn:hover {
    background-color: var(--primary-hover, #aa0f26);
}


/*==================================================
Services Section
==================================================*/

.services-section {
    background-color: #f9fafb;
   
}

@media (min-width: 992px) {
    .services-section {
     
    }
    /* .services-section .container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    } */
}

.services-wrapper {
    width: 100%;
}

.services-header-row {
    margin-bottom: 3rem;
}

.services-title {
    color: var(--secondary-color);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1rem;
    margin-top: 0px;
}

@media (min-width: 768px) {
  
}

.services-description {
    color: #6c757d;
   
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .services-description,.services-card-description,.services-callout-text,.location-text   {
        font-size: 16px;
    }

    .services-title,.location-title{
        font-size: 32px !important;
    }
}

.services-grid-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

@media (min-width: 992px) {
    .services-grid-row {
        --bs-gutter-x: 3rem;
        --bs-gutter-y: 3rem;
    }
}

.services-column {
    display: flex;
    flex-direction: column;
}

.services-column-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

@media (min-width: 992px) {
    .services-column-inner {
        gap: 3rem;
    }
}

.services-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.services-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #d81338);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.services-card-title {
    color: var(--primary-color, #d81338);
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin: 0px;
}

.services-card-description {
    color: #6c757d;
    margin-bottom: 0;
    
    line-height: 1.5;
}

.services-callout-card {
    background: linear-gradient(135deg, #7c1a1a 0%, #1e0909 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
    border-radius: var(--bs-border-radius, 0.375rem);
    padding: 1.5rem;
}

.services-callout-text {
    color: #ffffff;
    margin-bottom: 0;
    
    font-weight: 300;
    line-height: 1.6;
}

.services-callout-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.services-callout-link:hover {
    color: #f1f1f1 !important;
    text-decoration-thickness: 2px;
}


/*==================================================
Location Section
==================================================*/

.location-section {
    background-color: var(--bs-body-bg, #ffffff);

}

@media (min-width: 992px) {
    .location-section {
      
    }
}

.location-wrapper {
    width: 100%;
}

.location-row {
    align-items: center;
}

.location-content {
    padding-right: 0;
}

.location-title {
    font-size: 44px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    margin-top: 0px;
}

.location-group {
    margin-bottom: 1.5rem;
}

.location-subtitle {
   
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-text {
    
    line-height: 1.5;
    color: #6c757d;
    margin-bottom: 0;
}

.location-btn {
    background-color: var(--primary-color, #d81338);
    color: #ffffff;
    font-weight: 500;
    
    transition: background-color 0.2s ease-in-out;
    text-decoration: none;
    display: inline-block;
    border-radius: var(--bs-border-radius, 0.375rem);
    padding: 0.5rem 1.5rem;
    margin-top: 0.5rem;
}

.location-btn:hover {
    background-color: var(--primary-hover, #b50f2e);
    color: #ffffff;
}

.location-map-column {
    margin-top: 3rem;
}



@media (min-width: 992px) {
    .location-map-column {
        margin-top: 0;
    }
    .location-content {
        padding-right: 3rem;
    }
}

.location-map-wrapper {
    display: flex;
    justify-content: flex-end;
      align-items: center;
    width: 100%;
    min-height: 500px;
}

@media (max-width: 991.98px) {
    .location-map-wrapper {
        justify-content: center;
    }
}

.location-map-image {
    max-width: 100%;
    height: auto;
}


/*==================================================
Certifications Section
==================================================*/

/*=========================================
Certifications Section
=========================================*/
.cert-section {
    background-color: #fbfbfb;
    overflow: hidden;
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .cert-section {
        padding: 5rem 0;
    }
}

.cert-wrap {
    width: 100%;
}

.cert-carousel-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .cert-carousel-wrap {
        gap: 1.5rem;
    }
}

.cert-prev-action-btn,
.cert-next-action-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #555555;
    transition: color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-prev-action-btn:hover,
.cert-next-action-btn:hover {
    color: var(--primary-color, #d81338);
}

.cert-prev-action-btn svg,
.cert-next-action-btn svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cert-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-grow: 1;
}

.cert-track::-webkit-scrollbar {
    display: none;
}

.cert-card {
    flex: 0 0 calc(16.666% - 1.05rem); 
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    scroll-snap-align: start;
    transition: box-shadow 0.2s ease-in-out;
}

.cert-card:hover {
    box-shadow: var(--bs-shadow-sm, 0 4px 10px rgba(0,0,0,0.05));
}

.cert-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.65);
    transition: all 0.3s ease;
}

.cert-card:hover .cert-logo-img {
    filter: grayscale(0%) opacity(1);
}

@media (max-width: 1200px) {
    .cert-card { flex: 0 0 calc(20% - 1rem); }
}

@media (max-width: 992px) {
    .cert-card { flex: 0 0 calc(25% - 0.93rem); }
}

@media (max-width: 768px) {
    .cert-card { flex: 0 0 calc(33.333% - 0.83rem); }
}

@media (max-width: 576px) {
    .cert-card { flex: 0 0 calc(50% - 0.625rem); }
    .cert-prev-action-btn,
    .cert-next-action-btn { display: none; }
}


/* pravarcy and policy */


  /* ========================================
     Privacy Policy Page Custom Styles
     ======================================== */
  .privacy-hero-section {
    background: linear-gradient(135deg, #3d070f 0%, #150304 50%, #050101 100%);
    padding: 3.5rem 0;
    color: #ffffff;
  }

  .privacy-breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
  }

  .privacy-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
  }

  .privacy-breadcrumb a:hover {
    color: #ffffff;
  }

  .privacy-hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    margin-bottom: 0;
  }

  .privacy-main-section {
    background-color: #ffffff;
    color: var(--dark-color);
    padding: 4rem 0;
  }

  .privacy-effective-date {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 2.5rem;
    font-weight: 500;
  }

  .privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }

  .privacy-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #222222;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .privacy-content p, 
  .privacy-content li {
    
    line-height: 1.7;
    color: #555555;
  }

  .privacy-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
  }

  .privacy-content li {
    margin-bottom: 0.5rem;
  }

  .privacy-content a {
    color: var(--primary-color, #d81338);
    text-decoration: underline;
  }

  .privacy-content a:hover {
    color: var(--primary-hover, #b50f2e);
  }

/*=========================================
Certifications Section
=========================================*/
.cert-section {
    background-color: #fbfbfb;
    overflow: hidden;
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .cert-section {
        padding: 5rem 0;
    }
}

.cert-wrap {
    width: 100%;
}

.cert-carousel-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .cert-carousel-wrap {
        gap: 1.5rem;
    }
}

.cert-prev-action-btn,
.cert-next-action-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #555555;
    transition: color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-prev-action-btn:hover,
.cert-next-action-btn:hover {
    color: var(--primary-color, #d81338);
}

.cert-prev-action-btn svg,
.cert-next-action-btn svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cert-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-grow: 1;
}

.cert-track::-webkit-scrollbar {
    display: none;
}

.cert-card {
    flex: 0 0 calc(16.666% - 1.05rem); 
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    scroll-snap-align: start;
    transition: box-shadow 0.2s ease-in-out;
}

.cert-card:hover {
    box-shadow: var(--bs-shadow-sm, 0 4px 10px rgba(0,0,0,0.05));
}

.cert-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.65);
    transition: all 0.3s ease;
}

.cert-card:hover .cert-logo-img {
    filter: grayscale(0%) opacity(1);
}

@media (max-width: 1200px) {
    .cert-card { flex: 0 0 calc(20% - 1rem); }
}

@media (max-width: 992px) {
    .cert-card { flex: 0 0 calc(25% - 0.93rem); }
}

@media (max-width: 768px) {
    .cert-card { flex: 0 0 calc(33.333% - 0.83rem); }
}

@media (max-width: 576px) {
    .cert-card { flex: 0 0 calc(50% - 0.625rem); }
    .cert-prev-action-btn,
    .cert-next-action-btn { display: none; }
}



/* bhagrashhreee */

/*=========================================
Hero Section
=========================================*/
.about-section {
    position: relative;
    background-image: url('technician-bg.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(51, 0, 10, 0.98) 0%,
        rgba(102, 10, 25, 0.95) 35%,
        rgba(168, 28, 45, 0.75) 60%,
        rgba(168, 28, 45, 0.1) 100%
    );
    z-index: 1;
}

.hero-container {
    padding-top: var(--spacer-5);
    padding-bottom: var(--spacer-5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bs-white);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.hero-description {
    
    font-weight: 400;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.5;
}

/*=========================================
CTA Section
=========================================*/
.cta-section {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.cta-schedule-btn {
    background-color: #a81c2d;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--bs-border-radius);
    
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-schedule-btn:hover {
    background-color: #881220;
    color: #ffffff;
    transform: translateY(-1px);
}



.benefits-header-row {
    margin-bottom: 3rem;
}



.benefits-card-col {
    margin-bottom: 1.5rem;
}

.benefits-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: var(--bs-border-radius-lg);
    box-shadow: var(--bs-shadow-sm);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefits-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07) !important;
}

.benefits-card-icon {
    width: 60px;
    height: 60px;
    background-color: #d9232d;
    color: #ffffff;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefits-card-title {
    
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.benefits-card-description {
    
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .benefits-container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/*=========================================
Dark Banner / Stats Section
=========================================*/
.banner-section {
    background-color: var(--dark-color);
    color: #ffffff;

}

.banner-text-row {
    margin-bottom: 1.5rem;
}

.banner-content {
    max-width: 820px;
    margin: 0 auto;
}

.banner-text-primary {
    
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.banner-text-secondary {
    
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.5;
}

.banner-stat-col {
    margin-bottom: 1.5rem;
}

.banner-stat-card {
    border: 1px solid #777777;
    border-radius: var(--bs-border-radius-xl);
    padding: 1.25rem 2rem;
    min-width: 220px;
    text-align: center;
}

.banner-stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.banner-stat-label {
    
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .banner-container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/*=========================================
About New Jersey Section
=========================================*/
.about-nj-section {
    background-color: #ffffff;
    color: var(--dark-color);

}

.about-nj-title {
    font-size: 44px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.25;
}

.about-nj-description {
    margin-bottom: 1.5rem;
}

.about-nj-description p {
    
    line-height: 1.6;
    color: var(--dark-color);
}

.about-nj-text-first {
    margin-bottom: 1rem;
}

.about-nj-text-last {
    margin-bottom: 0;
}

.about-nj-goal-card {
    background: linear-gradient(135deg, #2b0005 0%, #8b1220 50%, #c82333 100%);
    border-radius: var(--bs-border-radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 440px;
    padding: 1.5rem;
    color: #ffffff;
}

.about-nj-goal-subtext {
    
    font-weight: 400;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.about-nj-goal-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-nj-image {
    max-width: 320px;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .about-nj-container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/*=========================================
Logo Slider Section
=========================================*/
.slider-section {
    background-color: #f7f7f8;
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
    user-select: none;
}

.slider-header-row {
    margin-bottom: 1.5rem;
}

.slider-logo-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.slider-section:hover .slider-logo-track {
    animation-play-state: paused;
}

.slider-logo-card {
    width: 140px;
    height: 140px;
    background-color: #ffffff;
    border-radius: var(--bs-border-radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-shrink: 0;
}

.slider-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.slider-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.slider-arrow-btn {
    background: transparent;
    border: none;
    color: var(--dark-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    padding: 0.5rem 0.75rem;
    transition: opacity 0.2s;
}

.slider-arrow-btn:hover {
    opacity: 0.6;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

/*=========================================
  Service Banner Section
=========================================*/

.service-banner-section {
  background: linear-gradient(90deg, #1d0306 0%, #3d070d 25%, #8c1622 75%, #a81c2d 100%);
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: var(--bs-white);
}

.service-banner-wrapper {
  width: 100%;
}

.service-banner-breadcrumb-nav {
  margin-bottom: 0.5rem;
}

.service-banner-breadcrumb {
  color: rgba(255, 255, 255, 0.85);
  
  margin-bottom: 0;
}

.service-banner-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.service-banner-breadcrumb a:hover {
  text-decoration: underline;
}

.service-banner-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--bs-white);
  margin-bottom: 1rem;
}

.service-banner-description {
  
  font-weight: 400;
  color: var(--bs-white);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-banner-actions {
  display: block;
}

.service-banner-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--bs-border-radius, 0.375rem);
  padding: 0.6rem 1.75rem;
  
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.service-banner-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

/*=========================================
  Services Section
=========================================*/

.services-section {

  background-color: var(--bs-white);
  color: var(--dark-color);
}

.services-wrapper {
  width: 100%;
}

.services-title-wrapper {
  margin-bottom: 3rem;
}



.services-tabs-column {
  display: flex;
  flex-direction: column;
}

.services-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-tab-item {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: var(--bs-border-radius-lg, 0.5rem);
  box-shadow: var(--bs-shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.services-tab-item:hover,
.services-tab-item.active {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(0, 0, 0, 0.05);
}

.services-tab-icon {
  width: 48px;
  height: 48px;
  background-color: #d9232d;
  color: #ffffff;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-tab-text {
  
  font-weight: 600;
  color: var(--dark-color);
}

.services-display-card {
  background-color: #f7f7f8;
  border-radius: var(--bs-border-radius-xl, 1rem);
  height: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .services-display-card {
    padding: 3rem;
  }
}

.services-display-content {
  width: 100%;
}

.services-display-map {
  max-width: 100%;
  height: auto;
}

.services-display-text {
  
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.services-display-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.services-display-btn {
  background-color: #a81c2d;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--bs-border-radius-sm, 0.25rem);
  
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.services-display-btn:hover {
  background-color: #881220;
  color: #ffffff;
}


@media (max-width: 480px) {
  .services-title {
    font-size: 28px;
    text-align: center;
  }

  .services-description{
     text-align: center;
font-size: 16px;
  }

  .contact-info-description,.contact-info-item-address,.contact-form-label,.services-card-description,.services-callout-text,.location-text{
    font-size: 16px;
  }

  .location-map-wrapper{
    margin-bottom: 0px;
  }

  .location-title{
    font-size: 28px;
    text-align: center;
  }

  .location-content {
    padding-right: 0;
    text-align: center;
}
}
/*=========================================
  Locations Section
=========================================*/

.locations-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0d0d0d;
  color: #ffffff;
}

.locations-wrapper {
  width: 100%;
}

.locations-title-wrapper {
  margin-bottom: 3rem;
}

.locations-title {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.locations-column {
  display: flex;
  flex-direction: column;
}

.locations-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}

.locations-item {
  border-bottom: 1px solid #333333;
  padding-bottom: 0.75rem;
  transition: border-color 0.2s ease;
}

.locations-item:hover {
  border-color: var(--dark-color);
}

.locations-link {
  color: #ffffff;
  text-decoration: none;
  
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.2s ease;
}

.locations-link:hover {
  color: #e0e0e0;
}

.locations-icon {
  color: #ffffff;
}

.locations-text {
  display: inline-block;
}

.locations-image-column {
  display: flex;
}

.locations-image {
  border-radius: var(--bs-border-radius-xl, 1rem);
  box-shadow: var(--bs-shadow-lg);
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 380px;
}

/*=========================================
  Partners (Logo Slider) Section
=========================================*/

.partners-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7f7f8;
  overflow: hidden;
  user-select: none;
}

.partners-wrapper {
  width: 100%;
}

.partners-arrow-btn {
  background: transparent;
  border: none;
  color: var(--dark-color);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  padding: 0.5rem 0.75rem;
  transition: opacity 0.2s;
}

.partners-arrow-btn:hover {
  opacity: 0.6;
}

.partners-slider-container {
  overflow: hidden;
}

.partners-slider-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: partners-scroll 25s linear infinite;
}

.partners-section:hover .partners-slider-track {
  animation-play-state: paused;
}

.partners-logo-card {
  width: 140px;
  height: 140px;
  background-color: #ffffff;
  border-radius: var(--bs-border-radius-sm, 0.25rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  flex-shrink: 0;
}

.partners-logo-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partners-logo-card:hover .partners-logo-image {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}



/* =========================================
   1. HERO SECTION
   ========================================= */
.hero-section {
  background: linear-gradient(90deg, #1f0307 0%, #3e070e 25%, #881220 75%, #a81c2d 100%);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  color: #ffffff;
}

.hero-breadcrumb {
  margin-bottom: 0.5rem;
}

.hero-breadcrumb-text {
  color: rgba(255, 255, 255, 0.85);
  
  margin-bottom: 0;
}

.hero-breadcrumb-link {
  color: #ffffff;
  text-decoration: none;
}

.hero-breadcrumb-link:hover {
  text-decoration: underline;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.hero-title-break {
  display: none;
}

@media (min-width: 576px) {
  .hero-title-break {
    display: inline;
  }
}


@media (max-width: 991.98px) {
  .hero-description,.cta-text{
    font-size: 16px !important;
  }

  .cta-wrapper{
        justify-content: center !important;
  }

  


}

.hero-description {
  
  font-weight: 400;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-action-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--bs-border-radius);
  padding: 0.6rem 2rem;
  
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-action-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* =========================================
   2. MEMBERSHIP OVERVIEW SECTION
   ========================================= */
.membership-overview-section {
 
  background-color: #ffffff;
}

.membership-overview-title {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  margin-top: 0px;
}

.membership-overview-subtitle {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.membership-overview-description {
  color: var(--dark-color);
  
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.membership-overview-card-col {
  margin-bottom: 1.5rem;
}

.membership-overview-card {
  background: linear-gradient(180deg, #c82333 0%, #8b1220 50%, #2b0005 100%);
  border-radius: var(--bs-border-radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  color: #ffffff;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.membership-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.membership-overview-card-icon {
  width: 54px;
  height: 54px;
  background-color: #ffffff;
  color: #c82333;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.membership-overview-card-title {
  
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.membership-overview-card-description {
  
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.5;
}

.membership-overview-image {
  border-radius: var(--bs-border-radius-xl);
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 590px;
  box-shadow: var(--bs-shadow-sm);
}

@media (min-width: 768px) {
  .membership-overview-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 991.98px) {
.membership-overview-title{
    font-size: 32px;
}

.membership-overview-description,.membership-overview-card-description,
.did-you-know-item-text,.plan-details-checklist-text,.plan-details-equipment-sub,.plan-details-equipment-title,.signup-label,.faq-summary,.faq-content,.disclaimers-item{
    font-size: 16px;
}


.membership-overview-image{
        max-height: 100%;
}

.did-you-know-title,.pricing-title,.plan-details-title,.signup-title,.faq-title{
     font-size: 32px !important;
        margin: 0px;
}




}

/* =========================================
   3. DID YOU KNOW SECTION
   ========================================= */


.did-you-know-image {
  max-width: 100%;
  height: auto;
}

.did-you-know-title {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.did-you-know-subtitle {
  font-size: 20px;
  color: var(--dark-color);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.did-you-know-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e2e4;
}

.did-you-know-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.did-you-know-item-icon {
  width: 52px;
  height: 52px;
  background-color: #d9232d;
  color: #ffffff;
  font-size: 1.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.did-you-know-item-text {
  color: #555555;
  
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 768px) {
  .did-you-know-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* =========================================
   4. PRICING SECTION
   ========================================= */
.pricing-section {

  background-color: #ffffff;
}

.pricing-header-row {
  margin-bottom: 3rem;
}

.pricing-title {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.pricing-branding-row {
  margin-bottom: 3rem;
}

.pricing-brand-the {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1;
  color: #111111;
}

.pricing-brand-main {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #000000;
}

.pricing-brand-club {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.25rem;
  color: #c82333;
  line-height: 1;
  margin-top: -5px;
}

.pricing-brand-description {
  
  color: var(--dark-color);
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 500;
}

.pricing-card-col {
  margin-bottom: 1.5rem;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: var(--bs-border-radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-card-amount-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.pricing-card-amount {
  color: #c82333;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.pricing-card-period {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222222;
}

.pricing-card-btn-solid {
  background-color: #c82333;
  color: #ffffff;
  border: none;
  padding: 0.65rem 2.5rem;
  border-radius: var(--bs-border-radius-sm);
  
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.pricing-card-btn-solid:hover {
  background-color: #a81c2d;
  color: #ffffff;
}

.pricing-card-btn-outline {
  background-color: transparent;
  color: #c82333;
  border: 1.5px solid #c82333;
  padding: 0.65rem 2.5rem;
  border-radius: var(--bs-border-radius-sm);
  
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pricing-card-btn-outline:hover {
  background-color: #c82333;
  color: #ffffff;
}

@media (min-width: 768px) {
  .pricing-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .pricing-brand-main,
  .pricing-brand-club {
    font-size: 1.75rem;
  }
  .pricing-card-amount {
    font-size: 2.25rem;
  }

  .membership-overview-title{
        font-size: 28px;
        text-align: center;
  }

  .membership-overview-subtitle{
    text-align: center;
  }

  .membership-overview-description{
     text-align: center;
  }

  .did-you-know-title{
    font-size: 28px;
    text-align: center;
  }

  .did-you-know-subtitle{
     text-align: center;
  }

  .pricing-title{
     font-size: 28px;
    text-align: center;
    line-height: 34px;
  }

  .pricing-brand-description{
    text-align: center;
  }

  .plan-details-title,.signup-title,.faq-title{
     font-size: 28px !important;
    text-align: center;
    line-height: 34px !important;
  }




}

/* =========================================
   5. PLAN DETAILS SECTION (INCLUDES / EQUIPMENT)
   ========================================= */

.plan-details-title {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 60px;
  margin-top: 0px;
}

.plan-details-checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #e2e2e4;
  padding-bottom: 0.85rem;
}

.plan-details-checklist-item-top {
  align-items: flex-start;
}

.plan-details-checklist-item:last-child {
  border-bottom: none;
}

.plan-details-check-icon {
  width: 24px;
  height: 24px;
  background-color: #d9232d;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.plan-details-icon-offset {
  margin-top: 0.25rem;
}

.plan-details-checklist-text {
  
  color: #212529;
}

.plan-details-equipment-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #e2e2e4;
  padding: 1rem;
}

.plan-details-equipment-icon {
  width: 48px;
  height: 48px;
  background-color: #d9232d;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.plan-details-equipment-title {
  font-weight: 600;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.plan-details-equipment-sub {
  color: var(--dark-color);
}

@media (min-width: 768px) {
  .plan-details-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* =========================================
   6. SIGN UP FORM SECTION
   ========================================= */
.signup-section {

  background-color: #ffffff;
}

.signup-header-row {
  margin-bottom: 1.5rem;
}

.signup-title {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.signup-card {
  background-color: #ffffff;
  border: 1px solid #70b5f9;
  border-radius: var(--bs-border-radius-lg);
  padding: 2.5rem 2rem;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.signup-form-subtitle {
  font-size: 1.25rem;
  color: #212529;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.signup-form-row-1 {
  margin-bottom: 1rem;
}

.signup-form-row-2 {
  margin-bottom: 1.5rem;
}

.signup-label {
  display: block;
  
  font-weight: 500;
  color: #212529;
  margin-bottom: 0.25rem;
}

.signup-asterisk {
  color: #dc3545;
}

.signup-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  
  border: 1px solid #dee2e6;
  border-radius: var(--bs-border-radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signup-input:focus {
  border-color: #70b5f9;
  box-shadow: 0 0 0 3px rgba(112, 181, 249, 0.25);
}

.signup-input::placeholder {
  color: #aaaaaa;
}

.signup-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.signup-checkbox {
  margin-top: 0.25rem;
}

.signup-checkbox-label {
  
  color: #212529;
}

.signup-disclaimer {
  border: 1px solid #e0e0e0;
  border-radius: var(--bs-border-radius);
  background-color: #ffffff;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--dark-color);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.signup-captcha {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: var(--bs-border-radius-sm);
  padding: 0.6rem 1rem;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.signup-captcha-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.signup-captcha-icon {
  color: #198754;
  font-size: 1.25rem;
}

.signup-captcha-text {
  
  font-weight: 500;
  color: #212529;
}

.signup-captcha-brand {
  text-align: right;
  line-height: 1;
}

.signup-captcha-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: #f6821f;
  letter-spacing: 0.05em;
  display: block;
}

.signup-captcha-sub {
  font-size: 0.6rem;
  color: #888888;
}

.signup-submit-btn {
  width: 100%;
  background-color: #d9232d;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: var(--bs-border-radius-sm);
  
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.signup-submit-btn:hover {
  background-color: #b81b24;
}

@media (min-width: 768px) {
  .signup-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .signup-card {
    padding: 1.5rem 1rem;
  }
}

/* =========================================
   7. FAQ SECTION
   ========================================= */
.faq-section {
  background-color: #f7f7f8;

}

.faq-title {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 60px;
}

.faq-group {
  margin-bottom: 3rem;
}

.faq-group-last {
  margin-bottom: 0;
}

.faq-category-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: #555555;
  margin-bottom: 1rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: var(--bs-border-radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-summary {
  padding: 1.1rem 1.5rem;
  
  font-weight: 500;
  color: var(--dark-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon-circle {
  width: 28px;
  height: 28px;
  background-color: #d9232d;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon-circle {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--dark-color);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* =========================================
   8. DISCLAIMERS SECTION
   ========================================= */


.disclaimers-header-row {
  margin-bottom: 3rem;
}

.disclaimers-title {
 font-size: 32px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.disclaimers-item {
  margin: 0;
  color: var(--bs-body-color);
  line-height: var(--bs-body-line-height);
}

.disclaimers-item-last-left {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .disclaimers-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* =========================================
   9. GALLERY / LOGO SLIDER SECTION
   ========================================= */
.gallery-slider-wrapper {
  background-color: #f7f7f8;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  user-select: none;
}

.gallery-slider-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.gallery-slider-wrapper:hover .gallery-slider-track {
  animation-play-state: paused;
}

.gallery-slider-card {
  width: 140px;
  height: 140px;
  background-color: #ffffff;
  border-radius: var(--bs-border-radius-sm);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  flex-shrink: 0;
}

.gallery-slider-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.gallery-slider-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.gallery-slider-arrow {
  background: transparent;
  border: none;
  color: var(--dark-color);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  padding: 0.5rem 1rem;
  transition: opacity 0.2s;
}

.gallery-slider-arrow:hover {
  opacity: 0.6;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

/* sitemap */

/*==========================================
   Sitemap Base & Layout 
==========================================*/

.sitemap-hero-section {
  padding: 40px 0px;
  background-color: var(--bs-body-bg);
  position: relative;
  overflow: hidden;
}

/* Subtle background accent for premium feel */
.sitemap-hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--bg-light-gray) 0%, rgba(255,255,255,0) 70%);
  transform: translateX(-50%);
  z-index: 0;
}

.sitemap-hero-wrapper {
  position: relative;
  z-index: 1;
}

/*==========================================
   Sitemap Hero
==========================================*/

.sitemap-hero-title {
  font-size: 44px;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  margin-top: 0px;
}

.sitemap-hero-subtitle {
  
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--bs-body-line-height);
}

/*==========================================
   Sitemap Quick Navigation
==========================================*/

.sitemap-navigation-section {
  padding-bottom: 40px;
  background-color: var(--bs-body-bg);
}

.sitemap-navigation-wrapper {
  display: flex;
  justify-content: center;
}

.sitemap-quick-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.sitemap-quick-link {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--bs-light);
  color: var(--bs-body-color);
  font-weight: 500;
  
  border-radius: var(--bs-border-radius-pill);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.sitemap-quick-link:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: var(--bs-shadow-sm);
}

/*==========================================
   Sitemap Categories & Grid
==========================================*/

.sitemap-categories-section {
  padding: 40px 0px;

}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/*==========================================
   Sitemap Cards
==========================================*/

.sitemap-card {
  background-color: var(--bs-body-bg);
   border-color: var(--bg-light-gray);
  border: 1px solid var(--bs-light);
  border-radius: var(--bs-border-radius-xl);
  padding: 2.5rem;
  transition: all 0.4s ease;
  box-shadow: var(--bs-shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sitemap-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--bs-shadow-lg);
  border-color: var(--bg-light-gray);
}

.sitemap-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.sitemap-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--bs-border-radius-lg);
  background-color: var(--bg-light-gray);
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}



.sitemap-card-icon svg {
  width: 24px;
  height: 24px;
}

.sitemap-card-heading {
  display: flex;
  flex-direction: column;
}

.sitemap-card-title {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin: 0px;
}

.sitemap-card-desc {
  
  margin: 0;
}

/*==========================================
   Sitemap Links list inside cards
==========================================*/

.sitemap-card-links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.sitemap-link-item a {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  text-decoration: none;
  
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Custom interactive arrow for links */
.sitemap-link-item a::before {
  content: "→";
  font-family: var(--bs-font-sans-serif);
  margin-right: 0.75rem;
  color: var(--secondary-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-weight: bold;
}

.sitemap-link-item a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.sitemap-link-item a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/*==========================================
   Sitemap CTA Section
==========================================*/

.sitemap-cta-section {
 
  background-color: var(--bg-light-gray);
  border-top: 1px solid var(--border-color);
}

.sitemap-cta-wrapper {
  display: flex;
  justify-content: center;
}

.sitemap-cta-content {
  background-color: var(--bs-body-bg);
  padding: 2rem 0rem;
  border-radius: var(--bs-border-radius-xl);
  box-shadow: var(--bs-shadow);
  max-width: 800px;
  width: 100%;
}

.sitemap-cta-title {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
      margin-top: 0;
}

.sitemap-cta-subtitle {
  
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.sitemap-cta-btn {
  display: inline-block;
      background: var(--primary-color);
  color: var(--bs-light);
  transform: translateY(-2px);
  padding: 1rem 2.5rem;
  border-radius: var(--bs-border-radius-lg);
  font-weight: bold;
  text-decoration: none;
  
  box-shadow: var(--bs-shadow-sm);
}

.sitemap-cta-btn:hover {
  color: var(--bs-light);
  transform: translateY(-2px);

}

/*==========================================
   Responsiveness
==========================================*/

@media (max-width: 991px) {
  .sitemap-hero-title {
    font-size: 2.5rem;
  }
  
  .sitemap-cta-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 767px) {
  .sitemap-hero-section {
    padding: 40px 0px
  }
  
  .sitemap-hero-title {
    font-size: 2rem;
  }
  
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
  
  .sitemap-cta-title {
    font-size: 1.5rem;
  }
  
  .sitemap-cta-content {
    padding: 2.5rem 1.5rem;
  }
}



/* terms and condition */

/*==========================================
   CSS Variables & Base Reset


/*==========================================
   Layout & Container
==========================================*/
.tc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tc-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

/*==========================================
   Hero Header
==========================================*/
.tc-hero {
  background: linear-gradient(135deg, #1f242d 0%, #111318 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  border-bottom: 4px solid var(--primary-color);
}

.tc-badge {
  display: inline-block;
  background-color: rgba(217, 35, 42, 0.2);
  color: #ff5258;
  border: 1px solid rgba(217, 35, 42, 0.4);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tc-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.tc-hero-subtitle {
  color: #a0aec0;
  font-size: 1.1rem;
}

.text-center {
  text-center: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

/*==========================================
   Sticky Navigation Sidebar
==========================================*/
.tc-sidebar {
  position: relative;
}

.tc-nav {
  position: sticky;
  top: 2rem;
  background-color: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.tc-nav-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.tc-nav ul {
  list-style: none;
}

.tc-nav li {
  margin-bottom: 0.5rem;
}

.tc-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.tc-nav a:hover,
.tc-nav a.active {
  background-color: rgba(217, 35, 42, 0.08);
  color: var(--primary-color);
}

/*==========================================
   Content Section Cards
==========================================*/
.tc-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tc-card {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bs-light);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 2rem;
}

.tc-card h2 {
  font-size: 1.6rem;
  color: #1a202c;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bg-page);
}

.tc-card h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem 0;
}

.tc-card p {
  color: #4a5568;
  margin-bottom: 1rem;
}

.tc-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.tc-link:hover {
  text-decoration: underline;
}

/* Lists */
.tc-list {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.tc-list li {
  color: #4a5568;
  margin-bottom: 0.5rem;
}

/* Sub Box Grid */
.tc-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.tc-sub-box {
  background-color: var(--bg-page);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-color);
}

.tc-sub-box h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.tc-sub-box p {
  font-size: 0.9rem;
  margin: 0;
}

/* Contact Card Accent */
.tc-contact-card {
  background: linear-gradient(to right, #ffffff, #fffafb);
  border-left: 4px solid var(--primary-color);
}

.tc-contact-details {
  background-color: var(--bg-page);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

/* Accordion Styling */
.tc-accordion details {
  background-color: var(--bg-page);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-color);
}

.tc-accordion summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  color: #2d3748;
}

.tc-accordion summary:hover {
  color: var(--primary-color);
}

.tc-details-content {
  padding: 0 1.25rem 1.25rem 1.25rem;
  color: #4a5568;
  font-size: 0.95rem;
}

/*==========================================
   Responsive Design
==========================================*/
@media (max-width: 991px) {
  .tc-layout {
    grid-template-columns: 1fr;
  }

  .tc-sidebar {
    display: none; /* Hide sidebar nav on tablet/mobile for simplified scrolling */
  }
}

@media (max-width: 576px) {
  .tc-hero-title {
    font-size: 2rem;
  }

  .tc-card {
    padding: 1.5rem;
  }
}


/* offers page */

 /* =========================================
           OFFERS BANNER
           ========================================= */
        .offers-banner-section {
            background: linear-gradient(90deg, #c82333 0%, #881220 50%, #000000 100%);
            padding-top: 3.5rem;
            padding-bottom: 3.5rem;
            border-bottom: 3px solid #881220;
        }

        .offers-breadcrumb {
            
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1.25rem;
        }

        .offers-breadcrumb-link {
            color: #ffffff;
            text-decoration: underline;
            transition: opacity 0.2s ease;
        }

        .offers-breadcrumb-link:hover {
            opacity: 0.85;
        }

        .offers-breadcrumb-separator {
            margin: 0 0.25rem;
            display: inline-block;
        }

        .offers-breadcrumb-current {
            color: rgba(255, 255, 255, 0.85);
        }

        .offers-banner-title {
            font-size: 3.25rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            letter-spacing: -0.02em;
            margin: 0;
        }

        /* =========================================
           OFFERS SUBTITLE BAR
           ========================================= */
        .offers-bar-section {
            background-color: #191b1d;
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        .offers-bar-description {
            font-size: 1.1rem;
            font-weight: 400;
            color: #ffffff;
            line-height: 1.5;
            margin: 0;
        }

        /* =========================================
           FILTER COMPONENT
           ========================================= */
        .filter-section {
            background-color: #f7f7f8;
            padding: 1.5rem 0;
        }

        .filter-pill {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 500px;
            padding: 1.25rem 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .filter-label {
            
            font-weight: 600;
            color: #000000;
            margin: 0;
            font-family: 'Inter', sans-serif;
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .filter-button {
            background: transparent;
            border: none;
            font-family: 'Inter', sans-serif;
            
            font-weight: 600;
            color: var(--dark-color);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            transition: color 0.2s ease;
        }

        .filter-button:hover,
        .filter-button.active {
            color: #c82333;
        }

        /* =========================================
           OFFERS GRID — CARDS
           ========================================= */
        .offers-promotions-section {
        
        
        }

        .offers-promotions-header {
            text-align: center;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 3.5rem;
        }

        .offers-promotions-title {
            font-size: 44px;
            font-weight: 600;
            color: var(--secondary-color);
            letter-spacing: -0.025em;
            line-height: 1.2;
            margin-bottom: 1rem;
            margin-top: 0px;
        }

        .offers-promotions-subtitle {
            
            color: #64748b;
            font-weight: 400;
            font-family: 'Inter', sans-serif;
        }

        /* Card Component */
        .offer-card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            height: 100%;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .offer-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
            border-color: rgba(217, 35, 45, 0.3);
        }

        /* Coupon Side Cutouts */
        .offer-card::before,
        .offer-card::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 16px;
            height: 16px;
            background-color: #f8fafc;
            border-radius: 50%;
            transform: translateY(-50%);
        }
        .offer-card::before {
            left: -8px;
        }
        .offer-card::after {
            right: -8px;
        }

        /* Featured Variant */
        .offer-card--featured {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #ffffff;
            border-color: #334155;
        }

        .offer-card--featured .offer-card-amount,
        .offer-card--featured .offer-card-subtitle,
        .offer-card--featured .offer-card-more-link {
            color: #ffffff;
        }

        .offer-card--featured .offer-card-expiration {
            color: #94a3b8;
        }

        .offer-card--featured .offer-card-category {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }

        .offer-card--featured .offer-card-footer {
            border-top-color: #334155;
        }

        /* Content Structure */
        .offer-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.25rem;
        }

        .offer-card-category {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #d9232d;
            background-color: rgba(217, 35, 45, 0.08);
            padding: 0.25rem 0.65rem;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            display: inline-block;
        }

        .offer-card-body {
            margin-bottom: 1.5rem;
        }

        .offer-card-amount {
            font-size: 1.85rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .offer-card-subtitle {
            
            font-weight: 500;
            color: #64748b;
            line-height: 1.45;
            font-family: 'Inter', sans-serif;
        }

        .offer-card-footer {
            border-top: 1px dashed #e2e8f0;
            padding-top: 1.25rem;
            margin-top: auto;
        }

        .offer-card-expiration {
            font-size: 18px;
            font-weight: 600;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1rem;
            font-family: 'Inter', sans-serif;
        }

        .offer-card-redeem-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            background-color: #d9232d;
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            padding: 0.85rem 1.25rem;
            border-radius: 10px;
            transition: background-color 0.2s ease, transform 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .offer-card-redeem-btn:hover {
            background-color: #a81c2d;
            transform: translateY(-1px);
            color: #ffffff;
        }

        .offer-card-more-link {
            display: block;
            text-align: center;
            margin-top: 0.85rem;
            font-size: 18px;
            font-weight: 600;
            color: #64748b;
            text-decoration: none;
            transition: color 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .offer-card-more-link:hover {
            color: #d9232d;
        }
.btn-schedule-full
    {
        display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--bs-white);
    font-weight: 600;
    padding: 15px 42px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.3px;
    min-height: 40px;
    font-size: 18px;
    width: 100%;
}
.btn-schedule-full:hover{
     background: var(--primary-color);
      color: var(--bs-white);
}

        /* =========================================
           RESPONSIVE
           ========================================= */
        @media (max-width: 992px) {
            .filter-pill {
                padding: 1.25rem 1.5rem;
                border-radius: 2rem;
            }

            .filter-options {
                gap: 1rem;
            }

            .filter-button {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 768px) {
            .offers-banner-section {
                padding-top: 2.5rem;
                padding-bottom: 2.5rem;
            }

            .offers-banner-title {
                font-size: 2.5rem;
            }

            .offers-bar-description {
                
            }

            .offers-promotions-title {
                font-size: 2rem;
            }

            .offers-promotions-section {
                padding-top: 3rem;
                padding-bottom: 4rem;
            }
        }

        @media (max-width: 576px) {
            .offers-banner-title {
                font-size: 1.75rem;
            }

            .offers-promotions-title {
                font-size: 1.6rem;
            }

            .offers-promotions-header {
                margin-bottom: 2rem;
            }

            .filter-pill {
                padding: 1rem 1.25rem;
                border-radius: 1.5rem;
            }

            .filter-options {
                gap: 0.65rem 1rem;
            }

            .filter-button {
                font-size: 0.7rem;
            }

            .offer-card {
                padding: 1.25rem;
            }

            .offer-card-amount {
                font-size: 1.5rem;
            }
        }


        /* faq */

          /* =========================================
           BANNER (from 1faq.html)
           ========================================= */
        .faq-banner {
            background: linear-gradient(90deg, #c82333 0%, #720e18 45%, #180205 100%);
            padding-top: 3.5rem;
            padding-bottom: 3.5rem;
            border-bottom: 3px solid #881220;
        }

        .breadcrumb-text {
            color: rgba(255, 255, 255, 0.85);
            
            margin: 0;
        }

        .breadcrumb-text a {
            color: #ffffff;
            text-decoration: underline;
        }

        .faq-main-heading {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #ffffff;
            line-height: 1.1;
            margin: 0;
        }

        /* CTA Bar */
        .faq-bar {
            background-color: #191b1d;
            color: #ffffff;
            padding-top: 1.25rem;
            padding-bottom: 1.25rem;
        }

        .btn-schedule-red {
            background-color: #c82333;
            color: #ffffff;
            border: none;
            padding: 0.65rem 1.75rem;
            border-radius: 0.375rem;
            font-weight: 600;
            text-transform: uppercase;
            
            letter-spacing: 0.04em;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.2s ease;
        }

        .btn-schedule-red:hover {
            background-color: #a81c2d;
            color: #ffffff;
        }

        /* =========================================
           JUMP TO TOPIC NAV (from 2faq.html)
           ========================================= */
        .jump-section {
            background-color: #f8f9fa;
            padding: 1.5rem 0;
        }

        .jump-to-pill {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 50rem;
            padding: 0.85rem 2.25rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            max-width: 1050px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
            text-align: center;
        }

        .jump-label {
            font-weight: 600;
            color: #111111;
            white-space: nowrap;
            
        }

        .topic-link {
            color: #d9232d;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            text-decoration: underline;
            white-space: nowrap;
            transition: color 0.2s ease, opacity 0.2s ease;
        }

        .topic-link:hover {
            color: #b81b24;
            opacity: 0.85;
        }

        /* =========================================
           MEMBERSHIP FAQ ACCORDION (from 7plans.html)
           ========================================= */
        .faq-section {
            background-color: #f7f7f8;
        }

        .faq-section .container {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        .faq-section-title {
            font-size: 44px;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            margin: 0;
        }

        .faq-category-title {
            font-size: 1.15rem;
            font-weight: 500;
            color: #555555;
            margin-bottom: 1rem;
        }

        .faq-item {
            background-color: #ffffff;
            border-radius: 0.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.03);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: box-shadow 0.2s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .faq-summary {
            padding: 1.1rem 1.5rem;
            
            font-weight: 500;
            color: var(--dark-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            list-style: none;
        }

        .faq-summary::-webkit-details-marker {
            display: none;
        }

        .faq-icon-circle {
            width: 28px;
            height: 28px;
            background-color: #d9232d;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex-shrink: 0;
            transition: transform 0.25s ease;
        }

        .faq-item[open] .faq-icon-circle {
            transform: rotate(180deg);
        }

        .faq-content {
            padding: 0 1.5rem 1.25rem 1.5rem;
            color: var(--dark-color);
            
            line-height: 1.6;
        }

        /* Category group spacing */
        .faq-category-group {
            margin-bottom: 2.5rem;
        }

        .faq-category-group:last-child {
            margin-bottom: 0;
        }

        /* =========================================
           RESPONSIVE
           ========================================= */
        @media (max-width: 991.98px) {
            .faq-main-heading {
                font-size: 2.25rem;
            }

            .faq-banner {
                padding-top: 2.5rem;
                padding-bottom: 2.5rem;
            }

            .faq-section {
                padding: 3rem 0;
            }

            .jump-to-pill {
                padding: 0.85rem 1.5rem;
                border-radius: 1rem;
                gap: 0.5rem 1rem;
            }
        }

        @media (max-width: 767.98px) {
            .jump-to-pill {
                flex-direction: column;
                align-items: center;
                padding: 1rem 1.25rem;
            }

            .jump-label {
                margin-bottom: 0.25rem;
            }

            .faq-bar .row {
                justify-content: center;
                text-align: center;
            }

            .faq-bar .col-12 {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
            }
        }

        @media (max-width: 575.98px) {
            .faq-banner {
                padding-top: 2rem;
                padding-bottom: 2rem;
            }

            .faq-main-heading {
                font-size: 1.75rem;
            }

            .faq-section {
                padding: 2rem 0;
            }

            .faq-section-title {
                font-size: 1.75rem;
                text-align: center;
            }

            .faq-summary {
                padding: 0.9rem 1rem;
                font-size: 16px;
                
            }

            .disclaimers-item{
                font-size: 16px;
            }

            .faq-content {
                padding: 0 1rem 1rem 1rem;
                 font-size: 16px;
                
            }

            .faq-category-title{
                text-align: center;
            }

            .disclaimers-title{
                font-size: 28px;
            }



            .faq-icon-circle {
                width: 24px;
                height: 24px;
                font-size: 0.75rem;
            }

            .btn-schedule-red {
                padding: 0.5rem 1.25rem;
                font-size: 0.8rem;
            }

            .jump-to-pill {
                padding: 0.75rem 1rem;
            }

            .topic-link {
                font-size: 0.75rem;
            }
        }

        /* careers */

         /* ===== 1careers: Banner ===== */
        .careers-banner {
            background: linear-gradient(90deg, #c82333 0%, #881220 50%, #1a0205 100%);
            padding-top: 3.5rem;
            padding-bottom: 3.5rem;
            border-bottom: 3px solid #881220;
        }
        .breadcrumb-text {
            color: rgba(255, 255, 255, 0.85);
            
        }
        .breadcrumb-text a {
            color: #ffffff;
            text-decoration: underline;
        }

        .careers-info-bar {
            background-color: #191b1d;
            color: #ffffff;
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
        }
        .openings-link {
            color: #ffffff;
            font-weight: 600;
            font-style: italic;
            text-decoration: underline;
            display: inline-block;
            transition: opacity 0.2s ease;
        }
        .openings-link:hover {
            color: #ffffff;
            opacity: 0.85;
        }

        /* ===== 2careers: Why Work With Us ===== */
        .culture-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: var(--bs-border-radius);
        }
        .culture-card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #000000;
            line-height: 1.25;
        }
        .culture-card-text {
            
            color: #555555;
            line-height: 1.55;
        }

        /* ===== 3careers: We're Hiring ===== */
.why-work-section h2{
    font-size: 44px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    margin-top: 0px;
}

        .hiring-section {
            background-color: #ededef;
        }
        .hiring-desc {
            max-width: 780px;
            color: #4a4a4a;
            
            line-height: 1.6;
        }
        .jobs-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .job-item {
            border-bottom: 1px solid #dcdcdc;
            padding-top: 1.25rem;
            padding-bottom: 1.25rem;
        }
        .job-item:last-child {
            border-bottom: none;
        }
        .job-title {
            
            font-weight: 500;
            color: #222222;
        }
        .job-location {
            
            color: var(--dark-color);
        }
        .btn-view-job {
            background-color: #d9232d;
            color: #ffffff;
            border: none;
            padding: 0.5rem 1.25rem;
            border-radius: var(--bs-border-radius-sm);
            
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.2s ease;
        }
        .btn-view-job:hover {
            background-color: #0028e0;
            color: #ffffff;
        }

        /* ===== 4careers: Working at Princeton Air + Form ===== */
    
        .section-divider {
            border-bottom: 1px solid #d0d0d2;
            padding-bottom: 0.75rem;
        }
        .benefits-list {
            padding-left: 1.25rem;
        }
        .benefits-list>li {
            font-weight: 600;
            color: #222222;
            margin-bottom: 1rem;
        }
        .benefits-sublist {
            padding-left: 1.25rem;
            margin-top: 0.4rem;
            list-style-type: circle;
        }
        .benefits-sublist>li {
            font-weight: 400;
            color: #555555;
            
            margin-bottom: 0.35rem;
        }

        .app-form-card {
            background-color: #ffffff;
            padding: 2.5rem 2rem;
            border-radius: var(--bs-border-radius-sm);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        }
        .required-asterisk {
            color: #dc3545;
        }
        .form-input-custom {
            width: 100%;
            padding: 0.6rem 0.75rem;
            
            border: 1px solid #cccccc;
            background-color: #e5e7eb;
            border-radius: var(--bs-border-radius-sm);
            outline: none;
            transition: border-color 0.2s, background-color 0.2s;
        }
        .form-input-custom:focus {
            border-color: #70b5f9;
            background-color: #ffffff;
        }
        .form-sublabel {
            font-size: 16px;
            color: var(--dark-color);
        }
        .file-input-wrapper {
            font-size: 0.85rem;
            color: #555555;
        }
        textarea.form-input-custom {
            resize: vertical;
            min-height: 100px;
        }
        .captcha-box {
            background-color: #f9f9f9;
            border: 1px solid #e0e0e0;
            border-radius: var(--bs-border-radius-sm);
            padding: 0.5rem 0.85rem;
            max-width: 260px;
        }
        .captcha-success-icon {
            color: #198754;
            font-size: 1.1rem;
        }
        .btn-submit-red {
            background-color: #d9232d;
            color: #ffffff;
            border: none;
            padding: 0.65rem 2rem;
            border-radius: var(--bs-border-radius-sm);
            
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        .btn-submit-red:hover {
            background-color: #b81b24;
        }

        /* Responsive tweaks */
        @media (max-width: 576px) {
            .careers-banner {
                padding-top: 2.5rem;
                padding-bottom: 2.5rem;
            }
            .careers-info-bar {
                padding-top: 1.5rem;
                padding-bottom: 1.5rem;
            }
            .app-form-card {
                padding: 1.5rem 1rem;
            }

            .why-work-section h2{
                font-size: 28px;
            }
        }
@media (max-width: 991px) {
    .culture-card-text,.hiring-desc,.job-location,.job-title,.lh-base,.benefits-sublist>li,.form-label  {
        font-size: 16px;
    }
}


    

        /* hero */

        /*=========================================
Hero Section
=========================================*/
.hero-section {
    background: linear-gradient(135deg, #3d070f 0%, #150304 50%, #050101 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem;
}

@media (min-width: 992px) {
    .hero-container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-row {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0;
}

.hero-highlight {
    color: var(--primary-color, #d81338);
}

.hero-footer {
    background-color: #070101;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.hero-footer-row {
    row-gap: 1rem;
}

.hero-footer-container {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hero-footer-row {
        column-gap: 1rem;
    }

    .hero-footer-btn-col {
        text-align: right;
    }
}

.hero-footer-text {
    color: #f3f4f6;
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0;
}

.hero-btn {
    background-color: var(--primary-color, #d81338);
    color: #ffffff;
    font-weight: 600;

    letter-spacing: 0.5px;
    padding: 0.85rem 2rem;
    border-radius: var(--bs-border-radius, 0.375rem);
    border: none;
    transition: background-color 0.2s ease-in-out;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hero-btn:hover {
    background-color: var(--primary-hover, #b50f2e);
    color: #ffffff;
}

/*=========================================
Partnership Section
=========================================*/
.partnership-section {
    color: var(--text-light, #ffffff);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .partnership-container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.partnership-row {
    row-gap: 3rem;
}

@media (min-width: 992px) {
    .partnership-row {
        column-gap: 3rem;
    }
}

.partnership-wrapper {
    overflow: hidden;
    border-radius: var(--bs-border-radius-lg, 0.75rem);
    box-shadow: var(--bs-shadow-lg, 0 1rem 3rem rgba(0, 0, 0, 0.175));
}

.partnership-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.partnership-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partnership-description {
    color: #a3a6a9;

    line-height: 1.7;
    margin-bottom: 0;
}

/*=========================================
CTA Strip Section
=========================================*/
.cta-strip-section {
    background: linear-gradient(135deg, #c80f3b 0%, #800622 100%);
    color: #ffffff;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

.cta-strip-row {
    row-gap: 1.5rem;
}

@media (min-width: 992px) {
    .cta-strip-row {
        column-gap: 1.5rem;
    }
}

.cta-strip-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 992px) {
    .cta-strip-info {
        justify-content: flex-start;
    }
}

.cta-strip-icon-wrap {
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #d81338);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.cta-strip-icon-wrap svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.cta-strip-message {
    font-size: 1.15rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
}

.cta-strip-phone {
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.cta-strip-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 992px) {
    .cta-strip-actions {
        justify-content: flex-end;
    }
}

.cta-strip-label {
    font-size: 1.15rem;
    font-weight: 400;
    color: #ffffff;
}

.cta-strip-chat-btn {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;

    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-strip-chat-btn:hover {
    background-color: #ffffff;
    color: var(--primary-color, #d81338);
}

.cta-strip-chat-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 991.98px) {
    .cta-strip-section .row {
        text-align: center;
    }
}

/*=========================================
How It Works Section
=========================================*/
.how-it-works-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .how-it-works-container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.how-it-works-row {
    row-gap: 3rem;
}

@media (min-width: 992px) {
    .how-it-works-row {
        column-gap: 3rem;
    }
}

.how-it-works-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.how-it-works-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.25;
    margin-bottom: 0;
}

.how-it-works-description {
    color: #a3a6a9;

    line-height: 1.7;
    margin-bottom: 0;
}

.how-it-works-image-wrap {
    overflow: hidden;
    border-radius: var(--bs-border-radius-lg, 0.75rem);
    box-shadow: var(--bs-shadow-lg, 0 1rem 3rem rgba(0, 0, 0, 0.175));
}

.how-it-works-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/*=========================================
Get Approved Section
=========================================*/
.get-approved-section {
    background: linear-gradient(135deg, #c80f3b 0%, #800622 100%);
    color: #ffffff;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

.get-approved-row {
    row-gap: 1.5rem;
}

@media (min-width: 992px) {
    .get-approved-row {
        column-gap: 1.5rem;
    }
}

.get-approved-left-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .get-approved-left-wrap {
        justify-content: flex-start;
    }
}

.get-approved-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}

.get-approved-right-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .get-approved-right-wrap {
        justify-content: flex-end;
    }
}

.get-approved-action-btn {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.get-approved-action-btn:hover {
    background-color: #ffffff;
    color: var(--primary-color, #d81338);
}

.get-approved-action-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 991.98px) {
    .get-approved-section .row {
        text-align: center;
    }
}



@media (min-width: 992px) {
    .benefits-container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.benefits-row {
    row-gap: 3rem;
}

@media (min-width: 992px) {
    .benefits-row {
        column-gap: 3rem;
    }
}

.benefits-header {
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
     .benefits-title,.about-nj-title{
    font-size: 32px !important;
    margin: 0px;
  }

  .benefits-header{
    margin-bottom: 0px;
  }
  .banner-text-primary,.banner-text-secondary,.banner-stat-label,.about-nj-description p{
    font-size: 16px;
    text-align: center;
  }

  .about-nj-goal-card{
    max-width: 100%;
  }


}

.benefits-title {
    font-size: 44px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    color: var(--dark-color);

    line-height: 1.6;
    margin-bottom: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefits-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #d81338);
    flex-shrink: 0;
}

.benefits-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefits-item-title {
    color: var(--primary-color, #d81338);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
    margin: 0;
}

.benefits-item-description {
    color: #6c757d;

    margin-bottom: 0;
    line-height: 1.5;
}

.benefits-card-wrap {
    border-radius: var(--bs-border-radius-lg, 0.75rem);
    overflow: hidden;
    box-shadow: var(--bs-shadow-lg, 0 1rem 3rem rgba(0, 0, 0, 0.15));
}

.benefits-card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.benefits-promo-card {
    background-color: #161616;
    padding: 2rem;
    color: #ffffff;
}

.benefits-promo-title {
    color: var(--primary-color, #d81338);
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.benefits-promo-heading {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.benefits-promo-btn {
    background-color: var(--primary-color, #d81338);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
    border: none;
}

.benefits-promo-btn:hover {
    background-color: var(--primary-hover, #b50f2e);
    color: #ffffff;
}

/*=========================================
Schedule CTA Section
=========================================*/
.schedule-cta-section {
    background-color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .schedule-cta-container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.schedule-cta-row {
    row-gap: 3rem;
}

@media (min-width: 992px) {
    .schedule-cta-row {
        column-gap: 3rem;
    }
}

.schedule-card {
    background: linear-gradient(135deg, #7c1a1a 0%, #1e0909 100%);
    border-radius: var(--bs-border-radius-lg, 0.75rem);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.schedule-card-top {
    padding: 2.5rem 2.25rem;
}

.schedule-card-header-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.schedule-card-icon-wrap {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #d81338);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.schedule-card-icon-wrap svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.schedule-card-subtitle {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 400;
}

.schedule-card-title {
    color: #ffffff;
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0;
}

.schedule-card-footer {
    background-color: #0c0404;
    padding: 1.25rem 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.schedule-phone-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule-phone-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.schedule-action-btn {
    background-color: var(--primary-color, #d81338);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease;
    border: none;
}

.schedule-action-btn:hover {
    background-color: var(--primary-hover, #b50f2e);
    color: #ffffff;
}

.schedule-action-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.schedule-content-wrap {
    padding-left: 0;
}

@media (min-width: 992px) {
    .schedule-content-wrap {
        padding-left: 1rem;
    }
}

.schedule-right-title {
    font-size: clamp(2.25rem, 3.2vw, 3rem);
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.schedule-right-description {
    color: #6c757d;

    line-height: 1.6;
    margin-bottom: 0;
}

.schedule-phone-inline-link {
    text-decoration: none;
}

.schedule-highlight {
    color: var(--primary-color, #d81338);
    font-weight: 600;
}

/*=========================================
Certifications Section
=========================================*/
.cert-section {
    background-color: #fbfbfb;
    overflow: hidden;
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .cert-section {
        padding: 5rem 0;
    }
}

.cert-wrap {
    width: 100%;
}

.cert-carousel-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .cert-carousel-wrap {
        gap: 1.5rem;
    }
}

.cert-prev-action-btn,
.cert-next-action-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #555555;
    transition: color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-prev-action-btn:hover,
.cert-next-action-btn:hover {
    color: var(--primary-color, #d81338);
}

.cert-prev-action-btn svg,
.cert-next-action-btn svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cert-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-grow: 1;
}

.cert-track::-webkit-scrollbar {
    display: none;
}

.cert-card {
    flex: 0 0 calc(16.666% - 1.05rem);
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    scroll-snap-align: start;
    transition: box-shadow 0.2s ease-in-out;
}

.cert-card:hover {
    box-shadow: var(--bs-shadow-sm, 0 4px 10px rgba(0, 0, 0, 0.05));
}

.cert-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.65);
    transition: all 0.3s ease;
}

.cert-card:hover .cert-logo-img {
    filter: grayscale(0%) opacity(1);
}

@media (max-width: 1200px) {
    .cert-card {
        flex: 0 0 calc(20% - 1rem);
    }
}

@media (max-width: 992px) {
    .cert-card {
        flex: 0 0 calc(25% - 0.93rem);
    }
}

@media (max-width: 768px) {
    .cert-card {
        flex: 0 0 calc(33.333% - 0.83rem);
    }
}

@media (max-width: 576px) {
    .cert-card {
        flex: 0 0 calc(50% - 0.625rem);
    }

    .cert-prev-action-btn,
    .cert-next-action-btn {
        display: none;
    }
}

 

/* ---------- SECTION BASE ---------- */
.plumbing-service-section {
    min-height: 374px;
    /* desktop height approx */
    display: flex;
    background: #fff;
    /* fallback */
}

.section-padding{
  padding: 40px 0px;
}

.section-hero-main{
  padding: 0px !important;
}



.plumbing-service-section .container-fluid {
    padding: 0;
    height: 100%;
}

.plumbing-service-section .row {
    min-height: 374px;
    /* ensures equal height columns */
    margin: 0;
}

/* ---------- LEFT COLUMN: IMAGE ---------- */
.plumbing-service-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* ensures image doesn't bleed */
    display: flex;
}

.plumbing-service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ---------- RIGHT COLUMN: CONTENT ---------- */
.plumbing-service-content {
    position: relative;
    /* for the divider */
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #A01922, #7D1118, #390106);
    display: flex;
    align-items: center;
    /* vertical centering of inner */
    justify-content: center;
    padding: 0;
    /* no extra padding on the container itself */
}

/* ---------- VERTICAL DIVIDER ---------- */
.plumbing-service-divider {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    
    z-index: 2;
    display: block;
    /* visible on desktop */
}

/* ---------- INNER WRAPPER ---------- */
.plumbing-service-inner {
    /* max-width: 520px; */
    padding: 48px 52px;
    /* top/bottom 48, left/right 52 */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    /* ensures it fills the column height for centering */
}

/* ---------- TYPOGRAPHY ---------- */
.plumbing-service-title {
    font-size: 44px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 0 0 28px 0;
    /* bottom margin */
    font-family: var(--bs-font-sans-serif);
}

.plumbing-service-intro {
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.35;
    margin: 0 0 26px 0;
    font-family: var(--bs-font-sans-serif);
}

.plumbing-service-text {
 
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    /* max-width: 500px; */
    margin: 0 0 18px 0;
    font-family: var(--bs-font-sans-serif);
}

.plumbing-service-text:last-child {
    margin-bottom: 0;
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
/* Tablet and down: image on top, divider horizontal */
@media (max-width: 991.98px) {
    .plumbing-service-section .row {
        min-height: auto;
        /* allow content to determine height */
    }

    .plumbing-service-section {
        min-height: auto;
    }

    /* Divider becomes horizontal */
    .plumbing-service-divider {
        position: relative;
        /* remove absolute */
        left: auto;
        top: auto;
        width: 100%;
        height: 2px;
        /* background-color: #2A8CFF; */
        flex-shrink: 0;
        /* prevent shrinking */
    }

    .plumbing-service-content {
        flex-direction: column;
        /* stack divider and inner */
        padding: 0;
        /* no extra padding */
        background: linear-gradient(to right, #A01922, #7D1118, #390106);
        /* keep gradient */
    }

    .plumbing-service-inner {
        padding: 40px;
        /* tablet padding */
        max-width: 100%;
    }

    .plumbing-service-title {
      font-size: 32px;
        /* keep as per spec? They said mobile:38, but tablet unspecified; we can keep 56 until mobile */
    }

    .plumbing-service-intro {
        font-size: 22px;
    }

    .plumbing-service-text {
        font-size: 16px;
    }
}

/* Mobile ( < 576px ) */
@media (max-width: 575.98px) {
    .plumbing-service-image {
        height: 320px;
        /* fixed height on mobile */
    }

    .plumbing-service-inner {
        padding: 28px;
    }

    .plumbing-service-title {
        font-size: 38px;
        margin-bottom: 20px;
        /* adjust spacing */
    }

    .plumbing-service-intro {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .plumbing-service-text {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .plumbing-service-divider {
        height: 2px;
        /* horizontal */
    }
}

/* Ensure on tablet (≥768) the divider is still horizontal */
@media (min-width: 576px) and (max-width: 991.98px) {
    .plumbing-service-divider {
        position: relative;
        width: 100%;
        height: 2px;
        left: auto;
        top: auto;
    }

    .plumbing-service-content {
        flex-direction: column;
    }
}

/* On large screens (≥992) divider vertical and content side by side */
@media (min-width: 992px) {
    .plumbing-service-divider {
        position: absolute;
        left: 0;
        top: 0;
        width: 2px;
        height: 100%;
    }

    .plumbing-service-content {
        flex-direction: row;
        /* default flex row, but we use inner as block */
        align-items: stretch;
    }

    .plumbing-service-inner {
        padding: 48px 52px;
        /* max-width: 520px; */
        margin: 0 auto;
        /* center horizontally */
    }
}

/* Fix for large screens: ensure content column takes full height */
@media (min-width: 992px) {
    .plumbing-service-section .row {
        min-height: 374px;
    }

    .plumbing-service-content {
        min-height: 374px;
    }
}

/* ============================================================
    CTA SECTION STYLES
    ============================================================ */

.cta-section {
    background: #0a0a0a;
    padding: 32px 0;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0.3px;
}

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 600;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.25s ease, transform 0.15s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #e8e8e8;
    color: #0a0a0a;
    text-decoration: none;
    transform: scale(1.02);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767.98px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 32px;
        font-size: 15px;
        white-space: normal;
    }
}

@media (max-width: 575.98px) {
    .cta-section {
        padding: 24px 0;
    }

    .cta-text,.benefits-card-description {
        font-size: 16px !important;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 10px 28px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .benefits-title,.about-nj-title {
        font-size: 28px !important;
        margin-bottom: 0px;
        text-align: center;
    }

}

/* ----- section ----- */
.plumbing-order-section {
    background: #ffffff;
    width: 100%;
}

.plumbing-order-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ----- heading ----- */
.plumbing-order-heading {
    font-size: 44px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 0px auto;
        padding-bottom: 30px;
}

/* ----- left content ----- */
/* .plumbing-order-content {
    max-width: 620px;
} */

.plumbing-order-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.35;
    margin-bottom: 28px;
    
}

.plumbing-order-text {
   
    font-weight: 400;
    color: var(--dark-color);
    line-height: 1.9;
    margin-bottom: 34px;
}

.plumbing-order-text:last-of-type {
    margin-bottom: 0;
}

/* ----- stats card ----- */
.plumbing-stats-card {
    width: 420px;
    max-width: 100%;
    background: #FFFDFD;
        border: 1px solid #efc7cf;
      
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .05);
    margin-left: auto;
    /* push right in its column */
    ;
}

/* ----- stat items ----- */
.plumbing-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.plumbing-stat-item:last-child {
    margin-bottom: 0;
}

/* ----- icon circle ----- */
.plumbing-stat-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    background: #A61D2A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(166, 29, 42, .18);
}

.plumbing-stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ----- stat content ----- */
.plumbing-stat-content {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.plumbing-stat-number {
    font-size: 42px;
    font-weight: 600;
    color: #A61D2A;
    line-height: 1.2;
}

.plumbing-stat-label {
    font-size: 17px;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.4;
}

/* ----- bootstrap grid override (minimal) ----- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.col-lg-5,
.col-lg-7 {
    padding-left: 12px;
    padding-right: 12px;
    flex: 0 0 auto;
}

.col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
}

.col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
}

.align-items-center {
    align-items: center;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

/* ============================================================
             RESPONSIVE.CSS – Media Queries
             ============================================================ */

/* ----- tablet ----- */
@media (max-width: 991.98px) {
    .plumbing-order-heading {
      font-size: 32px;
    }

    .plumbing-order-title{
      text-align: center;
      font-size: 28px;
    }

    .plumbing-order-text{
      text-align: center;
    }

    .plumbing-order-content{
      margin-bottom: 22px;
    }

    /* columns stay 7/5 but card width becomes 100% */
    .plumbing-stats-card {
        width: 100%;
        margin-left: 0;
                display: flex;
        justify-content: center;
    }

    .plumbing-stat-item{
            display: flex;
    align-items: center;
    gap: 20px;
  
    flex-direction: column;
    text-align: center;
    margin: 10px;
    }

    .col-lg-7 {
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }
}

/* ----- mobile ----- */
@media (max-width: 767.98px) {
    .plumbing-order-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .plumbing-order-heading {
        font-size: 28px;
        text-align: left;
    }

    .plumbing-order-content {
        max-width: 100%;
    }

    .plumbing-order-title {
        font-size: 20px;
    }

    .plumbing-order-text {
        font-size: 16px;
    }

    /* single column */
    .col-lg-7,
    .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .plumbing-stats-card {
        width: 100%;
        padding: 28px;
        margin-left: 0;
        margin-top: 32px;
    }

    .plumbing-stat-icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
    }

    .plumbing-stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .plumbing-stat-number {
        font-size: 34px;
    }

    .plumbing-stat-label {
        font-size: 16px;
    }

    .plumbing-stat-item {
        gap: 16px;
        margin-bottom: 24px;
    }
}

/* ----- extra small tweaks ----- */
@media (max-width: 400px) {
    .plumbing-stats-card {
        padding: 20px;
                display: flex;
        flex-direction: column;
    }
    .plumbing-order-heading{
      text-align: center;
    }

    .plumbing-stat-item {
        gap: 14px;
    }

    .plumbing-stat-icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }

    .plumbing-stat-icon svg {
        width: 22px;
        height: 22px;
    }

    .plumbing-stat-number {
        font-size: 30px;
    }
}
 /* ============================================================
       SECTION WRAPPER — only the section (no body overrides)
       ============================================================ */
    .plumbing-services-section {
      font-family: var(--font);
      max-width: 1320px;
      margin: 0 auto;
    
      background: var(--bs-white);
    }

    /* ---------- GRID: 4 columns ---------- */
    .plumbing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    /* ---------- CARD ---------- */
    .plumbing-card {
      background: var(--bs-white);
      border-radius: var(--radius);
      padding: 32px 22px 28px;
      box-shadow: var(--shadow);
      border: 1px solid var(--bs-border-color);
      transition: box-shadow var(--transition), transform var(--transition);
      text-decoration: none;
      color: var(--dark-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      overflow: hidden;
      min-height: 180px;
      border-radius: 15px;
    }

    .plumbing-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
    }

    /* subtle primary bar at top */
    .plumbing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary-color);
      border-radius: var(--radius) var(--radius) 0 0;
      opacity: 0;
      transition: opacity var(--transition);
    }

    .plumbing-card:hover::before {
      opacity: 1;
    }

    /* ---------- CARD ICON ---------- */
    .plumbing-card-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      background: rgba(169, 31, 56, 0.08);
      border-radius: 50%;
      margin-bottom: 16px;
      color: var(--primary-color);
      flex-shrink: 0;
      transition: background var(--transition), color var(--transition);
    }

    .plumbing-card:hover .plumbing-card-icon {
      background: var(--primary-color);
      color: var(--bs-white);
    }

    .plumbing-card-icon svg {
      width: 28px;
      height: 28px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ---------- CARD CONTENT ---------- */
    .plumbing-card-title {
      font-size: 20px;
      font-weight: 600;
      color: var(--dark-color);
      margin: 0 0 6px 0;
      line-height: 1.3;
      letter-spacing: -0.2px;
    }

    .plumbing-card-desc {
     
      font-weight: 400;
      color: #6c757d;
      margin: 0 0 12px 0;
      line-height: 1.5;
    }

    .plumbing-card-arrow {
      font-size: 16px;
      font-weight: 600;
      color: var(--primary-color);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: gap var(--transition);
      margin-top: auto;
    }

    

    .plumbing-card-arrow svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ---------- SPECIAL STYLE FOR FIRST CARD (Plumbing) ---------- */
    .plumbing-card:first-child {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: var(--bs-white);
      border-radius: 15px;
          display: flex;
    align-items: center;
    }

    .plumbing-card:first-child .plumbing-card-icon {
      background: rgba(255, 255, 255, 0.2);
      color: var(--bs-white);
    }

    .plumbing-card:first-child .plumbing-card-title {
      color: var(--bs-white);
    }

    .plumbing-card:first-child .plumbing-card-desc {
      color: rgba(255, 255, 255, 0.85);
    }

    .plumbing-card:first-child .plumbing-card-arrow {
      color: var(--bs-white);
    }

    .plumbing-card:first-child::before {
      background: var(--bs-white);
    }

    .plumbing-card:first-child:hover .plumbing-card-icon {
      background: var(--bs-white);
      color: var(--primary-color);
    }

    /* ============================================================
       RESPONSIVE
       ============================================================ */

    /* ---------- TABLET (≤ 991.98px) ---------- */
    @media (max-width: 991.98px) {
      .plumbing-services-section {
        padding: 40px 20px 32px;
      }

      .plumbing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .plumbing-card {
        padding: 28px 20px 24px;
        min-height: 160px;
      }

      .plumbing-card-title {
        font-size: 18px;
      }

      .plumbing-card-desc {
        font-size: 16px;
      }
    }

    /* ---------- MOBILE (≤ 767.98px) ---------- */
    @media (max-width: 767.98px) {
      .plumbing-services-section {
        padding: 32px 16px 24px;
      }

      .plumbing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .plumbing-card {
        padding: 24px 18px 20px;
        min-height: 120px;
        flex-direction: row;
        align-items: center;
        gap: 16px;
      }

      .plumbing-card::before {
        height: 100%;
        width: 4px;
        border-radius: 0 var(--radius) var(--radius) 0;
        top: 0;
        left: 0;
        right: auto;
        bottom: 0;
      }

      .plumbing-card:first-child {
        background: var(--primary-color);
      }

      .plumbing-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
        flex-shrink: 0;
      }

      .plumbing-card-icon svg {
        width: 24px;
        height: 24px;
      }

      .plumbing-card-content {
        flex: 1;
      }

      .plumbing-card-title {
        font-size: 17px;
        margin-bottom: 2px;
      }

      .plumbing-card-desc {
        font-size: 13px;
        margin-bottom: 4px;
      }

      .plumbing-card-arrow {
        font-size: 13px;
        margin-top: 0;
      }
    }

    /* ---------- EXTRA SMALL (≤ 400px) ---------- */
    @media (max-width: 400px) {
      .plumbing-services-section {
        padding: 30px 12px 30px;
      }

      .plumbing-card {
        padding: 16px 12px 14px;
        min-height: 80px;
        gap: 12px;
        flex-wrap: wrap;
      }

      .plumbing-card-icon {
        width: 40px;
        height: 40px;
      }

      .plumbing-card-icon svg {
        width: 20px;
        height: 20px;
      }

      .plumbing-card-title {
        font-size: 16px;
        margin-top: 10px;
      }

      .service-card h3{
        margin-top: 0px;
      }

      .service-card p{
        margin-top: 0px;
      }

      .plumbing-card-desc {
        font-size: 16px;
      }

      .plumbing-card-arrow {
        font-size: 16px;
      }
    }
    /* ============================================================
   PLUMBING CARE SECTION — Updated CSS
   Uses only the provided root variables:
   --primary, --dark, --text, --border, --white
   No extra root variables added.
   ============================================================ */

/* ---------- BASE FONT ---------- */


/* ---------- SECTION BACKGROUND & PADDING ---------- */
.bg-light-gray {
  background-color: #f6f6f6; /* fixed – not in root */
}

.plumbing-care-section {

}

/* ---------- SPACERS ---------- */
.spacer-50 {
  height: 50px;
}
.spacer-40 {
  height: 40px;
}

/* ---------- HEADING ---------- */
.plumbing-care-heading {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-color);        /* #222222 */
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  margin-top: 0px;
}

/* ---------- SUBHEADING ---------- */
.plumbing-care-subheading {
  
  font-weight: 400;
  color: var(--dark-color);            /* fixed – not in root */
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 22px;
}

/* ---------- VIDEO CARD ---------- */
.video-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.video-card-img {
  width: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid #efc7cf;

}

/* ---------- PLAY BUTTON ---------- */
.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-button {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--primary-color); /* #A91F38 */
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 40px rgba(169, 31, 56, 0.35); /* using --primary rgba */
  pointer-events: auto;
  outline: none;
}

.play-button:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(169, 31, 56, 0.45);
}
.play-button:active {
  transform: scale(0.95);
}

.play-button svg {
  width: 32px;
  height: 32px;
  color: var(--bs-white);
  fill: var(--bs-white);
  margin-left: 4px; /* optical centering */
}

/* ---------- PARAGRAPHS ---------- */
.plumbing-care-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--dark-color);           /* fixed – not in root */
  font-weight: 400;
  text-align: center;
  margin-bottom: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


/* ---------- BUTTON GROUP ---------- */
.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ---------- BUTTON 1 — OUTLINED ---------- */
.btn-outline-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 34px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-outline-phone:hover {
  background: var(--primary-color);
  color: var(--bs-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(169, 31, 56, 0.25);
}
.btn-outline-phone:active {
  transform: translateY(0);
}
.btn-outline-phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- BUTTON 2 — FILLED ---------- */
.btn-filled-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 34px;
  background: var(--primary-color);
  color: var(--bs-white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-filled-chat:hover {
  background: #981728; /* darker shade – not in root, but we could use filter or define inline */
  color: var(--bs-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(169, 31, 56, 0.35);
}
.btn-filled-chat:active {
  transform: translateY(0);
}
.btn-filled-chat svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   (Matches the reference design)
   ============================================================ */

/* ---------- TABLET (≤ 991.98px) ---------- */
@media (max-width: 991.98px) {
  .plumbing-care-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .plumbing-care-heading {
    font-size: 32px;
  }
  .video-card {
    border-radius: 18px;
  }
  .play-button {
    width: 80px;
    height: 80px;
  }
  .play-button svg {
    width: 28px;
    height: 28px;
  }
  .plumbing-care-text {
    font-size: 17px;
  }
}

/* ---------- MOBILE (≤ 767.98px) ---------- */
@media (max-width: 767.98px) {
  .plumbing-care-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .plumbing-care-heading {
    font-size: 32px;
  }
  .plumbing-care-subheading {
    font-size: 18px;
  }
  .spacer-50 {
    height: 30px;
  }
  .spacer-40 {
    height: 30px;
  }
  .video-card {
    border-radius: 16px;
  }
  .play-button {
    width: 70px;
    height: 70px;
  }
  .play-button svg {
    width: 26px;
    height: 26px;
    margin-left: 3px;
  }
  .plumbing-care-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .button-group {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  .btn-outline-phone,
  .btn-filled-chat {
    width: 100%;
    max-width: 320px;
    height: 52px;
    padding: 0 24px;
    font-size: 15px;
    justify-content: center;
  }
}

/* ---------- EXTRA SMALL (≤ 400px) ---------- */
@media (max-width: 400px) {
  .plumbing-care-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .plumbing-care-heading {
    font-size: 28px;
  }
  .plumbing-care-subheading {
    font-size: 16px;
  }
  .plumbing-care-text {
    font-size: 15px;
  }
  .play-button {
    width: 60px;
    height: 60px;
  }
  .play-button svg {
    width: 22px;
    height: 22px;
  }
  .btn-outline-phone,
  .btn-filled-chat {
    height: 48px;
    font-size: 16px;
    padding: 0 18px;
    max-width: 100%;
  }
  .btn-outline-phone svg,
  .btn-filled-chat svg {
    width: 18px;
    height: 18px;
  }
}
/* ---------- TRUST BAR SECTION ---------- */
    .trust-bar {
      background: var(--bs-dark);       /* #171717 */
      height: 70px;
      display: flex;
      align-items: center;
    }

    /* ---------- LEFT: Rating + Stars + Text ---------- */
    .trust-left {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .trust-rating {
      font-size: 20px;
      font-weight: 600;
      color: var(--bs-white);
      line-height: 1;
    }

    .trust-stars {
      display: flex;
      align-items: center;
      gap: 2px;
      color: #FFD54A;          /* gold star color – fixed */
      font-size: 18px;
      line-height: 1;
    }

    .trust-stars .bi-star-fill {
      font-size: 18px;
    }

    .trust-review {
      font-size: 16px;
      font-weight: 500;
      color: var(--bs-white);
      line-height: 1.3;
    }

    .trust-review .google-highlight {
      font-weight: 600;
    }

    /* ---------- RIGHT: Icon Buttons ---------- */
    .trust-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .trust-icon-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--primary-color);   /* #A91F38 */
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--bs-white);
      font-size: 18px;
      transition: background 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      text-decoration: none;
      flex-shrink: 0;
    }

    .trust-icon-btn:hover {
      background: #8a1730;          /* darker shade – fixed */
      transform: scale(1.05);
    }

    .trust-icon-btn:active {
      transform: scale(0.95);
    }

    .trust-icon-btn i {
      font-size: 18px;
      line-height: 1;
    }

    /* ============================================================
       RESPONSIVE
       ============================================================ */

    /* ---------- TABLET (≤ 991.98px) ---------- */
    @media (max-width: 991.98px) {
      .trust-bar {
        height: 60px;
      }

      .trust-left {
        gap: 10px;
      }

      .trust-rating {
        font-size: 18px;
      }

      .trust-stars {
        font-size: 16px;
      }

      .trust-stars .bi-star-fill {
        font-size: 16px;
      }

      .trust-review {
        font-size: 16px;
      }

      .trust-right {
        gap: 12px;
      }

      .trust-icon-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
      }

      .trust-icon-btn i {
        font-size: 16px;
      }
    }

    /* ---------- MOBILE (≤ 767.98px) ---------- */
    @media (max-width: 767.98px) {
      .trust-bar {
        height: auto;
        padding: 16px 0;
      }

      .trust-bar .container-fluid,
      .trust-bar .container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .trust-left {
        gap: 8px;
        justify-content: center;
        width: 100%;
      }

      .trust-rating {
        font-size: 18px;
      }

      .trust-stars {
        font-size: 16px;
      }

      .trust-stars .bi-star-fill {
        font-size: 16px;
      }

      .trust-review {
        font-size: 16px;
        text-align: center;
        width: 100%;
        margin-top: 2px;
      }

      .trust-right {
        gap: 12px;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
      }

      .trust-icon-btn {
        width: 38px;
        height: 38px;
        font-size: 17px;
      }

      .trust-icon-btn i {
        font-size: 17px;
      }

      /* Stack layout: left on top, right below */
      .trust-bar .row {
        flex-direction: column;
        align-items: center;
        gap: 4px;
      }

      .trust-bar .col-auto {
        width: 100%;
        display: flex;
        justify-content: center;
      }
    }

    /* ---------- EXTRA SMALL (≤ 400px) ---------- */
    @media (max-width: 400px) {
      .trust-bar {
        padding: 14px 0;
      }

      .trust-left {
        gap: 6px;
      }

      .trust-rating {
        font-size: 16px;
      }

      .trust-stars {
        font-size: 16px;
      }

      .trust-stars .bi-star-fill {
        font-size: 16px;
      }

      .trust-review {
        font-size: 16px;
      }

      .trust-right {
        gap: 10px;
        margin-top: 8px;
      }

      .trust-icon-btn {
        width: 34px;
        height: 34px;
        font-size: 15px;
      }

      .trust-icon-btn i {
        font-size: 15px;
      }
    }
    /* ============================================================
   NEW JERSEY CHOOSES PRINCETON AIR — Complete CSS
   Uses root variables: --primary, --dark, --text, --border, --white
   Font: Poppins, sans-serif (assumed from global styles)
   ============================================================ */

/* ---------- SECTION ---------- */
.nj-section {
  background: var(--bs-white);           /* #ffffff */

}

/* ---------- HEADING ---------- */
.nj-heading {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-color);                   /* fixed – not in root */
  line-height: 1.15;
margin-top: 0px;
  letter-spacing: -0.5px;
  text-align: center;
}

/* ---------- LIST CONTAINER ---------- */
.nj-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nj-list li {
  display: block;
}

/* ---------- LIST ITEM ---------- */
.nj-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 8px;
  border-bottom: 1px solid var(--bs-border-color); /* #ECECEC */
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease, padding-left 0.25s ease;
  cursor: pointer;
  gap: 12px;
}

.nj-list-item:hover {
  background: #fafafa;                /* fixed – hover bg */
  padding-left: 12px;
  text-decoration: none;
}

.nj-list-item:active {
  background: #f0f0f0;
}

/* ---------- NUMBER ---------- */
.nj-number {
  width: 28px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1d;                     /* fixed */
  line-height: 1;
}

/* ---------- TITLE ---------- */
.nj-title {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  color: #4b4b4b;                     /* fixed */
  line-height: 1.3;
  transition: color 0.2s ease;
}

.nj-list-item:hover .nj-title {
  color: var(--dark-color);
}

/* ---------- PLUS ICON ---------- */
.nj-icon {
  font-size: 22px;
  color: #B51F33;                     /* fixed – primary-ish red */
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.nj-list-item:hover .nj-icon {
  transform: rotate(90deg);
  color: var(--primary-color);
}

/* ---------- CARD (RIGHT COLUMN) ---------- */
.nj-card {
  max-width: 320px;
  margin: 0 auto;
  border: 1px solid #efc7cf;          /* fixed – light pink border */
  border-radius: 22px;
  overflow: hidden;
  background: var(--bs-white);
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.nj-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

/* ---------- CARD IMAGE ---------- */
.nj-card-img {
  width: 100%;
  display: block;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 8px;
}

/* ---------- CARD BUTTON ---------- */
.nj-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 62px;
  background: #B51F33;                /* fixed */
  border: none;
  border-radius: 16px;
  color: var(--bs-white);
  font-size: 20px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.nj-card-btn:hover {
  background: #981728;                /* darker shade – fixed */
  color: var(--bs-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(181, 31, 51, 0.30);
}

.nj-card-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.nj-card-btn i {
  font-size: 22px;
  line-height: 1;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---------- TABLET (≤ 991.98px) ---------- */
@media (max-width: 991.98px) {
  .nj-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .nj-heading {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .nj-list-item {
    height: 64px;
    padding: 0 6px;
  }

  .nj-number {
    width: 24px;
    font-size: 16px;
  }

  .nj-title {
    font-size: 16px;
  }

  .nj-icon {
    font-size: 20px;
  }

  .nj-card {
    max-width: 100%;
    padding: 24px;
            text-align: center;
  }

  .nj-card-btn {
    height: 56px;
    font-size: 18px;
    border-radius: 14px;
  }

  .nj-card-btn i {
    font-size: 20px;
  }
}

/* ---------- MOBILE (≤ 767.98px) ---------- */
@media (max-width: 767.98px) {
  .nj-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .nj-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  /* Left column full width, right column below */
  .nj-section .row {
    flex-direction: column;
    gap: 0px;
  }

  .nj-section .col-lg-7,
  .nj-section .col-lg-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .nj-list-item {
    height: 60px;
    padding: 0 4px;
    gap: 10px;
  }

  .nj-list-item:hover {
    padding-left: 8px;
  }

  .nj-number {
    width: 22px;
    font-size: 15px;
  }

  .nj-title {
    font-size: 15px;
  }

  .nj-icon {
    font-size: 18px;
  }

  .nj-card {
    max-width: 100%;
    padding: 20px;
    border-radius: 18px;
  }

  .nj-card-img {
    margin-bottom: 20px;
  }

  .nj-card-btn {
    height: 52px;
    font-size: 17px;
    border-radius: 12px;
  }

  .nj-card-btn i {
    font-size: 18px;
  }
}

/* ---------- EXTRA SMALL (≤ 400px) ---------- */
@media (max-width: 400px) {
  .nj-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .nj-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .nj-list-item {
    height: 54px;
    padding: 0 2px;
    gap: 8px;
  }

  .nj-list-item:hover {
    padding-left: 6px;
  }

  .nj-number {
    width: 20px;
    font-size: 16px;
  }

  .nj-title {
    font-size: 16px;
  }

  .nj-icon {
    font-size: 16px;
  }

  .nj-card {
    padding: 16px;
    border-radius: 16px;
  }

  .nj-card-img {
    margin-bottom: 16px;
  }

  .nj-card-btn {
    height: 48px;
    font-size: 15px;
    border-radius: 10px;
    gap: 8px;
  }

  .nj-card-btn i {
    font-size: 16px;
  }
}
/* ============================================================
   THREE SIMPLE STEPS — Complete CSS
   Uses only the provided root variables:
   --primary, --dark, --text, --border, --white
   ============================================================ */

/* ---------- SECTION ---------- */


/* ---------- HEADING ---------- */
.steps-heading {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-color);               /* fixed – not in root */
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  margin-top: 0px;
}

/* ---------- SUBHEADING ---------- */
.steps-subheading {
  font-size: 22px;
  font-weight: 500;
  color: var(--dark-color);               /* fixed – not in root */
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- SUPPORTING TEXT ---------- */
.steps-supporting {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-color);               /* fixed – not in root */
  line-height: 1.5;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- CARDS WRAPPER ---------- */
.steps-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- STEP CARD ---------- */
/* .step-card {
  background: var(--bs-white);
  border: 1px solid #efb9c0;     
  border-radius: 22px;
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
} */

/* .card-body {
   background: var(--white);
   border: 1px solid #efb9c0;
   border-radius: 22px;
   padding: 30px;
   display: flex;
   gap: 24px;
   align-items: flex-start;
   transition: box-shadow 0.3s ease, transform 0.3s ease;
} */

.card-body {
   background: var(--bs-white);
   border: 1px solid #efb9c0;
   border-radius: 22px;
   padding: 30px;
   transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.card-body-flex{
   display: flex;
   gap: 24px;
   align-items: flex-start;
}

.card-body-center{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-decoration: none;


}




.card-body:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.06);
  transform: translateY(2px);
}

/* ---------- STEP CIRCLE ---------- */
.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);    /* #A91F38 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--bs-white);
  line-height: 1;
}

/* ---------- STEP CONTENT ---------- */
.step-content {
  flex: 1;
  min-width: 0;
}

/* ---------- STEP TITLE ---------- */
.step-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);         /* #A91F38 */
  margin: 0 0 12px 0;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

/* ---------- STEP TEXT ---------- */
.step-text {
  font-weight: 400;
  color: #555555;               /* fixed – not in root */
  line-height: 1.8;
  margin: 0;
}

/* ---------- IMAGE CARD ---------- */
.step-image-card {
  border: 1px solid #efb9c0;     /* fixed – light pink border */
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  background: #fafafa;
}

.step-image {
  width: 100%;
  height: 658px;
  object-fit: cover;
  display: block;
}

/* ---------- CTA GROUP ---------- */
.steps-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 55px;
}

/* ---------- BUTTON 1 — OUTLINED ---------- */
.steps-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 58px;
  padding: 0 34px;
  border: 2px solid var(--primary-color);   /* #A91F38 */
  background: transparent;
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.steps-btn-outline:hover {
  background: var(--primary-color);
  color: var(--bs-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(169, 31, 56, 0.25);
}

.steps-btn-outline:active {
  transform: translateY(0);
  box-shadow: none;
}

.steps-btn-outline i {
  font-size: 20px;
  line-height: 1;
}

/* ---------- BUTTON 2 — FILLED ---------- */
.steps-btn-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 58px;
  padding: 0 34px;
  background: var(--primary-color);         /* #A91F38 */
  color: var(--bs-white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.steps-btn-filled:hover {
  background: #8a1730;                /* darker shade – fixed */
  color: var(--bs-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(169, 31, 56, 0.35);
}

.steps-btn-filled:active {
  transform: translateY(0);
  box-shadow: none;
}

.steps-btn-filled i {
  font-size: 20px;
  line-height: 1;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---------- TABLET (≤ 991.98px) ---------- */
@media (max-width: 991.98px) {
  .steps-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .steps-heading {
   font-size: 32px;
  }

  .steps-subheading {
    font-size: 20px;
  }

  .steps-supporting {
    font-size: 17px;
    margin-bottom: 45px;
  }

  .step-card {
    padding: 24px;
    gap: 20px;
    border-radius: 18px;
  }

/*   .step-image{
    height: 870px;
  } */

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .step-title {
    font-size: 24px;
  }

  .step-text {
    font-size: 16px;
  }

  .step-image-card {
    min-height: 400px;
  }

  .steps-cta-group {
    margin-top: 45px;
    gap: 16px;
  }

  .steps-btn-outline,
  .steps-btn-filled {
    height: 54px;
    padding: 0 28px;
    font-size: 15px;
  }
}

/* ---------- MOBILE (≤ 767.98px) ---------- */
@media (max-width: 767.98px) {
  .steps-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .steps-heading {
    font-size: 32px;
  }

  .steps-subheading {
    font-size: 18px;
  }

  .steps-supporting {
    font-size: 16px;
    margin-bottom: 35px;
  }

  /* Stack columns vertically */
  .steps-section .row {
    flex-direction: column;
    gap: 30px;
  }

  .steps-section .col-lg-7,
  .steps-section .col-lg-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .step-card {
    padding: 20px;
    gap: 16px;
    border-radius: 16px;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .step-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

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

  .step-image-card {
    min-height: 420px;
    border-radius: 16px;
  }

  .steps-cta-group {
    flex-direction: column;
    gap: 14px;
    margin-top: 35px;
    width: 100%;
  }

  .steps-btn-outline,
  .steps-btn-filled {
    height: 52px;
    padding: 0 24px;
    font-size: 15px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .steps-btn-outline i,
  .steps-btn-filled i {
    font-size: 18px;
  }
}

/* ---------- EXTRA SMALL (≤ 400px) ---------- */
@media (max-width: 400px) {
  .steps-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .steps-heading {
    font-size: 28px;
  }

  .steps-subheading {
    font-size: 20px;
  }

  .steps-supporting {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .step-card {
    padding: 16px;
    gap: 14px;
    border-radius: 14px;
  }

  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .step-title {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .step-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .step-image-card {
    min-height: 320px;
    border-radius: 14px;
  }

  .steps-cta-group {
    margin-top: 28px;
    gap: 12px;
  }

  .steps-btn-outline,
  .steps-btn-filled {
    height: 48px;
    padding: 0 18px;
    font-size: 16px;
    max-width: 100%;
  }

  .steps-btn-outline i,
  .steps-btn-filled i {
    font-size: 16px;
  }
}
/* ============================================================
   CTA BANNER — Complete CSS
   Uses only the provided root variables:
   --primary, --dark, --text, --border, --white
   ============================================================ */

/* ---------- SECTION ---------- */
.cta-banner-section {
  background: var(--bs-white);
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--primary-color);           /* #A91F38 */
  border-radius: 24px;
  min-height: 92px;
  padding: 22px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 4px 20px rgba(169, 31, 56, 0.20);
}

/* ---------- LEFT SIDE ---------- */
.cta-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- PHONE ICON CIRCLE ---------- */
.cta-phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-phone-icon i {
  font-size: 18px;
  color: var(--primary-color);                /* #A91F38 */
  line-height: 1;
}

/* ---------- PHONE NUMBER ---------- */
.cta-phone-number {
  font-size: 34px;
  font-weight: 600;
  color: var(--bs-white);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  line-height: 1.2;
}

.cta-phone-number:hover {
  color: var(--bs-white);
  text-decoration: none;
  opacity: 0.85;
}

/* ---------- SUPPORTING TEXT ---------- */
.cta-phone-text {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
}

/* ---------- RIGHT SIDE ---------- */
.cta-banner-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

/* ---------- QUESTION TEXT ---------- */
.cta-question {
  font-size: 22px;
  font-weight: 500;
  color: var(--bs-white);
  line-height: 1.3;
}

/* ---------- CHAT BUTTON ---------- */
.cta-chat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  background: transparent;
  color: var(--bs-white);
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.cta-chat-btn:hover {
  background: var(--bs-white);
  color: var(--primary-color);                /* #A91F38 */
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-chat-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.cta-chat-btn i {
  font-size: 18px;
  line-height: 1;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---------- TABLET (≤ 991.98px) ---------- */
@media (max-width: 991.98px) {
  .cta-banner {
    padding: 20px 28px;
    gap: 24px;
    min-height: 80px;
  }

  .cta-banner-left {
    gap: 14px;
  }

  .cta-phone-icon {
    width: 38px;
    height: 38px;
  }

  .cta-phone-icon i {
    font-size: 16px;
  }

  .cta-phone-number {
    font-size: 28px;
  }

  .cta-phone-text {
    font-size: 16px;
  }

  .cta-banner-right {
    gap: 18px;
  }

  .cta-question {
    font-size: 19px;
  }

  .cta-chat-btn {
    height: 44px;
    padding: 0 24px;
    font-size: 16px;
  }

  .cta-chat-btn i {
    font-size: 16px;
  }
}

/* ---------- MOBILE (≤ 767.98px) ---------- */
@media (max-width: 767.98px) {
  .cta-banner-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cta-banner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    gap: 20px;
    min-height: auto;
    border-radius: 20px;
    text-align: center;
  }

  .cta-banner-left {
    justify-content: center;
    gap: 12px;
  }

  .cta-phone-icon {
    width: 36px;
    height: 36px;
  }

  .cta-phone-icon i {
    font-size: 15px;
  }

  .cta-phone-number {
    font-size: 22px;
    white-space: normal;
  }

  .cta-phone-text {
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  .cta-banner-right {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    justify-content: center;
  }

  .cta-question {
    font-size: 18px;
  }

  .cta-chat-btn {
    height: 46px;
    padding: 0 28px;
    font-size: 16px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .cta-chat-btn i {
    font-size: 16px;
  }
}

/* ---------- EXTRA SMALL (≤ 400px) ---------- */
@media (max-width: 400px) {
  .cta-banner-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .cta-banner {
    padding: 18px 16px;
    gap: 16px;
    border-radius: 18px;
  }

  .cta-banner-left {
    gap: 10px;
  }

  .cta-phone-icon {
    width: 32px;
    height: 32px;
  }

  .cta-phone-icon i {
    font-size: 16px;
  }

  .cta-phone-number {
    font-size: 20px;
  }

  .cta-phone-text {
    font-size: 16px;
  }

  .cta-banner-right {
    gap: 12px;
  }

  .cta-question {
    font-size: 16px;
  }

  .cta-chat-btn {
    height: 42px;
    padding: 0 20px;
    font-size: 16px;
    max-width: 100%;
  }

  .cta-chat-btn i {
    font-size: 16px;
  }
}

        /* ============================================================
           SECTION
           ============================================================ */
        .testimonial-section {
          
       
            width: 100%;
            margin: 0 auto;
        }

        /* ============================================================
           HEADER
           ============================================================ */
        .testimonial-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 70px auto;
        }

        .testimonial-heading {
            font-size: 44px;
            font-weight: 600;
            color: var(--secondary-color);
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin-top: 0px;
        }

        .testimonial-subtitle {
            font-size: 22px;
            font-weight: 500;
            color: var(--dark-color);
            margin: 0;
        }

        /* ============================================================
           CAROUSEL WRAPPER
           ============================================================ */
        .carousel-wrapper {
            position: relative;
            overflow: hidden;
        }

        /* ============================================================
           CAROUSEL TRACK
           ============================================================ */
        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        /* ============================================================
           CAROUSEL SLIDE
           ============================================================ */
        .carousel-slide {
            flex: 0 0 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding: 0 4px;
        }

        /* ============================================================
           TESTIMONIAL CARD
           ============================================================ */
  

        /* -- Top: Avatar + Info -- */
        .testimonial-top {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .testimonial-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 24px;
            font-weight: 600;
            color: var(--bs-white);
            line-height: 1;
        }

        .testimonial-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding-top: 2px;
        }

        .testimonial-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-color);
            line-height: 1.3;
        }

        .testimonial-time {
            font-size: 16px;
            font-weight: 400;
            color: #8a8a8a;
            line-height: 1.3;
        }

        /* -- Stars -- */
        .testimonial-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 16px;
        }

        .testimonial-stars i {
            font-size: 18px;
            color: #FFC107;
            line-height: 1;
        }

        /* -- Review -- */
        .testimonial-review {
            font-weight: 400;
            color: #555555;
            line-height: 1.8;
            margin: 0;
            flex: 1;
        }

        /* ============================================================
           CAROUSEL CONTROLS
           ============================================================ */
        .testimonial-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-top: 45px;
        }

        .testimonial-control-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid #dddddd;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--dark-color);
            font-size: 20px;
            padding: 0;
            line-height: 1;
        }

        .testimonial-control-btn:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--bs-white);
        }

        .testimonial-control-btn:active {
            transform: scale(0.95);
        }

        .testimonial-control-btn i {
            font-size: 20px;
            line-height: 1;
        }

        /* ============================================================
           CAROUSEL INDICATORS
           ============================================================ */
        .testimonial-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .testimonial-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background: #d5d5d5;
            cursor: pointer;
            padding: 0;
            transition: all 0.3s ease;
        }

        .testimonial-indicators button.active {
            background: var(--primary-color);
            transform: scale(1.15);
        }

        .testimonial-indicators button:hover:not(.active) {
            background: #b5b5b5;
        }

        /* ============================================================
           RESPONSIVE
           ============================================================ */

        /* ---------- TABLET (≤ 991px) ---------- */
        @media (max-width: 991px) {
            .testimonial-section {
                padding-top: 70px;
                padding-bottom: 70px;
            }

            .testimonial-heading {
               font-size: 32px;
            }

            .testimonial-subtitle {
                font-size: 20px;
                margin-bottom: 50px;
            }

            .testimonial-header {
                margin-bottom: 50px;
            }

            .carousel-slide {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .testimonial-card {
                padding: 24px;
                border-radius: 18px;
            }

            .testimonial-avatar {
                width: 46px;
                height: 46px;
                font-size: 20px;
            }

            .testimonial-name {
                font-size: 17px;
            }

            .testimonial-review {
                font-size: 16px;
            }

            .testimonial-control-btn {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            .testimonial-control-btn i {
                font-size: 18px;
            }
        }

        /* ---------- MOBILE (≤ 767px) ---------- */
        @media (max-width: 767px) {
            .testimonial-section {
                padding-top: 50px;
                padding-bottom: 50px;
            }

            .testimonial-heading {
                font-size: 32px;
            }

            .testimonial-subtitle {
                font-size: 18px;
            }

            .testimonial-header {
                margin-bottom: 35px;
            }

            .carousel-slide {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .testimonial-card {
                padding: 20px;
                border-radius: 16px;
            }

            .testimonial-top {
                gap: 12px;
            }

            .testimonial-avatar {
                width: 42px;
                height: 42px;
                font-size: 18px;
            }

            .testimonial-name {
                font-size: 16px;
            }

            .testimonial-time {
                font-size: 13px;
            }

            .testimonial-stars i {
                font-size: 16px;
            }

            .testimonial-review {
                font-size: 15px;
                line-height: 1.7;
            }

            .testimonial-controls {
                margin-top: 35px;
                gap: 14px;
            }

            .testimonial-control-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .testimonial-control-btn i {
                font-size: 16px;
            }

            .testimonial-indicators {
                margin-top: 18px;
                gap: 8px;
            }

            .testimonial-indicators button {
                width: 10px;
                height: 10px;
            }
        }

        /* ---------- EXTRA SMALL (≤ 400px) ---------- */
        @media (max-width: 400px) {
            .testimonial-section {
                padding-top: 40px;
                padding-bottom: 40px;
            }

            .testimonial-heading {
                font-size: 28px;
            }

            .testimonial-subtitle {
                font-size: 16px;
            }

            .testimonial-header {
                margin-bottom: 28px;
            }

            .testimonial-card {
                padding: 16px;
                border-radius: 14px;
            }

            .testimonial-avatar {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .testimonial-name {
                font-size: 15px;
            }

            .testimonial-time {
                font-size: 12px;
            }

            .testimonial-stars i {
                font-size: 16px;
            }

            .testimonial-review {
                font-size: 16px;
                line-height: 1.6;
            }

            .testimonial-controls {
                margin-top: 28px;
                gap: 12px;
            }

            .testimonial-control-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .testimonial-control-btn i {
                font-size: 16px;
            }

            .testimonial-indicators {
                margin-top: 35px;
                gap: 6px;
            }

            .testimonial-indicators button {
                width: 8px;
                height: 8px;
            }
        }
        /* ============================================================
   COUPON / SPECIAL OFFERS SECTION — Complete CSS
   Uses only the provided root variables:
   --primary, --dark, --text, --border, --white
   ============================================================ */

/* ---------- SECTION ---------- */
.coupon-section {
  background: var(--bs-white);

}

/* ---------- HEADING ---------- */
.coupon-heading {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  margin-top: 0px;
}

.coupon-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 70px;
}

/* ---------- COUPON CARD ---------- */

/* ---------- CARD BODY ---------- */
.coupon-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- CARD FOOTER ---------- */
.coupon-card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 8px;
}

/* ---------- DISCOUNT BADGE ---------- */
.coupon-badge {
  display: inline-block;
  background: #FCE8EC;
  color: var(--primary-color);
  font-size: 42px;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 14px;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* ---------- SERVICE TITLE ---------- */
.coupon-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.5;
  margin: 0 0 20px 0;
  text-align: center;
}

/* ---------- EXPIRATION ---------- */
.coupon-expiry {
  font-size: 17px;
  font-weight: 500;
  color: var(--dark-color);
  margin: 0 0 28px 0;
  line-height: 1.4;
}

/* ---------- PRIMARY BUTTON ---------- */
.coupon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 34px;
  background: var(--primary-color);
  color: var(--bs-white);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 260px;
}

.coupon-btn:hover {
  background: #99172B;
  color: var(--bs-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(169, 31, 56, 0.30);
}

.coupon-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.coupon-btn i {
  font-size: 18px;
  line-height: 1;
}

/* ---------- SECONDARY LINK ---------- */
.coupon-link {
  display: inline-block;
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.coupon-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.coupon-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.coupon-link:hover::after {
  width: 100%;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---------- TABLET (≤ 991.98px) ---------- */
@media (max-width: 991.98px) {
  .coupon-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .coupon-heading {
font-size: 32px;
  }

  .coupon-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .coupon-card {
    padding: 30px 24px;
    border-radius: 18px;
  }

  .coupon-badge {
    font-size: 36px;
    padding: 10px 18px;
    margin-bottom: 20px;
  }

  .coupon-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .coupon-expiry {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .coupon-btn {
    height: 50px;
    padding: 0 28px;
    font-size: 17px;
    max-width: 230px;
  }

  .coupon-btn i {
    font-size: 17px;
  }

  .coupon-link {
    font-size: 16px;
    margin-top: 16px;
  }
}

/* ---------- MOBILE (≤ 767.98px) ---------- */
@media (max-width: 767.98px) {
  .coupon-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .coupon-heading {
    font-size: 32px;
  }

  .coupon-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
  }

  .coupon-card {
    padding: 26px 20px;
    border-radius: 16px;
    max-width: 420px;
    margin: 0 auto;
  }

  .coupon-badge {
    font-size: 30px;
    padding: 10px 16px;
    margin-bottom: 18px;
  }

  .coupon-title {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .coupon-expiry {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .coupon-btn {
    height: 48px;
    padding: 0 24px;
    font-size: 16px;
    max-width: 220px;
  }

  .coupon-btn i {
    font-size: 16px;
  }

  .coupon-link {
    font-size: 15px;
    margin-top: 14px;
  }
}

/* ---------- EXTRA SMALL (≤ 400px) ---------- */
@media (max-width: 400px) {
  .coupon-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .coupon-heading {
    font-size: 28px;
  }

  .coupon-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .coupon-card {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .coupon-badge {
    font-size: 26px;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 12px;
  }

  .coupon-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .coupon-expiry {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .coupon-btn {
    height: 44px;
    padding: 0 18px;
    font-size: 15px;
    max-width: 200px;
    gap: 8px;
  }

  .coupon-btn i {
    font-size: 15px;
  }

  .coupon-link {
    font-size: 16px;
    margin-top: 12px;
  }
}
/* ============================================================
   FINANCING CTA BANNER — Complete CSS
   Uses only the provided root variables:
   --primary, --dark, --text, --border, --white
   ============================================================ */

/* ---------- SECTION ---------- */


/* ---------- CTA BANNER ---------- */
.financing-cta-banner {
  background: var(--primary-color);           /* #A91F38 */
  border-radius: 24px;
  min-height: 92px;
  padding: 24px 40px;
  gap: 30px;
  box-shadow: 0 4px 20px rgba(169, 31, 56, 0.20);
}

/* ---------- LEFT CONTENT ---------- */
.financing-cta-left {
  gap: 18px;
}

/* ---------- ICON ---------- */
.financing-cta-icon {
  font-size: 26px;
  color: var(--bs-white);
  line-height: 1;
  flex-shrink: 0;
}

/* ---------- HEADING ---------- */
.financing-cta-heading {
  font-size: 34px;
  font-weight: 600;
  color: var(--bs-white);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.3px;
}

/* ---------- RIGHT BUTTON ---------- */
.financing-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  background: transparent;
  color: var(--bs-white);
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}

.financing-cta-btn:hover {
  background: var(--bs-white);
  color: var(--primary-color);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.financing-cta-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.financing-cta-btn i {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.financing-cta-btn:hover i {
  transform: translateX(3px);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---------- TABLET (≤ 991.98px) ---------- */
@media (max-width: 991.98px) {
  .financing-cta-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .financing-cta-banner {
    padding: 20px 30px;
    min-height: 80px;
    gap: 24px;
  }

  .financing-cta-left {
    gap: 14px;
  }

  .financing-cta-icon {
    font-size: 22px;
  }

  .financing-cta-heading {
    font-size: 28px;
  }

  .financing-cta-btn {
    height: 44px;
    padding: 0 26px;
    font-size: 16px;
  }

  .financing-cta-btn i {
    font-size: 18px;
  }
}

/* ---------- MOBILE (≤ 767.98px) ---------- */
@media (max-width: 767.98px) {
  .financing-cta-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .financing-cta-banner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    min-height: auto;
    border-radius: 20px;
    text-align: center;
    gap: 20px;
  }

  .financing-cta-left {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .financing-cta-icon {
    font-size: 22px;
  }

  .financing-cta-heading {
    font-size: 22px;
    text-align: center;
  }

  .financing-cta-btn {
    height: 48px;
    padding: 0 28px;
    font-size: 16px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .financing-cta-btn i {
    font-size: 18px;
  }
}

/* ---------- EXTRA SMALL (≤ 400px) ---------- */
@media (max-width: 400px) {
  .financing-cta-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .financing-cta-banner {
    padding: 18px 16px;
    border-radius: 18px;
    gap: 16px;
  }

  .financing-cta-left {
    gap: 12px;
  }

  .financing-cta-icon {
    font-size: 18px;
  }

  .financing-cta-heading {
    font-size: 20px;
  }

  .financing-cta-btn {
    height: 44px;
    padding: 0 20px;
    font-size: 15px;
    max-width: 100%;
  }

  .financing-cta-btn i {
    font-size: 16px;
  }
}
/* ============================================================
   HOME COMFORT CLUB SECTION — Complete CSS
   Uses only the provided root variables:
   --primary, --dark, --text, --border, --white
   ============================================================ */

/* ---------- SECTION ---------- */
.comfort-club-section {
  background: var(--bs-white);

}

/* ---------- HEADING ---------- */
.comfort-club-heading {
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -0.5px;
  margin-top: 0px;
}

.comfort-club-heading-sub {
  display: block;
}

/* ---------- PARAGRAPH ---------- */
.comfort-club-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-color);
  line-height: 1.8;
  margin-top: 24px;
  margin-bottom: 70px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- IMAGE WRAPPER ---------- */
.comfort-club-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #efc7cf;

}

.comfort-club-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 472px;
}

/* ---------- FEATURE LIST ---------- */
.comfort-club-list {
  list-style: none;
  padding: 0;
  
}

.comfort-club-list li {
  display: block;
  border-bottom: 1px solid var(--bs-border-color);
}

.comfort-club-list li:last-child {
  border-bottom: 1px solid var(--bs-border-color);
}

/* ---------- FEATURE ITEM ---------- */
.comfort-club-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease, padding-left 0.25s ease;
  cursor: pointer;
  gap: 12px;
}

.comfort-club-item:hover {
  background: #fafafa;
  padding-left: 12px;
  text-decoration: none;
}

.comfort-club-item:active {
  background: #f0f0f0;
}

/* ---------- NUMBER ---------- */
.comfort-club-number {
  width: 28px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1d;
  line-height: 1;
}

/* ---------- TITLE ---------- */
.comfort-club-title {
  flex: 1;
  font-size: 22px;
  font-weight: 500;
  color: #4b4b4b;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.comfort-club-item:hover .comfort-club-title {
  color: var(--dark-color);
}

/* ---------- PLUS ICON ---------- */
.comfort-club-icon {
  font-size: 22px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.comfort-club-item:hover .comfort-club-icon {
  transform: rotate(90deg);
}

/* ---------- MEMBERSHIP CARD ---------- */
.comfort-club-membership {
  /* margin-top: 50px; */
  padding-top: 8px;
}

.comfort-club-membership-title {
  font-size: 34px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.comfort-club-membership-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-color);
  margin: 0 0 22px 0;
  line-height: 1.4;
}

/* ---------- MEMBERSHIP BUTTONS ---------- */
.comfort-club-membership-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- PRICE BUTTON (Outlined) ---------- */
.comfort-club-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 28px;
  border: 2px solid var(--primary-color);
  border-radius: 14px;
  background: transparent;
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.2;
}

.comfort-club-price-btn:hover {
  background: var(--primary-color);
  color: var(--bs-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(169, 31, 56, 0.25);
}

.comfort-club-price-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ---------- PRIMARY BUTTON (Filled) ---------- */
.comfort-club-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 34px;
  background: var(--primary-color);
  color: var(--bs-white);
  border: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.comfort-club-primary-btn:hover {
  background: #99172B;
  color: var(--bs-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(169, 31, 56, 0.35);
}

.comfort-club-primary-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.comfort-club-primary-btn i {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.comfort-club-primary-btn:hover i {
  transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---------- TABLET (≤ 991.98px) ---------- */
@media (max-width: 991.98px) {
  .comfort-club-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .comfort-club-heading {
    font-size: 32px;
  }

  .comfort-club-text {
    font-size: 19px;
    margin-bottom: 50px;
  }

  .comfort-club-image {
    min-height: 320px;
  }

  .comfort-club-item {
    height: 64px;
    padding: 0 6px;
  }

  .comfort-club-number {
    width: 24px;
    font-size: 16px;
  }

  .comfort-club-title {
    font-size: 19px;
  }

  .comfort-club-icon {
    font-size: 20px;
  }

  .comfort-club-membership {
    margin-top: 0px;
  }

  .comfort-club-membership-title {
    font-size: 30px;
  }

  .comfort-club-membership-sub {
    font-size: 17px;
  }

  .comfort-club-price-btn {
    height: 50px;
    padding: 0 24px;
    font-size: 24px;
  }

  .comfort-club-primary-btn {
    height: 50px;
    padding: 0 28px;
    font-size: 17px;
  }
}

/* ---------- MOBILE (≤ 767.98px) ---------- */
@media (max-width: 767.98px) {
  .comfort-club-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .comfort-club-heading {
    font-size: 32px;
  }

  .comfort-club-text {
    font-size: 17px;
    margin-top: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
  }

  .comfort-club-section .row {
    flex-direction: column;
    gap: 30px;
  }

  .comfort-club-section .col-lg-5,
  .comfort-club-section .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .comfort-club-image {
    min-height: 280px;
    border-radius: 20px;
  }

  .comfort-club-image-wrap {
    border-radius: 20px;
  }

  .comfort-club-item {
    height: 60px;
    padding: 0 4px;
    gap: 10px;
  }

  .comfort-club-item:hover {
    padding-left: 8px;
  }

  .comfort-club-number {
    width: 22px;
    font-size: 15px;
  }

  .comfort-club-title {
    font-size: 17px;
  }

  .comfort-club-icon {
    font-size: 18px;
  }

  .comfort-club-list {
    margin-bottom: 35px;
  }

  .comfort-club-membership {
    margin-top: 30px;
  }

  .comfort-club-membership-title {
    font-size: 26px;
  }

  .comfort-club-membership-sub {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .comfort-club-membership-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .comfort-club-price-btn {
    height: 52px;
    padding: 0 24px;
    font-size: 22px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .comfort-club-primary-btn {
    height: 52px;
    padding: 0 28px;
    font-size: 17px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ---------- EXTRA SMALL (≤ 400px) ---------- */
@media (max-width: 400px) {
  .comfort-club-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .comfort-club-heading {
    font-size: 28px;
  }

  .comfort-club-text {
    font-size: 16px;
    margin-top: 14px;
    margin-bottom: 28px;
  }

  .comfort-club-image {
    min-height: 220px;
  }

  .comfort-club-item {
    height: 54px;
    padding: 0 2px;
    gap: 8px;
  }

  .comfort-club-item:hover {
    padding-left: 6px;
  }

  .comfort-club-number {
    width: 20px;
    font-size: 16px;
  }

  .comfort-club-title {
    font-size: 15px;
  }

  .comfort-club-icon {
    font-size: 16px;
  }

  .comfort-club-membership {
    margin-top: 24px;
    text-align: center;
  }

  .comfort-club-membership-title {
    font-size: 22px;
  }

  .comfort-club-membership-sub {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .comfort-club-price-btn {
    height: 48px;
    padding: 0 18px;
    font-size: 20px;
    max-width: 100%;
  }

  .comfort-club-primary-btn {
    height: 48px;
    padding: 0 20px;
    font-size: 16px;
    max-width: 100%;
    border-radius: 12px;
  }

  .comfort-club-primary-btn i {
    font-size: 16px;
  }

  .comfort-club-membership-buttons {
    gap: 12px;
  }
}

/* .new-jersey-title{
    font-size: 44px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.15;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    margin-top: 0px;
    text-align: center;
}

.new-jersey-subtitle{
        font-size: 22px;
    font-weight: 500;
    color: var(--dark-color);
}

.new-jersey-button-group{
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.new-jersey-description{
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-color);
    line-height: 1.8;
    margin-top: 24px;
    margin-bottom: 70px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
} */


        .plumbing-hero {
           
           
            border-bottom: 1px solid #e5e5e5;
        }

        .plumbing-hero .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .plumbing-hero .hero-content {
            max-width: 800px;
        }

        .plumbing-hero h1 {
              font-size: 44px;
    font-weight: 600;
    color: var(--secondary-color);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            text-align: center;
        }

        .section-subtitle{
                font-size: 22px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 70px;
        }

        .plumbing-hero h1 .highlight {
            color: #a91f38;
        }

        .plumbing-hero p {
            color: var(--secondary-color);
            margin-bottom: 24px;
            max-width: 650px;
            line-height: 1.8;
            margin-top: 0px;
        }

        .plumbing-hero .contact-row {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .plumbing-hero .phone-link {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #a91f38;
            font-size: 1.3rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .plumbing-hero .phone-link:hover {
            color: #8a1730;
        }

        .plumbing-hero .phone-link .phone-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #a91f38;
            border-radius: 50%;
            color: #fff;
            flex-shrink: 0;
        }

        .plumbing-hero .phone-link .phone-icon svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .plumbing-hero .chat-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #a91f38;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 20px;
            border: 2px solid #a91f38;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .plumbing-hero .chat-link:hover {
            background: #a91f38;
            color: #fff;
        }

        .plumbing-hero .chat-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* ============================================================
           SERVICES GRID SECTION
           ============================================================ */
    

        .services-section .section-header {
            margin-bottom: 40px;
        }

        .services-section .section-header h2 {
              font-size: 44px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-align: center;
    margin-top: 0;
        }


        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: #ffffff;
            padding: 30px 28px;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #efb9c0;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
            border-color:#efb9c0;
        }

        .service-card .card-icon {
            width: 48px;
            height: 48px;
            background: rgba(169, 31, 56, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: #a91f38;
            flex-shrink: 0;
        }

        .service-card .card-icon svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .service-card h3 {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 10px;
        }

        .service-card p {
            color: #555;
            line-height: 1.7;
            flex: 1;
            margin-bottom: 16px;
        }

        .service-card .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #a91f38;
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
            align-self: flex-start;
            margin-top: auto;
        }

        .service-card .card-link:hover {
            gap: 12px;
            color: #8a1730;
        }

        .service-card .card-link .arrow {
            transition: transform 0.3s ease;
        }

        .service-card .card-link:hover .arrow {
            transform: translateX(4px);
        }

        .plumbing-hvac-section{
            font-family: var(--font);
    margin: 0 auto;

        }

        /* ============================================================
           RESPONSIVE
           ============================================================ */

        /* Tablet */
        @media (max-width: 991px) {
            .plumbing-hero {
                padding: 40px 24px;
            }

            .plumbing-hero h1 {
                font-size: 32px;
            }

            .services-section {
                padding: 40px 24px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .services-section .section-header h2 {
                font-size:32px;
            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .plumbing-hero {
                padding: 30px 16px;
            }

            .plumbing-hero h1 {
                font-size: 28px;
            }

            .plumbing-hero p {
                font-size: 16px;
                text-align: center;
            }

            .plumbing-hero .contact-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .plumbing-hero .phone-link {
                font-size: 1.1rem;
            }

            .services-section {
                padding: 30px 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            span.highlight {
    font-size: 28px;
}

            .services-section .section-header h2 {
                font-size: 1.5rem;
            }

            .service-card {
                padding: 24px 20px;
            }
            .plan-details-checklist-text{
                font-size: 16px;
            }

            .pricing-brand-description{
                font-size: 16px;
            }

            .signup-form-subtitle{
                font-size: 16px;
            }
        }

        /* =========================================
   COMFORT SECTION
========================================= */

.comfort-section {
    background-color: #ffffff;
  
}

/* Heading */
.comfort-heading {
    margin-bottom: 40px;
}

.comfort-heading h2 {
font-size: 44px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-align: center;
margin: 0;
line-height: 1.15;
}

/* Main content */
.comfort-content {
    row-gap: 30px;
}

/* Image */
.comfort-image {
    overflow: hidden;
    border-radius: 25px;
}

.comfort-image img {
    width: 100%;
    height: 376px;
    object-fit: cover;
    display: block;
    border: 1px solid #efc7cf;

}

.comfort-image-restore img{
     width: 100%;
    height: 490px;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    border: 1px solid #efc7cf;

}

/* Right content */
.comfort-info {
    padding-left: 25px;
}

.comfort-info p {
    color: var(--secondary-color);
    margin-bottom: 24px;
    max-width: 650px;
    line-height: 1.8;
}

.comfort-info p:last-of-type {
    margin-bottom: 22px;
}

/* =========================================
   CTA BOX
========================================= */

.comfort-cta {
    background-color: #fde8ed;
    border: 1px solid #be1e3d;
    border-radius: 27px;
    padding: 25px 28px 30px;
}

/* CTA title */
.cta-small-title {
       color: var(--secondary-color);
    margin-bottom: 24px;
    max-width: 650px;
    line-height: 1.8;
    font-size: 20px;
}

.comfort-cta h3 {
    margin: 0;
    color: #b51d3b;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3;
}

/* CTA buttons */
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 27px;
}

/* Phone button */
.cta-phone,
.cta-schedule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 51px;
    padding: 10px 25px;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Phone */
.cta-phone {
    color: #be1e3d;
    background-color: #ffffff;
    border: 1px solid #be1e3d;
}

.cta-phone i {
    font-size: 23px;
}

.cta-phone:hover {
    color: #ffffff;
    background-color: #be1e3d;
}

/* Schedule */
.cta-schedule {
    color: #ffffff;
    background-color: #b51d3b;
    border: 1px solid #b51d3b;
    padding-left: 28px;
    padding-right: 28px;
}

.cta-schedule i {
    font-size: 19px;
}

.cta-schedule:hover {
    color: #ffffff;
    background-color: #92172f;
    border-color: #92172f;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {

    .comfort-section {
        padding: 40px 0;
    }

    .comfort-heading h2 {
        font-size: 32px;
    }

    .comfort-info {
        padding-left: 0;
    }

    .comfort-image img {
       height: 500px;
    }

    .plumbing-hero p{
        line-height: 30px;
    }

    .service-card h3{
        margin-top: 0px;
    }
    .service-card p{
        margin-top: 0px;
    }

    .comfort-info p {
        font-size: 17px;
    }

    .comfort-cta h3 {
        font-size: 22px;
    }

    .cta-buttons {
        flex-wrap: wrap;
    }

}


@media (max-width: 767.98px) {

    .comfort-section {
        padding: 35px 0;
    }

    .comfort-heading {
        margin-bottom: 30px;
    }

    .comfort-heading h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .comfort-image img {
        height: 400px;
    }

    .comfort-info {
        margin-top: 10px;
    }

    .comfort-info p {
        font-size: 16px;
        line-height: 1.5;
    }

    .comfort-cta {
        padding: 22px 20px 25px;
        border-radius: 22px;
    }

    .cta-small-title {
        font-size: 18px;
    }

    .comfort-cta h3 {
        font-size: 21px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .cta-phone,
    .cta-schedule {
        width: 100%;
        font-size: 17px;
    }

}


@media (max-width: 575.98px) {

    .comfort-heading h2 {
        font-size: 28px;
    }

    .comfort-image img {
        height: 350px;
    }

}