/* ==========================================================================
   Kenkim Enterprises — New Homepage Sections
   Append to main.css or link as a separate stylesheet after main.css
   ========================================================================== */

:root {
  --kk-gold: #f2a900;
  --kk-gold-dark: #d99500;
  --kk-navy: #2c2b38;
  --kk-text-dark: #1a1a1a;
  --kk-text-muted: #6c6c6c;
  --kk-band-bg: #f4f4f4;
  --kk-red: #c8202f;
  --kk-border: #e6e6e6;
  --kk-font-heading: "Raleway", sans-serif;
  --kk-font-body: "Roboto", sans-serif;
}

/* ---------- Shared section heading style ---------- */
.why-kenkim .section-title,
.our-solutions .section-title,
.industries-we-serve .section-title,
.featured-products .section-title,
.why-choose-kenkim .section-title,
.client-logos .section-title,
.latest-insights .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.why-kenkim .section-title h2,
.our-solutions .section-title h2,
.industries-we-serve .section-title h2,
.featured-products .section-title h2,
.why-choose-kenkim .section-title h2,
.client-logos .section-title h2,
.latest-insights .section-title h2 {
  font-family: var(--kk-font-heading);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--kk-text-dark);
  margin-bottom: 6px;
}

.our-solutions .section-title p {
  color: var(--kk-text-muted);
  font-size: 14px;
  margin: 0;
}

/* ==========================================================================
   Section 2 — Why Kenkim (Trust Metrics)
   ========================================================================== */
.why-kenkim {
  background-color: var(--kk-band-bg);
  padding: 35px 0;
}

.trust-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-metric-item i {
  font-size: 28px;
  color: var(--kk-gold);
}

.trust-metric-item h3 {
  font-family: var(--kk-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--kk-text-dark);
  margin: 0;
  line-height: 1.3;
}

/* ==========================================================================
   Section 3 — Our Solutions
   ========================================================================== */
.our-solutions {
  padding: 50px 0;
  background-color: #ffffff;
}

.solution-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--kk-border);
  border-radius: 6px;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.solution-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.solution-card h3 {
  font-family: var(--kk-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--kk-text-dark);
  margin-bottom: 14px;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.solution-card ul li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--kk-text-muted);
  margin-bottom: 8px;
}

.solution-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--kk-gold);
}

