/* ============================================================
   Page-specific additions (quote page & heico page)
   ============================================================ */

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 56px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-title {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  margin: 14px 0 12px;
  max-width: 24ch;
  color: #fff;
}
.page-sub {
  color: rgba(255,255,255,.74);
  font-size: 1.05rem;
  max-width: 62ch;
}

/* ---------- Product intro (heico page) ---------- */
.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 36px;
}
.intro-copy { max-width: 54ch; }
.intro-copy p { color: var(--muted); margin-bottom: 16px; }
.intro-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.feature-chip {
  padding: 5px 12px;
  background: var(--blue-soft);
  border: 1px solid var(--blue);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue-2);
  letter-spacing: .01em;
}
.intro-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--line);
}
.intro-hero-img img { width: 100%; height: auto; display: block; }
.img-caption {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

/* ---------- HEICO grid ---------- */
.heico-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.heico-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s;
  overflow: hidden;
  position: relative;
}
.heico-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.heico-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-panel);
  border-top: 3px solid var(--blue);
}
.heico-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.heico-card:hover .heico-card-img img { transform: scale(1.04); }
.heico-card-body { padding: 18px 20px 16px; }
.heico-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 6px;
}
.heico-title { font-size: 1.08rem; margin-bottom: 6px; }
.heico-desc { color: var(--muted); font-size: .88rem; line-height: 1.5; }

/* ---------- Quote strip ---------- */
.quote-strip {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.qs-heico {
  display: flex;
  align-items: center;
  gap: 14px;
}
.qs-heico img { height: 40px; width: auto; }
.qs-heico p {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  margin: 0;
  font-weight: 500;
}
.qs-actions { margin-left: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.qs-actions .btn { flex: 1; justify-content: center; }

/* ---------- Industry chips ---------- */
.industry-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.chip {
  padding: 7px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--navy-2);
  transition: background .15s, color .15s, border-color .15s, transform .1s;
}
.chip:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(26,95,180,.2);
}

/* ---------- Contact cards (contact page) ---------- */
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.contact-card-icon { color: var(--blue); }
.contact-card-body { flex: 1; }
.contact-card-title { font-size: 1rem; }
.contact-card-sub { color: var(--muted); font-size: .88rem; margin-top: 2px; }
.contact-card-arrow {
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .15s, transform .15s;
  font-size: 1.1rem;
}
.contact-card:hover .contact-card-arrow { opacity: 1; transform: none; }

.detail-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  min-width: 130px;
  margin-bottom: 4px;
}
.detail-val { color: var(--navy); font-weight: 500; display: block; }
.detail-val a:hover { color: var(--blue); }

.whatsapp-card { display: flex; flex-direction: column; gap: 8px; }

/* ---------- Map placeholder ---------- */
.map-wrap { max-width: 800px; margin: 0 auto; }
.map-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.map-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 12px;
}
.map-body p { margin-bottom: 0; }

/* responsive */
@media (max-width: 760px) {
  .product-intro { grid-template-columns: 1fr; }
  .quote-strip-inner { flex-direction: column; align-items: flex-start; }
  .qs-actions { margin-left: 0; width: 100%; }
  .qs-actions .btn { flex: 1; }
}
