
.page-content {
  padding-top: 0;
}



/* 1) sane box model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2) stop body overflow (last-resort safety) */
html, body {
  margin: 0;
  padding: 0;
  /* prefer fixing layout; this is a safety net that hides stray overflow */
  overflow-x: hidden;
}

/* 3) ensure media elements never force overflow */
img,
picture,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 4) make .container truly responsive and eliminate use of vw on inner rows */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* 5) override common inline vw widths to keep sections inside container */
section > hr,
.partners hr,
.section-header + hr,
hr[style*="width: 93vw"],
hr[style*="width: 90vw"],
hr[style*="width: 85vw"] {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* 6) slider/product card safe sizing */
.bs-viewport { overflow: hidden; }
.bs-track { box-sizing: border-box; }

/* Make product cards flex nicely inside each slide — avoid fixed percentage widths */
.bs-slide {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

/* instead of width:20% use flexible basis so gaps are accounted for */
.bs-slide .product-card {
  flex: 1 1 calc((100% / 5) - 1rem);
  min-width: 0; /* IMPORTANT to avoid overflowing due to long text */
  width: auto;
}

/* 7) partner logos: don't use percent heights/widths that reference their flex parent */
.partners-track {
  gap: 2rem;
  align-items: center;
}
.partners-track img {
  height: 48px;        /* fixed max visual height */
  width: auto;
  object-fit: contain;
  display: inline-block;
}

/* 8) offers images and other card images should be size-limited */
.offer-card-content img {
  width: auto;
  max-width: 40%;
  width: 30%;
  max-height: 180px;
  object-fit: contain;
}

/* 9) defensive: any element accidentally wider than viewport will be clipped */
.wide-debug {
  max-width: 100vw;
  overflow-x: hidden;
}

/* 10) small screens: ensure finder grid doesn't create an extra column overflow */
.finder-card, .finder-form {
  width: 100%;
  box-sizing: border-box;
}









/* GLOBAL */
.container {
  max-width: 1200px;
  margin: auto;
}
.btn-primary {
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 6px;
  text-align: center;
}
.btn-secondary {
  border: 2px solid #fff;
  border-radius: 0.6em;
  background-color: #fff;
  padding: 12px 26px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  margin-top: 4em;
  width: 30%;
}

/* HERO */
.hero {
  display: grid;
  place-items: center;
  min-height: 60vh;
  position: relative;
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  max-width: 60vw;
  padding: 0 1rem;
  gap: 2em;
  align-items: center;
}

.hero-content h1 {
  font-size: 4em;
}
.hero-content p {
  font-size: 1.5em;
}


/* STATS */
.stats {
  display: flex;
  gap: 2rem;
  margin-top: -20px;
}
.stat-card {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 1em;
}

.stat-icon {
  border-radius: 1em;
  padding: 1em;
}

.stat-card p {
  padding: 0 1.5em;
}

/* PARTNERS */
.partners {
  overflow: hidden;
  width: 100%;
  margin: 6rem 0;
}
.partners-title {
  font-size: 2em;
  font-weight: normal;
  text-align: center;
  margin-bottom: 3em;
}
.partners hr {
  border: none;
  border-top: 1px solid #eee;
  width: 93vw;
  margin-top: 0.5em;
  justify-self: center;
}
.partners-track {
  display: flex;
  width: max-content;
  animation: partners-scroll 90s linear infinite;
  margin-bottom: 2em;
}
.partners-group {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partners-group img {
  height: 90px;
  width: 10%;
}

/* ABOUT */
.about-section {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  padding: 3em;
}

/* background image */
.about-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* overlay */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

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

.about-content {
  display: flex;
  flex-direction: column;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-content p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}



/* ===== Best Seller ===== */

.section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.best-seller {
  margin-top: 4rem;
}

.bs-slider {
  position: relative;
}
.bs-slider-content {
  display: flex;
  flex-direction: row;
  width: 85vw;
  justify-self: center;
}

.bs-viewport {
  overflow: hidden;
}

.bs-track {
  display: flex;
  width: 300%;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  margin: 5% 0;
}

/* each slide = logical grouping */
.bs-slide {
  width: calc(100% / 3);
  display: flex;
  gap: 1.5rem;
}

/* product cards */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 14px;
  padding: 1rem;
  text-align: left;
  justify-content: space-between;
  width: 20%;
  position: relative;
}

.product-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-card h4 {
  font-size: 0.9em;
}
.product-card .price {
  font-weight: 600;
  color: #0284c7;
}

/* arrows */
.bs-arrow {
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 5;
  align-self: center;
  padding: 1em;
}

.bs-arrow.left { margin-right: 1em; width: 100px; }
.bs-arrow.right { margin-left: 1em; width: 100px; }

/* dots */
.bs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.bs-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.bs-dots button.active {
  background: #000;
}





/* ===== Finder Section ===== */

.finder-section {
  padding: 4.5rem 0 0 0;
  background: #fff;
  text-align: center;
}

/* Divider title */
.finder-title {
  max-width: 3200px;
  width: 93vw;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.finder-title hr {
  width: 35%;
  border: none;
  border-top: 1px solid #eee;
}

.finder-title h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  color: #111;
  white-space: nowrap;
}

/* Subtitle */
.finder-subtitle {
  max-width: 640px;
  margin: 0 auto 2.8rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Blue wrapper */
.finder-wrapper {
  background: #dfdfdf;
  padding: 2.2rem;
  border-radius: 16px;
}

/* White card */
.finder-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Form layout */
.finder-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.25rem;
  align-items: end;
}

/* Fields */
.finder-field {
  text-align: left;
}

.finder-field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: #555;
}

