/* ==========================================================================
   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: var(--kk-band-bg);
}

.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: 60px;
  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%;
  }
}