:root {
  --jayco-red: #bd201b;
  --jayco-red-dark: #941611;
  --ink: #171717;
  --muted: #3d3b3b;
  --soft: #f4f4f4;
  --line: #dedede;
  --white: #ffffff; 
  --font-heading: "Montserrat", Arial, Helvetica, sans-serif;
  --font-body: "Mona Sans", Arial, Helvetica, sans-serif;
}
    
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

p {
  font-family: var(--font-body);
}

.container {
  max-width: 1240px;
}

.section-pad {
  padding: 95px 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--jayco-red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 120px;
}
.blog-section .section-heading { 
  margin: 0 auto 40px;
}

.section-heading h2,
.about-content h2,
.about-legacy-copy h2,
.about-timeline-copy h2,
.trust-copy h2,
.story-intro h2,
.faq-side h2 {
  font-family: var(--font-heading);
  margin: 0;
  color: var(--jayco-red);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-heading p { 
  color: var(--muted); 
  margin: 14px 0 0; 
    font-size: 17px;
    font-weight: 300;
}

.btn {
  min-height: 42px;
  padding: 12px 25px;
      border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  --bs-btn-bg: var(--jayco-red);
  --bs-btn-border-color: var(--jayco-red);
  --bs-btn-hover-color: var(--jayco-red);
  --bs-btn-hover-bg: var(--white);
  --bs-btn-hover-border-color: var(--jayco-red);
  --bs-btn-active-bg: var(--jayco-red-dark);
  --bs-btn-active-border-color: var(--jayco-red-dark);
}

main .btn-primary:hover,
main .btn-primary:focus {
  transform: translateY(-2px);
  
}

.btn-light {
  --bs-btn-color: var(--jayco-red);
  --bs-btn-bg: var(--white);
  --bs-btn-border-color: var(--white);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg: var(--ink);
  --bs-btn-hover-border-color: var(--ink);
}

.btn-outline-light {
  --bs-btn-border-color: rgba(255, 255, 255, 0.7);
  --bs-btn-hover-color: var(--jayco-red);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.header-topbar {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid rgba(189, 32, 27, 0.08);
}

.header-topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.header-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 400;
}

.header-topbar-link i,
.header-topbar-icon {
  color: var(--jayco-red);
}

.header-topbar-link:hover {
  color: var(--jayco-red);
}

.header-topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-topbar-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.site-header .navbar {
  position: relative;
  min-height: 92px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  transition: min-height 0.35s ease, box-shadow 0.35s ease;
}

.site-header .navbar::before {
  content: "";
  position: absolute;
  inset: 0 0 0 34%;
  z-index: 0;
  background: var(--jayco-red);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.site-header .container {
  position: relative;
  z-index: 1;
}

.site-header.is-sticky .navbar {
  min-height: 76px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.12);
}

.site-header.is-sticky .navbar-brand {
  width: 310px;
}

.site-header.is-sticky .navbar .nav-link {
  padding-top: 28px;
  padding-bottom: 28px;
}

.navbar-brand {
  width: 360px;
  padding: 0;
  transition: width 0.35s ease, padding 0.35s ease;
}

.navbar-brand img {
  display: block;
  width: 100%;
}

.navbar-nav {
  gap: 10px;
}

.navbar .nav-link {
  position: relative;
  color: var(--white);
      font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 36px 5px;
  transition: color 0.25s ease, padding 0.35s ease;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  right: auto;
  bottom: 30px;
  left: 50%;
  width: calc(100% - 10px);
  height: 1px;
  border-radius: 0;
  background: var(--white);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease, bottom 0.35s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #ffe6e4;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.site-header.is-sticky .navbar .nav-link::after {
  bottom: 23px;
}

.header-btn {
  min-height: 35px;
  padding: 10px 18px;
  color: var(--jayco-red);
  font-size: 11px;
}

.navbar-toggler {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--jayco-red);
  padding: 9px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.mobile-menu-head,
.mobile-menu-contact,
.mobile-menu-backdrop {
  display: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  color: var(--white);
  background: #fff;
}

 

.hero-media {
  position: absolute;
  inset: 95px 0 0;
  background-image: url("../img/banner-img.webp");
  background-position: center top;
  background-size: cover;
  transform: scale(1.02);
  animation: heroPulse 9s ease-in-out infinite alternate;
}

.min-vh-hero {
  min-height: 520px;
  padding-top: 126px;
  position: relative;
  z-index: 3;
}

.hero-copy {
  padding-top: 35px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: 70px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-copy p {
      margin: 0 0 28px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .btn {
  min-width: 170px; 
  padding: 0 26px;
  border-radius: 10px;
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus {
  color: var(--jayco-red);
  background: var(--white);
  border-color: var(--white);
}

.product-section {
  padding-top: 64px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 282px;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  border-radius: 20px;
  background: #ededed;
  border: 1px solid transparent;
  border-bottom: 5px solid var(--jayco-red);
  /* box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08); */
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  position: absolute;
  left: 50%; 
    bottom: 0px;
    max-height: 350px;
  transform: translateX(-50%);
  transition: transform 0.35s ease;
}

.product-card h3 {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 0 16px 30px;
  color: var(--jayco-red);
  font-family: var(--font-heading);
      font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--jayco-red);
  box-shadow: 0 16px 36px rgba(189, 32, 27, 0.16);
  color: inherit;
}

.product-card:hover img {
  transform: translate(-50%, -8px);
}

.about-section {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.about-machine {
  position: absolute;
  top: 86px;
  width: 280px;
  pointer-events: none;
}

.about-left {
  left: 0;
}

.about-right {
  right: 0;
}

.about-content {
  max-width: 850px;
  margin: 0 auto;
}

.about-content h2 span {
      display: inline-block;
    margin-left: -4px;
    margin-top: -8px;
    color: var(--jayco-red);
    font-size: 15px;
    line-height: 1.15;
    text-align: left;
    text-transform: none;
    vertical-align: middle;
    font-family: var(--font-body);
    font-weight: 700;
}

.about-content h3 {
      margin: 30px 0 10px;
    color: var(--jayco-red);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.8px;
  text-transform: uppercase;
}

.about-content p {
  color: var(--muted);
  font-size: 17px;
}

.about-legacy-section {
  background: var(--white);
  overflow: hidden;
}

.about-legacy-intro {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(560px, 0.95fr);
  gap: 0px;
  align-items: start;
}
.about-tust{
  margin-bottom: 160px;
}

.about-legacy-copy h2,
.about-timeline-copy h2 {
  margin-bottom: 20px;
  font-size: 40px;
}

.about-legacy-copy p,
.about-timeline-copy p,
.about-timeline-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-legacy-copy p {
  margin: 0 0 8px;
}

.about-legacy-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.about-legacy-media {
  position: relative;
  width: 100%;
  max-width: none;
  justify-self: end;
  margin-top: 4px;
  margin-right: min(0px, calc((1240px - 100vw) / 2));
  overflow: hidden;
  border-radius: 12px;
}

.about-legacy-stats {
  position: absolute;
  inset: 28px auto 26px 34px;
  z-index: 1;
  display: flex;
  width: min(245px, 44%);
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  pointer-events: none;
}

.about-legacy-stats div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.about-legacy-stats div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-legacy-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 0.9;
}

.about-legacy-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.about-timeline-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: start;
  margin-top: clamp(110px, 12vw, 190px);
}

.about-timeline-copy {
  position: sticky;
  top: 118px;
}

.about-timeline-copy h2 {
  max-width: 560px;
}

.about-timeline-copy p {
  max-width: 660px;
  margin: 0 0 18px;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 82px;
  padding-left: 64px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: #eeeeee;
}

.about-timeline-card {
  position: relative;
  min-height: 132px;
  padding: 28px 34px;
  border-radius: 12px;
  background: #f2f2f2;
  overflow: visible;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-timeline-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -72px;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: 4px solid #f8dede;
  border-radius: 50%;
  background: var(--jayco-red);
  transform: translateY(-50%);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.about-timeline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--jayco-red);
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s ease;
}

.about-timeline-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 4px;
  color: var(--jayco-red);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 0.35s ease;
}