.finder-field select {
  width: 100%;
  height: 46px;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0 0.75rem;
  font-size: 0.95rem;
  background: #fff;
}

/* CTA */
.finder-action button {
  height: 46px;
  padding: 0 1.75rem;
  border-radius: 8px;
  border: none;
  background: #0079d1;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.finder-action button:hover {
  background: #073a8c;
}




/* ===== Offers Section ===== */

.offers-section {
  padding: 4rem 0;
  background: #fff;
}

.offers-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Offer card */
.offer-card {
  background: linear-gradient(
    90deg,
    #EEEEEE 0%,
    #c4c4c4 100%
  );
  border-radius: 16px;
  padding: 2.5rem 3rem;
  min-height: 220px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
  overflow: hidden;
}

.offer-card-content {
  display: flex;
}


/* small top label */
.offer-tag {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #444;
  margin-bottom: 0.75rem;
}

/* headline */
.offer-card h3 {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.2;
  color: #111;
  margin-bottom: 0.75rem;
}

/* description */
.offer-card p {
  font-size: 0.95rem;
  color: #333;
  max-width: 420px;
  margin-bottom: 1.25rem;
}

/* CTA */
.offer-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #094db3;
  text-decoration: none;
}

.offer-link:hover {
  text-decoration: underline;
}



/* ===== Request for Call ===== */

.request-call-section {
  padding: 4rem 0;
  background: #fff;
}

.request-call-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* background image */
.request-call-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* overlay */
.request-call-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* content */
.request-call-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1em 3em;
  color: #fff;
}

/* text */
.request-call-text h3 {
  font-size: 1.3rem;
  font-weight: bold;
}

.request-call-text p {
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.6;
  opacity: 0.95;
}

/* button */
.request-call-btn {
  background: #ffffff;
  color: #094db3;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.request-call-btn:hover {
  background: #f1f1f1;
}






/* FEATURED */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}

/* LEADERS */
.leaders {
  display: flex;
  gap: 2rem;
}




/* ===== FAQ Section ===== */

.faq-section {
  padding: 5rem 0;
  background: #fff;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* Image block */
.faq-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

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

/* Overlay gradient */
.faq-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.1)
  );
}

/* Overlay text */
.faq-image-overlay {
  position: absolute;
  top: 3em;
  left: 1.75em;
  right: 1.75em;
  z-index: 1;
  color: #fff;
}

.faq-image-overlay h3 {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

.faq-image-overlay p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
  max-width: 360px;
}

/* FAQ content */
.faq-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #111;
}

/* FAQ list */
.faq-list {
  border-top: 1px solid #e5e7eb;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

/* Question row */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
}

/* Arrow */
.faq-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  padding-bottom: 1.25rem;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.product-image {
  opacity: 1;
}

.product-image.placeholder-image {
  opacity: 0.3;
}

.bs-arrow.right img
.bs-arrow.left img {
  width: 100px;
}

.best-seller-subtitle {
  display: block;
}






















@media (max-width: 1025px) {
  .hero-content {
    max-width: none;
  }
  .hero-content h1 {
    font-size: 2em;
  }
  .hero-content p {
    font-size: 1em;
  }
  .stats {
    flex-direction: column;
  }
  .stat-card {
    margin: 0 2em;
  }
  .finder-title h2 {
    white-space: normal;
  }
  .finder-subtitle {
    font-size: 0.8em;
  }
  .offers-container {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 900px) {
  .finder-form {
    grid-template-columns: 1fr 1fr;
  }

  .finder-action {
    grid-column: span 2;
  }
  .offer-card-content {
    flex-direction: column-reverse;
    gap: 2em;
  }
  .offer-card-content img {
    max-width: none;
    width: 100%;
  }
  .partners-track {
    animation: partners-scroll 120s linear infinite;
  }
  .partners-track img {
    width: 30%;
  }
  .about-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .best-seller-subtitle {
    display: none;
  }
  .bs-slider-content {
    width: 100%;
  }
  .bs-arrow.left {
    display: none;
  }
  .bs-arrow.right {
    display: none;
  }
  .bs-slide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }
  .bs-slide .product-card:nth-child(n+5) {
    display: none;
  }
  .bs-slide .product-card {
    gap: 1em;
    padding: 0.5em;
  }
  .bs-track {
    touch-action: pan-y;
  }
  .bs-dots button {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    border: none;
  }  
  .request-call-content {
    flex-direction: column;
  }
  .request-call-text p {
    display: none;
  }
  .request-call-text h3 {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .finder-form {
    grid-template-columns: 1fr;
  }

  .finder-action {
    grid-column: span 1;
  }

  .finder-title {
    gap: 0.75rem;
  }

  .finder-title hr {
    width: 30px;
  }
  .faq-container {
    grid-template-columns: 1fr;
  }
  .faq-image {
    display: none;
  }
  .product-card h4 {
    font-size: 0.8em;
  }
}