.solution-card .btn-outline-primary {
  border-color: var(--kk-gold);
  color: var(--kk-gold-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  padding: 6px 18px;
}

.solution-card .btn-outline-primary:hover {
  background-color: var(--kk-gold);
  border-color: var(--kk-gold);
  color: #fff;
}

/* Section 4 — Why Businesses Choose Our Rental Program */
.rental-program-benefits {
  padding: 45px 0;
  background-color: var(--kk-band-bg);
}

.rental-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.rental-benefit-item i {
  font-size: 26px;
  color: var(--kk-gold); 
}

.rental-benefit-item h3 {
  font-family: var(--kk-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--kk-text-dark);
  margin: 0;
  line-height: 1.3;
}

.rental-program-benefits .btn-primary {
  background-color: var(--kk-gold);
  border-color: var(--kk-gold);
  color: #1a1a1a;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 4px;
}

.rental-program-benefits .btn-primary:hover {
  background-color: var(--kk-gold-dark);
  border-color: var(--kk-gold-dark);
}

/* ==========================================================================
   Section 5 — Industries We Serve
   ========================================================================== */
.industries-we-serve {
  padding: 45px 0;
  background-color: #ffffff;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.industry-item i {
  font-size: 24px;
  color: var(--kk-navy);
}

.industry-item h3 {
  font-family: var(--kk-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--kk-text-dark);
  margin: 0;
  line-height: 1.3;
}

/* ==========================================================================
   Section 6 — Featured Products
   ========================================================================== */
.featured-products {
  padding: 50px 0;
  background-color: var(--kk-band-bg);
}

.featured-product-item {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.featured-product-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
  background-color: #fff;
  border: 1px solid var(--kk-border);
}

.featured-product-item h3 {
  font-family: var(--kk-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--kk-text-dark);
  margin: 0;
}

.featured-product-item:hover h3 {
  color: var(--kk-gold-dark);
}

/* ==========================================================================
   Section 7 — Why Choose Kenkim
   ========================================================================== */
.why-choose-kenkim {
  padding: 45px 0;
  background-color: #ffffff;
}

.why-choose-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-choose-item i {
  font-size: 22px;
  color: var(--kk-gold);
  flex-shrink: 0;
}

.why-choose-item h3 {
  font-family: var(--kk-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--kk-text-dark);
  margin: 0;
  line-height: 1.3;
}

/* ==========================================================================
   Section 8 — Client Logos by Industry
   ========================================================================== */
.client-logos {
  padding: 45px 0;
  background-color: white;
}

.client-logos .nav-pills .nav-link {
  font-family: var(--kk-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--kk-text-dark);
  border-radius: 20px;
  padding: 8px 18px;
  margin: 0 4px;
}

.client-logos .nav-pills .nav-link.active {
  background-color: var(--kk-navy);
  color: #fff;
}

.client-logos .tab-content img {
  max-width: 100%;
  height: auto;
}

.client-logo {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   Section 9 — Latest Insights
   ========================================================================== */
.latest-insights {
  padding: 50px 0;
  background-color: #ffffff;
}

.insight-card {
  display: block;
  height: 100%;
  padding: 18px;
  border: 1px solid var(--kk-border);
  border-left: 4px solid var(--kk-gold);
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.insight-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.insight-card h3 {
  font-family: var(--kk-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--kk-text-dark);
  margin: 0;
  line-height: 1.4;
}

.insight-card:hover h3 {
  color: var(--kk-gold-dark);
}

.insight-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 12px;
  background-color: #e6e6e6;
}

.insight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Section 10 — Footer CTA
   ========================================================================== */
.footer-cta {
  padding: 50px 0;
  background-color: var(--kk-navy);
}

.footer-cta h2 {
  font-family: var(--kk-font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-cta-buttons .btn-primary {
  background-color: var(--kk-gold);
  border-color: var(--kk-gold);
  color: #1a1a1a;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 4px;
}

.footer-cta-buttons .btn-primary:hover {
  background-color: var(--kk-gold-dark);
  border-color: var(--kk-gold-dark);
}

.footer-cta-buttons .btn-outline-primary {
  border-color: #ffffff;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
}

.footer-cta-buttons .btn-outline-primary:hover {
  background-color: #ffffff;
  color: var(--kk-navy);
}

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */
@media (max-width: 767px) {
  .why-kenkim .col-6 h3,
  .industries-we-serve .col-6 h3 {
    font-size: 13px;
  }

  .footer-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================================
   Industries We Serve — Section 5 (homepage)
   Image-based Swiper carousel styling.

   Tokens match the rest of the site's Kenkim brand work already
   in place: navy #2b2c3d (CTA banner, industry hero overlay),
   gold #e8a33d (accent used on industries list cards).

   Add this file's <link> after kenkim-new-sections.css in <head>
   so it can override shared card/section defaults if needed:

     <link href="https://kenkim-ent.com/assets/css/kenkim-new-sections.css" rel="stylesheet">
     <link href="https://kenkim-ent.com/assets/css/industries-swiper.css" rel="stylesheet">
   ============================================================ */

:root {
  --industries-navy: #2b2c3d;
  --industries-gold: #e8a33d;
  --industries-line: #e2e4e2;
}

/* ---- Swiper container ---- */
#industries-we-serve .industries-swiper {
  padding-bottom: 3rem; /* room for pagination dots below the slides */
}

#industries-we-serve .swiper-slide {
  height: auto; /* let all slides in a row match the tallest */
}

/* ---- Card ---- */
#industries-we-serve .industry-item {
  display: block;
  background: #fff;
  border: 1px solid var(--industries-line);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

#industries-we-serve .industry-item:hover,
#industries-we-serve .industry-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(43, 44, 61, 0.12);
  border-color: var(--industries-navy);
}

#industries-we-serve .industry-item:focus-visible {
  outline: 2px solid var(--industries-navy);
  outline-offset: 2px;
}

/* ---- Image ---- */
#industries-we-serve .industry-item-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

#industries-we-serve .industry-item:hover .industry-item-img,
#industries-we-serve .industry-item:focus-visible .industry-item-img {
  transform: scale(1.06);
}

/* ---- Label ---- */
#industries-we-serve .industry-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--industries-navy);
  margin: 0;
  padding: .85rem .75rem;
  line-height: 1.3;
}

/* ---- Navigation arrows (scoped so they don't clash with the
   Product Categories swiper elsewhere on the same page) ---- */
#industries-we-serve .industries-swiper .swiper-button-prev,
#industries-we-serve .industries-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--industries-line);
  border-radius: 50%;
  color: var(--industries-navy);
  box-shadow: 0 4px 10px rgba(43, 44, 61, 0.1);
  transition: background .2s ease, color .2s ease;
}

#industries-we-serve .industries-swiper .swiper-button-prev::after,
#industries-we-serve .industries-swiper .swiper-button-next::after {
  font-size: 1rem;
}

#industries-we-serve .industries-swiper .swiper-button-prev:hover,
#industries-we-serve .industries-swiper .swiper-button-next:hover {
  background: var(--industries-navy);
  color: #fff;
}

/* ---- Pagination dots ---- */
#industries-we-serve .industries-swiper .swiper-pagination-bullet {
  background: var(--industries-line);
  opacity: 1;
}

#industries-we-serve .industries-swiper .swiper-pagination-bullet-active {
  background: var(--industries-gold);
}

.industries-we-serve .btn-outline-primary {
  background-color: transparent;
  border: 2px solid var(--kk-gold);
  color: var(--kk-gold);
  font-weight: 700;
  padding: 8px 26px; /* Adjusted slightly to account for 2px border width */
  border-radius: 4px;
  transition: all 0.3s ease;
}

.industries-we-serve .btn-outline-primary:hover {
  background-color: var(--kk-gold);
  color: #1a1a1a;
}

@media (prefers-reduced-motion: reduce) {
  #industries-we-serve .industry-item,
  #industries-we-serve .industry-item-img,
  #industries-we-serve .industries-swiper .swiper-button-prev,
  #industries-we-serve .industries-swiper .swiper-button-next {
    transition: none !important;
  }
}