.about-timeline-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #050505;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 0.35s ease;
}

.about-timeline-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  transition: color 0.35s ease;
}

.about-timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(189, 32, 27, 0.18);
}

.about-timeline-card:hover::before {
      border-color: rgb(189 32 27);
    background: #fff;
  box-shadow: 0 0 0 8px rgba(189, 32, 27, 0.12);
  transform: translateY(-50%) scale(1.12);
}

.about-timeline-card:hover::after {
  transform: scaleY(1);
}

.about-timeline-card:hover span,
.about-timeline-card:hover h3,
.about-timeline-card:hover p {
  color: var(--white);
}

.trust-section {
  position: relative;
  padding: 98px 0 0;
  min-height: 760px;
  overflow: visible;
  background: #f5f5f5;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/why-trust-bg.webp") left bottom / 76% auto no-repeat;
  /* opacity: 0.34; */
}

.trust-section .container {
  position: relative;
  z-index: 1;
}

.trust-section .row {
  position: relative;
  display: block;
  min-height: 625px;
}

.trust-section .col-lg-5,
.trust-section .col-lg-7 {
  width: 100%;
  max-width: 100%;
}

.trust-copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  max-width: 560px;
}

.trust-copy p,
.story-intro p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
}

.trust-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  min-height: 0;
  margin-left: 0;
  --trust-card-w: 300px;
  --trust-card-gap: clamp(36px, 3.9vw, 66px);
  --trust-card-step: calc(var(--trust-card-w) + var(--trust-card-gap));
}

