/* ============================================================
   LIFTTRUCK — Inner Pages CSS
   ============================================================ */

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__shape { position: absolute; border-radius: 50%; opacity: 0.06; }
.page-hero__shape--1 { width:600px; height:600px; background:var(--secondary); top:-200px; right:-80px; }
.page-hero__shape--2 { width:350px; height:350px; background:var(--primary); bottom:-150px; left:20%; opacity:.07; }
.page-hero__content { position: relative; z-index: 1; }

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--primary); }
.page-hero__breadcrumb .sep { color: rgba(255,255,255,0.25); }
.page-hero__breadcrumb .current { color: var(--primary); }

.page-hero h1 { color: var(--white); max-width: 700px; }
.page-hero p  { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-top: 1rem; max-width: 580px; line-height: 1.75; }


/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--primary); padding: 3.5rem 0; }
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding: 0 1rem;
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stats-strip__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  max-width: 140px;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--secondary);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 25px,
    rgba(255,255,255,0.02) 25px, rgba(255,255,255,0.02) 26px
  );
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.7); margin-bottom: 2.25rem; font-size: 1rem; }
.cta-banner__btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-banner .btn--white {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}
.cta-banner .btn--white:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.cta-banner .btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.cta-banner .btn--outline-white:hover {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}


/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-2);
  padding: 1.25rem 0;
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.products-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--gray-2);
  background: transparent;
  color: var(--gray-6);
  transition: var(--transition);
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.products-section { padding: 4rem 0 6rem; background: var(--light); }
.products-section__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.products-count { font-size: 0.875rem; color: var(--gray-5); }
.products-count strong { color: var(--dark); }
.products-sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-5);
}
.products-sort select {
  padding: 0.4rem 0.875rem;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  outline: none;
}
.products-sort select:focus { border-color: var(--primary); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-2);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card.hidden { display: none; }

.product-card__img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}