.trust-card {
  position: absolute;
  width: var(--trust-card-w);
  min-height: 205px;
  padding: 34px 30px;
  border: 1px dashed #d2d2d2;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--jayco-red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: var(--jayco-red);
  background: rgba(255, 255, 255, 0.96);
}

.trust-card:hover::before {
  transform: scaleY(1);
}

.trust-card img {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 30px;
  transition: filter 0.32s ease, transform 0.32s ease;
}

.trust-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--jayco-red);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.08;
  transition: color 0.32s ease;
}

.trust-card:hover img {
  filter: brightness(0) invert(1);
}

.trust-card:hover h3 {
  color: var(--white);
}

.trust-card-one {
  left: 0;
  top: 312px;
}

.trust-card-two {
  left: var(--trust-card-step);
  top: 208px;
}

.trust-card-three {
  left: calc(var(--trust-card-step) * 2);
  top: 104px;
}

.trust-card-four {
  left: calc(var(--trust-card-step) * 3);
  top: 0;
}

.cta-band {
  position: absolute;
  display: flex;
  width: 70%;
  right: 0;
  min-height: 130px;
  /* margin: -118px 0 0 auto; */
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 330px 30px 38px;
  overflow: visible;
  border-radius: 5px;
  background: var(--jayco-red);
  color: var(--white);
  box-shadow: none;
  z-index: 9;
}

.cta-band h2 {
  margin: 0;
  max-width: 455px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.cta-band img {
  position: absolute;
  right: -86px;
  bottom: 0;
  width: 330px;
  z-index: 2;
}

.story-section {
  padding-top: 96px;
  padding-bottom: 0px;
  overflow: hidden;
      margin-top: 120px;
}

.story-section .row {
  /* align-items: center; */
}

.story-section .col-lg-4 {
  flex: 0 0 30%;
  max-width: 30%;
}

.story-section .col-lg-8 {
  flex: 0 0 70%;
  max-width: 70%;
}

.story-intro h2 {
  max-width: 390px;
  font-size: 36px;
  line-height: 1.08;
}

.story-slider {
  position: relative;
  z-index: 1;
  margin-right: -220px;
  padding: 0 0 42px;
  overflow: visible;
  clip-path: inset(-80px -260px -90px 0);
}

.story-slider .slick-list {
  overflow: visible;
  margin-left: 0;
}

.story-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.story-slider .slick-slide {
  position: relative;
  width: 800px;
  opacity: 0.46;
  pointer-events: none;
  z-index: 0;
  transform: translateX(-118px) scale(0.92);
  transition: opacity 0.45s ease, transform 0.45s ease, z-index 0.45s ease;
}

.story-slider .slick-active {
  opacity: 0.52;
}

.story-slider .slick-current,
.story-slider .slick-center {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  transform: translateX(0) scale(1);
}

.story-slider .slick-current + .slick-slide,
.story-slider .slick-center + .slick-slide {
  opacity: 0.52;
  z-index: 1;
  transform: translateX(-142px) scale(0.94);
}

.story-slider .slick-current + .slick-slide .story-slide,
.story-slider .slick-center + .slick-slide .story-slide {
  filter: saturate(0.92);
}

.story-slider .slick-current + .slick-slide .story-card,
.story-slider .slick-center + .slick-slide .story-card {
  box-shadow: none;
}

.story-slide {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 800px;
  align-items: stretch;
  padding: 0;
  margin-right: 0;
  border-radius: 18px;
  box-shadow: 0 22px 42px rgba(17, 17, 17, 0.12);
}

.story-image {
  min-height: 455px;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  box-shadow: none;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-card {
  min-height: 455px;
  padding: 34px 28px;
  border-radius: 0 18px 18px 0;
  background: var(--jayco-red);
  color: var(--white);
  box-shadow: none;
}

.story-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.story-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.story-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.slick-dots {
  display: flex !important;
  gap: 8px;
  justify-content: center;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
}

.slick-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  font-size: 0;
  background: #d7d7d7;
}

.slick-dots .slick-active button {
  background: var(--jayco-red);
}

.faq-section {
  padding-top: 55px;
}

.faq-side h2 {
  /* max-width: 300px; */
}

.question-box {
  margin-top: 36px;
  padding: 36px 38px 40px;
  border-radius: 6px;
  background: var(--jayco-red);
  color: var(--white);
}

.question-box h3 {
      margin: 0 0 20px;
    max-width: 430px;
    font-family: var(--font-heading);
    font-size: 27px;

  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}
.faq-side{
  width: 95%;
}
.question-box a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
 font-size: 17px;
    letter-spacing: 0;
    font-weight: 500;
  text-transform: uppercase;
}

.question-box a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: var(--jayco-red);
  background: var(--white);
  font-size: 14px;
}

.jayco-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);
}

.jayco-accordion .accordion-button {
  padding: 20px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  box-shadow: none;
}

.jayco-accordion .accordion-button:not(.collapsed) {
  color: var(--jayco-red);
      border-bottom: 1px solid;
    padding-bottom: 10px;
}

.jayco-accordion .accordion-button::after {
  width: 14px;
  height: 14px;
  background-size: 14px;
}

.jayco-accordion .accordion-body {
      padding: 10px 0 20px;
    color: var(--muted);
    font-size: 16px;
}

.client-section {
  padding: 20px 0 70px;
}

.client-carousel .owl-stage-outer {
  padding: 10px 0 18px;
}

.client-logo {
  position: relative;
  display: flex;
  height: 118px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgb(189 32 27 / 58%);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.client-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(189, 32, 27, 0.08), rgba(189, 32, 27, 0.02));
  transform: translateY(100%);
  transition: transform 0.28s ease;
}

.client-logo img {
  position: relative;
  z-index: 1;
  max-width: 150px;
  max-height: 76px;
  object-fit: contain;
  pointer-events: none;
  filter: saturate(0.95);
  transition: filter 0.28s ease;
}

.client-logo:hover {
  border-color: rgba(189, 32, 27, 0.42);
  box-shadow: 0 14px 28px rgba(189, 32, 27, 0.14);
  transform: none;
}

.client-logo:hover::before {
  transform: translateY(0);
}

.client-logo:hover img {
  filter: saturate(1.08);
  transform: none;
}

.blog-section {
  padding-top: 15px;
}

.blog-card {
  position: relative;
  display: block;
  height: 420px;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.32) 46%, rgba(17, 17, 17, 0.78) 100%);
  opacity: 1;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(189, 32, 27, 0.08) 0%, rgba(189, 32, 27, 0.8) 68%, rgba(148, 22, 17, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.blog-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card span,
.blog-card h3,
.blog-card p {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
}

.blog-card span {
  bottom: 136px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card h3 {
  bottom: 70px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.12;
}

.blog-card p {
  bottom: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.35;
}

.blog-card:hover {
  color: var(--white);
  transform: translateY(-6px);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card:hover img {
  transform: scale(1.06);
}

.site-footer {
  background: #f2f2f2;
  color: var(--muted);
}

.site-footer .container {
  padding-top: 82px;
  padding-bottom: 70px;
}

.footer-logo {
  display: inline-block;
  max-width: 385px;
  margin-bottom: 46px;
}

.footer-about p {
  margin: 0;
  max-width: 430px;
  color: #4f4f4f;
  font-size: 15px;
  line-height: 1.62;
  text-align: justify;
}

.site-footer h3 {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 8px;
  color: var(--jayco-red);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--jayco-red);
}

.footer-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
  row-gap: 0;
}

.footer-products {
  padding-left: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 15px;
  color: #424242;
  font-size: 15px;
  line-height: 1.25;
}

.site-footer a:hover {
  color: var(--jayco-red);
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-list span,
.contact-list a {
  overflow-wrap: normal;
  word-break: normal;
}

.contact-list span {
  max-width: 330px;
}

.contact-list i {
  flex: 0 0 auto;
  display: inline-flex;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--jayco-red);
  color: var(--white);
  font-size: 9px;
}

.site-footer .row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.45fr) minmax(0, 0.78fr) minmax(0, 1.15fr);
  column-gap: 56px;
  row-gap: 38px;
}

.site-footer .row > [class*="col-"] {
  width: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

 

.footer-bottom {
  border-top: 1px solid #d3d3d3;
}
.footer-bottom p{
  margin-bottom: 0;
}

.footer-bottom .container {
  padding-top: 18px;
  padding-bottom: 18px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
}

.social-links a,
.social-links .social-link {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--jayco-red);
  font-size: 12px;
}