.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  color: white;
}
.product-card__badge--electric  { background: #1a6b3c; }
.product-card__badge--diesel    { background: #7a3a10; }
.product-card__badge--lpg       { background: #1a4a7a; }
.product-card__badge--warehouse { background: #5a1a7a; }
.product-card__badge--specialist{ background: #7a1a3a; }
.product-card__badge--hydrogen  { background: #1a5a7a; }

/* Forklift placeholder colours per card */
.pimg-1  { background: linear-gradient(145deg,#2a4a1a,#1e3814); }
.pimg-2  { background: linear-gradient(145deg,#1a3a2a,#0f2a1e); }
.pimg-3  { background: linear-gradient(145deg,#1a2a4a,#0f1e3a); }
.pimg-4  { background: linear-gradient(145deg,#4a3a1a,#3a2a10); }
.pimg-5  { background: linear-gradient(145deg,#3a1a1a,#2a1010); }
.pimg-6  { background: linear-gradient(145deg,#1a4a3a,#0f3a2a); }
.pimg-7  { background: linear-gradient(145deg,#2a1a4a,#1e103a); }
.pimg-8  { background: linear-gradient(145deg,#4a2a1a,#3a1e10); }
.pimg-9  { background: linear-gradient(145deg,#1a4a4a,#0f3a3a); }
.pimg-10 { background: linear-gradient(145deg,#2a4a3a,#1e3a2a); }
.pimg-11 { background: linear-gradient(145deg,#4a1a2a,#3a1020); }
.pimg-12 { background: linear-gradient(145deg,#1a3a4a,#0f2a3a); }
.pimg-13 { background: linear-gradient(145deg,#3a4a1a,#2a3a10); }
.pimg-14 { background: linear-gradient(145deg,#4a4a1a,#3a3a10); }
.pimg-15 { background: linear-gradient(145deg,#2a2a4a,#1e1e3a); }
.pimg-16 { background: linear-gradient(145deg,#3a2a1a,#2a1e10); }
.pimg-17 { background: linear-gradient(145deg,#1a4a2a,#0f3a1e); }
.pimg-18 { background: linear-gradient(145deg,#4a1a4a,#3a103a); }
.pimg-19 { background: linear-gradient(145deg,#2a3a4a,#1e2a3a); }
.pimg-20 { background: linear-gradient(145deg,#4a3a2a,#3a2a1e); }
.pimg-21 { background: linear-gradient(145deg,#1a4a1a,#0f3a0f); }
.pimg-22 { background: linear-gradient(145deg,#3a1a3a,#2a102a); }
.pimg-23 { background: linear-gradient(145deg,#1a2a3a,#0f1e2a); }
.pimg-24 { background: linear-gradient(145deg,#4a2a2a,#3a1e1e); }
.pimg-25 { background: linear-gradient(145deg,#2a4a2a,#1e3a1e); }
.pimg-26 { background: linear-gradient(145deg,#3a3a1a,#2a2a10); }
.pimg-27 { background: linear-gradient(145deg,#1a3a3a,#0f2a2a); }
.pimg-28 { background: linear-gradient(145deg,#2a1a3a,#1e102a); }
.pimg-29 { background: linear-gradient(145deg,#4a1a1a,#3a1010); }
.pimg-30 { background: linear-gradient(145deg,#1a2a4a,#0f1e3a); }

.product-card__body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.product-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.product-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}
.product-card__specs { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; flex: 1; }
.product-card__spec { display: flex; justify-content: space-between; font-size: 0.78rem; }
.product-card__spec-key { color: var(--gray-4); }
.product-card__spec-val { color: var(--dark); font-weight: 600; }

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-2);
}
.product-card__price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem; font-weight: 700; color: var(--primary); }
.product-card__btn {
  padding: 0.45rem 0.875rem;
  background: var(--primary-light);
  color: var(--primary);
  border: 1.5px solid rgba(208,72,8,0.25);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.product-card__btn:hover { background: var(--primary); color: white; border-color: var(--primary); }


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 6rem 0; background: var(--white); }
.about-story__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-story__img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #1e3814 0%, #2a5020 50%, #345C00 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story__content .section-tag { display: block; }
.about-story__content h2 { margin: 0.5rem 0 1.25rem; }
.about-story__content p { color: var(--gray-5); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }

.about-values { padding: 6rem 0; background: var(--light); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid var(--gray-2);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card__icon {
  width: 3.5rem; height: 3.5rem;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.value-card:hover .value-card__icon { background: var(--primary); color: white; }
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--gray-5); line-height: 1.65; }

.about-why { padding: 6rem 0; background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.why-card:hover { background: rgba(208,72,8,0.08); border-color: rgba(208,72,8,0.35); transform: translateY(-4px); }
.why-card__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: rgba(208,72,8,0.35);
  line-height: 1; margin-bottom: 0.75rem;
}
.why-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.why-card p  { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.7; }

.about-team { padding: 6rem 0; background: var(--light); }


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 6rem 0; background: var(--white); }
.contact-page__grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 5rem; align-items: start; }
.contact-page__aside h3 { margin-bottom: 0.5rem; }
.contact-page__aside > p { color: var(--gray-5); font-size: 0.95rem; margin-bottom: 2.5rem; }

.contact-cards { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-2);
  background: var(--light);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--primary); background: rgba(208,72,8,0.03); }
.contact-card__icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.contact-card__text small {
  display: block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-4); margin-bottom: 0.2rem;
}
.contact-card__text strong { display: block; font-size: 0.9rem; color: var(--dark); }
.contact-card__text a { color: var(--dark); transition: var(--transition); }
.contact-card__text a:hover { color: var(--primary); }

.contact-hours { margin-bottom: 2rem; }
.contact-hours h5 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray-5); margin-bottom: 0.875rem;
}
.hours-row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 0.5rem 0; border-bottom: 1px solid var(--gray-2); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--gray-6); }
.hours-row span:last-child  { color: var(--dark); font-weight: 600; }

.contact-map {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #1e2e3e 0%, #2a3e52 50%, #1a2a38 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}
.contact-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
}
.contact-map__label { position: relative; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

.contact-full-form { padding: 6rem 0; background: var(--light); }
.contact-full-form .section-header { margin-bottom: 3rem; }
.full-form {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.full-form__fieldset {
  border: 1.5px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  background: var(--white);
}
.full-form__fieldset legend {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-5); padding: 0 0.5rem;
}
.full-form .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.25rem; }
.full-form .form__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.full-form .form__row:first-child { margin-top: 1rem; }
.full-form select.form__input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23777' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.full-form__submit { text-align: center; padding-top: 0.5rem; }
.full-form__submit .btn { min-width: 220px; }


/* ============================================================
   RESPONSIVE – INNER PAGES
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .stats-strip__grid   { grid-template-columns: repeat(2, 1fr); }
  .about-story__inner  { grid-template-columns: 1fr; gap: 3rem; }
  .contact-page__grid  { grid-template-columns: 1fr; gap: 3rem; }
  .full-form .form__row--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: 1fr; }
  .full-form .form__row,
  .full-form .form__row--3 { grid-template-columns: 1fr; }
  .full-form__fieldset { padding: 1.25rem; }
  .stats-strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 1.25rem; }
  .stats-strip__item:last-child { border-bottom: none; }
}
@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
}