.social-links a:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

.social-links .social-link {
  cursor: default;
}

.floating-actions {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.floating-action {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--jayco-red);
  /* box-shadow: 0 12px 26px rgba(17, 17, 17, 0.18); */
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.floating-action:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-3px);
}

.whatsapp-action {
  background: #25d366;
}

.back-to-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.inner-banner {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 126px;
  color: var(--white);
  background: url("../img/product/banner.webp") center / cover no-repeat;
}

.inner-banner::after {
  content: var(--banner-title);
  position: absolute;
  right: -22px;
  bottom: -22px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-heading);
  font-size: clamp(86px, 12vw, 185px);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
  pointer-events: none;
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-banner-content h1 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumb-nav a::after {
  content: ">";
  margin-left: 7px;
}

.breadcrumb-nav a:hover {
  color: #ffe6e4;
}

.product-range-section {
  padding-top: 88px;
}

.product-range-head {
  max-width: 1120px;
  margin-bottom: 36px;
}

.product-range-head h2 {
  margin: 0 0 14px;
  color: var(--jayco-red);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-range-head p {
  max-width: 1080px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.product-range-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 330px;
  gap: 1px;
}

.range-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 330px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.range-span-2 {
  grid-column: span 2;
}

.range-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.range-card::before,
.range-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.range-card::before {
  background: linear-gradient(180deg, rgb(17 17 17 / 0%) 42%, rgb(17 17 17 / 53%) 69%, rgb(120 14 11 / 74%) 100%);
}

.range-card::after {
  background: linear-gradient(180deg, rgba(189, 32, 27, 0) 0%, rgba(189, 32, 27, 0.42) 58%, rgba(120, 14, 11, 0.94) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.range-card-content {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 24px;
  bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.range-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.range-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.range-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.range-card:hover {
  color: var(--white);
}

.range-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.08);
}

.range-card:hover::after {
  opacity: 1;
}

.range-card:hover .range-arrow {
  background: var(--jayco-red);
  transform: translateX(4px);
}

.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 104px;
  padding: 52px 70px;
  border-radius: 6px;
  color: var(--white);
  background: var(--jayco-red);
}

.product-cta h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 34px;
      font-weight: 800;
    letter-spacing: 1px;
  line-height: 1.05;
  text-transform: uppercase;
}

.product-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.product-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 28px;
}

.product-cta .btn {
  min-width: 220px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
}

.product-detail-section {
  overflow: visible;
}

.product-detail-section > .container {
  max-width: none;
  padding-left: 0;
  padding-right: clamp(32px, 5vw, 96px);
  overflow: visible;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  overflow: visible;
}

.product-sidebar-shell {
  height: 190vh;
  margin-top: 40px;
  position: relative;
}

.product-sidebar {
  --sidebar-left-pad: 64px;
  position: -webkit-sticky;
  position: sticky !important;
  top: 118px;
  z-index: 2;
  align-self: start;
  height: max-content;
  max-height: calc(100vh - 138px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: 0;
  padding-left: var(--sidebar-left-pad);
  border-right: 1px solid #bd201b61;
  background: var(--white);
      padding-right: 20px;
    padding-top: 0px;
}

.product-sidebar.is-fixed {
  position: fixed !important;
  top: var(--product-sidebar-top, 118px);
  left: var(--product-sidebar-left, 0);
  width: var(--product-sidebar-width, 370px);
}

.product-sidebar.is-anchored {
  position: absolute !important;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
}

.product-sidebar a {
  position: relative;
  display: block;
  padding: 20px 52px 20px 0;
  border-bottom: 1px solid #d7d7d7;
  color: var(--ink);
}

.product-sidebar a.active {
  margin-left: calc(var(--sidebar-left-pad) * -1);
  padding-left: var(--sidebar-left-pad);
  background: #f8dddd;
  border: 1px solid rgba(189, 32, 27, 0.32);
  border-right: 0;
  color: var(--jayco-red);
}
.product-sidebar a:hover {
  margin-left: calc(var(--sidebar-left-pad) * -1);
  padding-left: var(--sidebar-left-pad);
  background: #f8dddd;
  border: 1px solid rgba(189, 32, 27, 0.32);
  border-top: 0px solid rgba(189, 32, 27, 0.32);
  border-left: 0px solid rgba(189, 32, 27, 0.32);
  border-right: 0;
  color: var(--jayco-red);
}

.product-sidebar strong,
.product-sidebar span {
  display: block;
}

.product-sidebar strong {
  color: var(--jayco-red);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.product-sidebar span {
  margin-top: 3px;
  color: #525252;
  font-size: 13px;
  font-weight: 500;
}

.product-sidebar-mobile-toggle {
  display: none;
}

.product-sidebar-close {
  display: none;
}

.product-sidebar i {
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--jayco-red);
  font-size: 15px;
  transform: translateY(-50%);
}

.product-detail-content {
  padding-top: 42px;
}

.detail-title-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}

.detail-title-row h2 {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  color: var(--jayco-red);
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.35vw, 38px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.detail-title-row span {
  flex: 1 1 auto;
  height: 28px;
  background: #bfbfbf;
}

.detail-title-row.compact {
  margin: 64px 0 26px;
}

.detail-title-row.compact h2 {
  font-size: 24px;
}

.detail-title-row.compact span {
  height: 24px;
}

.product-detail-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.detail-list {
  margin: 28px 0;
}

.detail-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 38px;
  margin: 24px 0 34px;
}

.detail-list-grid .detail-list {
  margin: 0;
}

.detail-list h3,
.feature-list h3 {
  margin: 0 0 8px;
  color: var(--jayco-red);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.feature-list h3 {
  text-transform: uppercase;
}

.detail-list ul {
  margin: 0;
  padding-left: 18px;
  color: #555;
  font-size: 16px;
  line-height: 1.55;
}

.detail-list li::marker {
  color: var(--jayco-red);
}

.detail-doc-list {
  margin: 0 0 24px;
  padding-left: 20px;
  color: #555;
  font-size: 16px;
  line-height: 1.65;
}

.detail-doc-list li {
  margin-bottom: 6px;
}

.detail-doc-list li::marker {
  color: var(--jayco-red);
}

.product-detail-content > .detail-doc-list {
  columns: 2;
  column-gap: 44px;
}

.product-detail-content > .detail-doc-list li,
.detail-block > .detail-doc-list:not(.standards-list) li {
  break-inside: avoid;
}

.detail-block > .detail-doc-list:not(.standards-list) {
  columns: 2;
  column-gap: 44px;
}

.product-detail-content > .standards-list,
.detail-block > .standards-list {
  display: block;
  columns: initial;
  margin-bottom: 34px;
}

.product-detail-content > .standards-list li,
.detail-block > .standards-list li {
  break-inside: auto;
  width: 100%;
}

.detail-table-wrap {
  width: 100%;
  margin: 22px 0 34px;
  overflow-x: auto;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: var(--white);
  /* box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06); */
}

.detail-spec-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: #555;
  font-size: 15px;
}

.detail-spec-table th,
.detail-spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #ececec;
  text-align: left;
  vertical-align: top;
}

.detail-spec-table th {
  color: var(--white);
  background: var(--jayco-red);
  font-family: var(--font-heading);
  font-weight: 600;
}

.detail-spec-table tbody tr:nth-child(even) {
  background: #bfbfbf2b;
}

.detail-spec-table tbody td:first-child {
  /* color: var(--ink);
  font-weight: 700; */
}

.detail-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.detail-faq-accordion {
  margin-top: 18px;
  border: 1px solid #dfe2e6;
  border-radius: 6px;
  overflow: hidden;
}

.product-detail-content .detail-faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #dfe2e6;
}

.product-detail-content .detail-faq-accordion .accordion-item:last-child {
  border-bottom: 0;
}

.product-detail-content .detail-faq-accordion .accordion-button {
  min-height: 66px;
  padding: 18px 26px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  box-shadow: none;
}

.product-detail-content .detail-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--jayco-red);
  background: #f8dddd;
  border-bottom: 0;
  padding-bottom: 18px;
}

.product-detail-content .detail-faq-accordion .accordion-button::after {
  width: 16px;
  height: 16px;
  background-size: 16px;
}

.product-detail-content .detail-faq-accordion .accordion-body {
  padding: 20px 26px 24px;
  color: var(--ink);
  background: var(--white);
  font-size: 18px;
  line-height: 1.55;
}

.detail-faq-accordion .accordion-body p {
  margin: 0;
}

.detail-faq-accordion .accordion-body p + p {
  margin-top: 8px;
}

.feature-list {
  display: grid;
  gap: 30px;
}

.feature-list p {
  margin: 0;
}

.product-intro-media {
  display: block;
  margin: 0 0 28px;
}

.product-intro-copy {
  min-width: 0;
}

.product-intro-copy p {
  margin: 0;
}

.product-intro-media .product-hero-gallery {
  float: right;
  width: min(46%, 480px);
  margin: 0 0 18px 30px;
}

.product-detail-content > .detail-title-row.compact,
.product-detail-content > .detail-block {
  clear: both;
}

.product-hero-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 32px 0 42px;
}

.product-hero-image {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(189, 32, 27, 0.14);
  border-radius: 8px;
  background: #f7f7f7;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
}

.product-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(189, 32, 27, 0), rgba(189, 32, 27, 0.28));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.product-hero-image:hover::before {
  opacity: 1;
}

.product-hero-image:hover img {
  filter: saturate(1.08);
  transform: scale(1.05);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  display: none;
}
.pro-gall{
  display: none;
}

.detail-gallery a {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--soft);
}

.detail-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1.17 / 1;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.detail-gallery a:hover img {
  filter: saturate(1.08);
  transform: scale(1.07);
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.applications-grid span {
    display: flex;
    min-width: 0;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: var(--jayco-red);
    background: #f5dddd8f;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    overflow-wrap: anywhere;
}

.doc-applications-grid {
  margin: 18px 0 34px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 38px;
}

.why-choose-grid span {
    display: flex;
    min-height: 70px;
    align-items: center;
    padding: 18px 20px;
    border-left: 3px solid var(--jayco-red);
    color: var(--ink);
    background: #f5f5f5;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}

.page-content-section {
  padding-top: 88px;
}

.page-intro {
  /* max-width: 980px; */
  margin-bottom: 40px;
  text-align: center;
}

.page-intro h2 {
  margin: 0 0 14px;
  color: var(--jayco-red);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.page-intro p {
  /* max-width: 850px; */
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.success-detail-section {
  background: #fff;
}

.success-main-title {
  margin-bottom: 22px;
}

.success-copy {
  /* max-width: 1080px; */
  margin-bottom: 28px;
}

.success-copy p {
  margin: 0;
  color: var(--jayco-text);
  font-size: 17px;
  line-height: 1.75;
}

.success-copy p + p {
  margin-top: 14px;
}

.success-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 30px 0 14px;
}

.success-section-head h2 {
  margin: 0;
  color: var(--jayco-red);
      font-size: 25px;
    font-weight: 800;
    line-height: 1.12;
  text-transform: uppercase;
}

.success-section-head span {
  display: block;
  height: 15px;
  background: #c7c7c7;
}

.success-list {
  columns: 2;
  column-gap: 46px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.success-list-3 {
  columns: 3;
}

.success-list li {
  position: relative;
  break-inside: avoid;
  margin: 0 0 5px;
  padding-left: 19px;
  color: var(--jayco-text);
  font-size: 17px; 
  line-height: 1.55;
}

.success-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jayco-red);
}

.success-check-list li {
  padding-left: 0;
}

.success-check-list li::before {
  display: none;
}

.success-bottom-copy {
  display: grid;
  /* grid-template-columns: repeat(1, minmax(0, 1fr)); */
  gap: 34px;
  margin-top: 8px;
  margin-bottom: 0;
}

.success-bottom-copy .success-section-head {
  margin-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1.2 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #eeeeee;
  color: var(--white);
  background: var(--ink);
}

.gallery-item:nth-child(5n + 1),
.gallery-item:nth-child(7n + 3) {
  grid-column: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.gallery-item::after {
  display: none;
}

.gallery-item span {
  display: none;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px; 
}

.client-logo-wall {
  align-items: stretch;
}

.client-logo-wall .client-grid-card {
  min-height: 132px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(189, 32, 27, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.035);
  perspective: 700px;
  cursor: default;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.client-logo-wall .client-grid-card::before {
  display: block;
  height: auto;
  inset: 0;
  background: linear-gradient(180deg, rgba(189, 32, 27, 0.08), rgba(189, 32, 27, 0.02));
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 0;
}

.client-logo-wall .client-grid-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: grayscale(0.08) saturate(0.95);
  transform-origin: center;
  transition: filter 0.35s ease;
}

.client-logo-wall .client-grid-card:hover {
  border-color: rgba(189, 32, 27, 0.35);
  box-shadow: 0 16px 34px rgba(189, 32, 27, 0.14);
  transform: translateY(-7px);
}

.client-logo-wall .client-grid-card:hover::before {
  transform: translateY(0);
}

.client-logo-wall .client-grid-card:hover img {
  filter: grayscale(0) saturate(1.08);
  transform: none;
}

.client-grid-card {
  position: relative;
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(189, 32, 27, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.client-grid-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--jayco-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.client-grid-card img {
  max-width: 158px;
  max-height: 86px;
  object-fit: contain;
  filter: grayscale(0.08) saturate(0.95);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.client-grid-card:hover {
  border-color: rgba(191, 32, 27, 0.35);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.1);
  transform: translateY(-5px);
}

.client-grid-card:hover::before {
  transform: scaleX(1);
}

.client-grid-card:hover img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.career-layout,
.contact-page-layout {
  display: grid;
  /* grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); */
  gap: 34px;
  align-items: start;
}

.career-openings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.career-opening-card {
  padding: 30px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #f8f8f8;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.career-opening-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--jayco-red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.career-opening-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.career-opening-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.career-opening-card:hover {
  border-color: rgba(191, 32, 27, 0.35);
  background: var(--white);
  transform: translateY(-5px);
}

.career-form-wrap {
  /* max-width: 920px; */
}

.career-benefits,
.contact-info-panel {
  display: grid;
  gap: 18px;
}
.contact-info-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px; 
}

.career-benefits > div,
.contact-info-card {
  display: block;
  padding: 28px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #f8f8f8;
  color: var(--ink);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.career-benefits i,
.contact-info-card i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--jayco-red);
  font-size: 20px;
}

.career-benefits h3,
.contact-info-card span {
  display: block;
  margin: 0 0 8px;
  color: var(--jayco-red);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.career-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.career-benefits > div:hover,
.contact-info-card:hover {
  border-color: rgba(191, 32, 27, 0.32);
  background: var(--white);
  transform: translateY(-4px);
}

.jayco-form {
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.1);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.jayco-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.jayco-form input,
.jayco-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid #dedede;
  border-radius: 8px;
  color: var(--ink);
  background: #fafafa;
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.jayco-form textarea {
  resize: vertical;
}

.jayco-form input:focus,
.jayco-form textarea:focus {
  border-color: var(--jayco-red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(191, 32, 27, 0.1);
}

.quote-fieldset {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fafafa;
}

.quote-fieldset legend {
  float: none;
  width: auto;
  margin: 0 0 12px;
  padding: 0 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.quote-options {
  display: grid;
     grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 30px 14px;
}

.quote-options label,
.quote-consent {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.quote-options input[type="checkbox"],
.quote-options input[type="radio"],
.quote-consent input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--jayco-red);
}

.quote-other {
  grid-column: 1 / -1;
  align-items: center;
}

.quote-other input[type="text"] {
  flex: 1;
  min-width: 150px;
  margin: 0;
  padding: 9px 10px;
}

.jayco-form .quote-consent {
  margin-bottom: 20px;
  line-height: 1.4;
  display: flex;
}

.form-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.captcha-wrap {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.thank-you-section {
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background:
    linear-gradient(135deg, rgba(191, 32, 27, 0.06), rgba(255, 255, 255, 0.94)),
    var(--white);
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px;
  border: 1px solid rgba(191, 32, 27, 0.16);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.1);
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--jayco-red);
  font-size: 34px;
}

.thank-you-card h1 {
  margin-bottom: 14px;
  color: var(--jayco-red);
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
}

.thank-you-card p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.thank-you-actions .btn-outline {
  border: 1px solid rgba(191, 32, 27, 0.45);
  color: var(--jayco-red);
  background: var(--white);
}

.thank-you-actions .btn-outline:hover,
.thank-you-actions .btn-outline:focus {
  color: var(--white);
  border-color: var(--jayco-red);
  background: var(--jayco-red);
}

.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
      margin: auto;
    max-width: 1200px;

}

.faq-page-full {
  display: block;
}

.contact-info-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-info-card strong a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-info-card strong a:hover {
  color: var(--jayco-red);
}

.map-box {
  margin-top: 34px;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f3f3;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.fancybox__container .fancybox__backdrop {
  cursor: pointer;
}

.fancybox__content > .f-button.is-close-btn {
  display: none;
}

@media (max-width: 991px) {
  .fancybox__content > .f-button.is-close-btn,
  .is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-width: 38px;
  --f-button-height: 38px;
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-bg: var(--jayco-red);
  --f-button-hover-bg: #a91613;
  --f-button-active-bg: #8f120f;
  --f-button-svg-width: 17px;
  --f-button-svg-height: 17px;
  top: -52px;
  right: 0;
  display: flex;
  opacity: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  }
}

@media (min-width: 1400px) { 
  .site-footer .row {
    column-gap: 66px;
  }
}

@keyframes heroPulse {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.06);
  }
}
