/* ==========================================================================
   Super Alpine — consolidated site styles
   Merged from previously duplicated inline <style> blocks
   (layout, navbar, footer, home) into one cacheable file.
   ========================================================================== */

:root {
  --sa-navy: #0A2540;
  --sa-blue: #0062cc;
  --sa-accent: #00B4D8;
  --sa-accent-ink: #0086a3;
  --sa-muted: #6c757d;
  --sa-bg-soft: #f8f9fa;
  --sa-section-alt: #eef3f9;
  --sa-border: #dee2e6;
  --sa-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --sa-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --sa-navbar-h: 64px;
  --sa-gradient: linear-gradient(45deg, var(--sa-navy), var(--sa-blue));
  --sa-gradient-rev: linear-gradient(45deg, var(--sa-blue), var(--sa-navy));
}

/* ------------------------------------------------------------------ base */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}

/* Offset for the fixed-top navbar (kept in sync with --sa-navbar-h).
   scroll-padding avoids anchored content hiding behind the navbar. */
body { padding-top: var(--sa-navbar-h); }
html { scroll-padding-top: var(--sa-navbar-h); }

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

/* Layout helpers (previously inline in the app layout) */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-grow-1 { flex: 1; }

/* --------------------------------------------------------------- navbar */
.navbar {
  background-color: var(--sa-bg-soft) !important;
  box-shadow: var(--sa-shadow-sm);
}

.navbar-brand img {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.nav-link {
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  font-weight: 500;
  color: #000 !important;
  border-radius: 6px;
  margin: 0 3px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: #fff !important;
  background: var(--sa-gradient) !important;
}

.nav-link.active { font-weight: 700; }

.navbar-toggler { border-color: #000; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 7h22M4 15h22M4 23h22'/></svg>");
  background-size: 100% 100%;
  width: 1.5em;
  height: 1.5em;
}

/* ---------------------------------------------------------------- cards */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--sa-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card-img-top {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
  background: var(--sa-bg-soft);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sa-navy);
}

.card-text {
  font-size: 1rem;
  color: var(--sa-muted);
}

/* -------------------------------------------------------------- buttons */
.btn-primary {
  background: var(--sa-gradient);
  border: none;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: var(--sa-shadow);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--sa-gradient-rev);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

/* -------------------------------------------------------------- layout */
.container-xxl { padding: clamp(1.5rem, 1rem + 3vw, 3rem) 1.5rem; }

/* Alternating soft section background (subtle cool blue-grey to match theme) */
.section-soft { background: var(--sa-section-alt); }

.section-title {
  font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--sa-navy);
}

/* ---------------------------------------------------------- home: hero */
#heroCarousel { background: #000; }
#heroCarousel .carousel-item { background: #000; }

/* Full banner shown completely (contains its own text — no overlay). */
.hero-section { line-height: 0; background: #fff; }

.hero-section picture { display: block; }

.hero-banner {
  display: block;
  width: 100%;
  height: auto;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 20px;
}

/* Dark round carousel arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #4a4a4a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60% 60%;
  background-repeat: no-repeat;
  background-position: center;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: #2f2f2f;
}

/* ------------------------------------------------- home: product range */
.product-figure img {
  height: clamp(220px, 22vw, 340px);
  width: 100%;
  object-fit: contain;
}

.filter-btn { margin: 0.5rem; }
.filter-btn.active { background: var(--sa-gradient-rev); color: #fff; }
.hidden { display: none !important; }

/* --------------------------------------------------------------- footer */
footer.footer {
  background: var(--sa-navy);
  color: #c3ccd8;
  padding: 3rem 0 1.25rem;
  border-top: none;
}

.footer-col h5 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  border-radius: 3px;
  background: var(--sa-accent);
}

.footer-brand img { height: 46px; width: auto; margin-bottom: 1rem; }

.footer-about { font-size: 0.92rem; line-height: 1.7; color: #aab6c4; margin: 0; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: #c3ccd8;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }

.footer-contact-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
  color: #c3ccd8;
  line-height: 1.5;
}

.footer-contact-list i {
  color: var(--sa-accent);
  margin-top: 0.2rem;
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact-list a { color: #c3ccd8; text-decoration: none; word-break: break-word; }
.footer-contact-list a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { margin: 0; font-size: 0.85rem; color: #9aa7b6; }

.footer-social { display: flex; gap: 0.6rem; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover { background: var(--sa-accent); transform: translateY(-3px); color: #fff; }
.footer-social a.wa:hover { background: #25d366; }

@media (max-width: 767.98px) {
  footer.footer { text-align: center; }
  .footer-col h5::after { left: 50%; transform: translateX(-50%); }
  .footer-contact-list li { justify-content: center; text-align: left; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* --------------------------------------------------------- breakpoints */
@media (max-width: 992px) {
  :root { --sa-navbar-h: 60px; }
}

@media (max-width: 768px) {
  .nav-link { padding: 0.5rem 0.75rem; }
  .carousel-caption { font-size: 14px; padding: 10px; }
  .row > div[class*="col"] { margin-bottom: 20px; }
}

/* ==========================================================================
   Home redesign — trust strip, stats, features, CTA band
   ========================================================================== */

/* ----------------------------------------------------------- trust strip */
.trust-strip {
  background: var(--sa-gradient);
  color: #fff;
}

.trust-strip .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(0.72rem, 0.68rem + 0.3vw, 0.9rem);
  text-align: center;
}

.trust-strip .trust-item i {
  font-size: 1.3rem;
  opacity: 0.95;
}

/* subtle separators between cells on wider screens */
@media (min-width: 768px) {
  .trust-strip [class*="col-"] + [class*="col-"] .trust-item {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }
}

/* ---------------------------------------------------------------- stats */
.stats-section { background: #fff; }

.stat-card { padding: 1.25rem 0.5rem; }

.stat-num {
  font-size: clamp(1.8rem, 1.2rem + 2.5vw, 3rem);
  font-weight: 800;
  color: var(--sa-navy);
  line-height: 1;
}

.stat-num .suffix { color: var(--sa-accent-ink); }

.stat-label {
  margin-top: 0.35rem;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 1rem);
  font-weight: 500;
  color: var(--sa-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ------------------------------------------------------------- features */
.section-eyebrow {
  display: inline-block;
  color: var(--sa-accent-ink);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.feature-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--sa-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 0%, rgba(0, 131, 209, 0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 64, 133, 0.12);
  border-color: transparent;
}

.feature-icon {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: var(--sa-gradient);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 10px 22px rgba(0, 131, 209, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(0, 131, 209, 0.28);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature-icon i {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-icon {
  transform: translateY(-4px) rotate(-6deg) scale(1.06);
  box-shadow: 0 16px 34px rgba(0, 131, 209, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.feature-card:hover .feature-icon::after {
  opacity: 1;
  transform: scale(1);
}

.feature-card:hover .feature-icon i {
  transform: rotate(6deg) scale(1.1);
}

/* Option B preview: Phosphor duotone icons on a soft brand-tinted badge */
.feature-icon.is-phosphor {
  background: linear-gradient(145deg, #eaf6fd, #d3ebfb);
  color: #0083D1;
  box-shadow: 0 10px 22px rgba(0, 131, 209, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feature-icon.is-phosphor::after {
  border-color: rgba(0, 131, 209, 0.35);
}

.feature-icon.is-phosphor i {
  font-size: 2.1rem;
  line-height: 1;
}

/* Phosphor icon sizing helper (replaces Font Awesome fa-lg) */
.ph-lg { font-size: 1.33em; line-height: 1; }

.feature-card h5 { font-weight: 700; color: var(--sa-navy); margin-bottom: 0.5rem; }
.feature-card p { color: var(--sa-muted); font-size: 0.95rem; margin: 0; }

/* ----------------------------------------------- product range polish */
.product-range-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--sa-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.product-range-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 64, 133, 0.15);
}

.product-range-card .pr-media {
  height: clamp(200px, 20vw, 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-range-card .pr-media img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-range-card:hover .pr-media img { transform: scale(1.06); }

.product-range-card .pr-title {
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--sa-navy);
  font-size: 1.15rem;
}

.product-range-card .pr-link {
  display: inline-block;
  margin-top: 0.25rem;
  color: var(--sa-accent-ink);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ------------------------------------------------------------ CTA band */
.cta-band {
  background: var(--sa-gradient);
  color: #fff;
  border-radius: 20px;
  padding: clamp(1.75rem, 1rem + 3vw, 3rem);
  text-align: center;
}

.cta-band h2 {
  font-weight: 800;
  font-size: clamp(1.4rem, 1rem + 2vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.cta-band p { opacity: 0.9; margin-bottom: 1.5rem; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-band .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--sa-navy);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.cta-band .btn-cta:hover { transform: translateY(-3px); color: var(--sa-navy); }

.cta-band .btn-cta.wa { background: #25d366; color: #fff; }
.cta-band .btn-cta.wa:hover { color: #fff; }

/* ----------------------------------------------- scroll reveal (no JS dep) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------------------ floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  transition: transform 0.25s ease;
}

.wa-float:hover { transform: scale(1.1); color: #fff; }

/* ==========================================================================
   Products / GI grid cards (moved from inline <style> blocks)
   ========================================================================== */
.image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Figure-style product card used on Products & GI pages */
figure.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

figure.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 64, 133, 0.12);
}

figure.product-card:hover .image-box img { transform: scale(1.06); }

/* ==========================================================================
   Contact page (moved from inline <style> block)
   ========================================================================== */
.contact-card {
  background: #fff;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 2rem;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.contact-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sa-navy);
  margin-bottom: 1.25rem;
}

.contact-card-text {
  font-size: 1.05rem;
  color: #343a40;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.contact-icon {
  font-size: 1.25rem;
  color: var(--sa-blue);
  width: 1.5rem;
  text-align: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-icon.whatsapp-icon { color: #25d366; }

/* Contact form */
.contact-form .form-control {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--sa-border);
}

.contact-form .form-control:focus {
  border-color: var(--sa-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 98, 204, 0.15);
}

.contact-form label { font-weight: 600; color: var(--sa-navy); margin-bottom: 0.35rem; }

.map-wrap {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  line-height: 0;
}

.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ==========================================================================
   About page
   ========================================================================== */
.page-hero {
  background: var(--sa-gradient);
  color: #fff;
  padding: clamp(2.5rem, 2rem + 4vw, 4.5rem) 1rem;
  text-align: center;
}

.page-hero h1 {
  font-weight: 800;
  font-size: clamp(1.8rem, 1.2rem + 3vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-hero p { opacity: 0.9; margin: 0; font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.2rem); }

.about-lead { font-size: 1.1rem; line-height: 1.9; color: #343a40; }

.mv-card {
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--sa-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0, 64, 133, 0.12); }

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--sa-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mv-card h4 { font-weight: 700; color: var(--sa-navy); }
.mv-card p { color: var(--sa-muted); margin: 0; }

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--sa-border);
}

.timeline-item { position: relative; padding-bottom: 1.75rem; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sa-accent);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.18);
}

.timeline-item .t-year { font-weight: 800; color: var(--sa-navy); }
.timeline-item .t-text { color: var(--sa-muted); margin: 0; }

/* ==========================================================================
   Brands / Partners cards
   ========================================================================== */
.brand-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--sa-border);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 64, 133, 0.12);
  border-color: transparent;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sa-navy);
  line-height: 1.1;
}

.brand-flag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sa-accent-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0.35rem 0 0.75rem;
}

.brand-desc { font-size: 0.88rem; color: var(--sa-muted); margin: 0; line-height: 1.55; }

/* Certification badges */
.cert-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--sa-border);
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sa-navy);
}

.cert-badge i { color: var(--sa-accent); }

/* ==========================================================================
   Leadership cards
   ========================================================================== */
.leader-card {
  height: 100%;
  text-align: center;
  background: #fff;
  border: 1px solid var(--sa-border);
  border-radius: 16px;
  padding: 1.75rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0, 64, 133, 0.12); }

.leader-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--sa-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.leader-card h5 { font-weight: 700; color: var(--sa-navy); margin-bottom: 0.15rem; }
.leader-card span { font-size: 0.85rem; color: var(--sa-muted); }

.leader-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 35%;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(0, 64, 133, 0.18);
}

/* ==========================================================================
   Contact — office cards
   ========================================================================== */
.office-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--sa-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0, 64, 133, 0.12); }

.office-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--sa-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.office-card h5 { font-weight: 700; color: var(--sa-navy); margin-bottom: 0.75rem; }
.office-card h5 span { display: block; font-size: 0.8rem; font-weight: 500; color: var(--sa-muted); }

.office-card p {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #343a40;
  margin-bottom: 0.5rem;
}

.office-card p i { color: var(--sa-accent); margin-top: 0.2rem; width: 1rem; text-align: center; flex-shrink: 0; }
.office-card p a { color: #343a40; text-decoration: none; }
.office-card p a:hover { color: var(--sa-blue); }

/* ==========================================================================
   Product page — standards note
   ========================================================================== */
.standards-note {
  background: var(--sa-section-alt);
  border-left: 4px solid var(--sa-accent);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: #343a40;
  margin: 0 auto 1.75rem;
  max-width: 720px;
  text-align: left;
}

.standards-note strong { color: var(--sa-navy); }

/* ==========================================================================
   Projects page
   ========================================================================== */
.project-cat-title {
  font-weight: 700;
  color: var(--sa-navy);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.project-cat-title i { color: var(--sa-accent); }

.project-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  height: 100%;
  background: #fff;
  border: 1px solid var(--sa-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--sa-navy);
  line-height: 1.35;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-item i { color: var(--sa-accent); flex-shrink: 0; }

.project-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 64, 133, 0.12);
  border-color: transparent;
}

/* ==========================================================================
   Mobile polish (<= 575.98px) — tighter spacing, cleaner cards, big tap targets
   ========================================================================== */
@media (max-width: 575.98px) {
  /* Trim generous desktop vertical padding on phones */
  .py-5 { padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }
  .my-5 { margin-top: 2.25rem !important; margin-bottom: 2.25rem !important; }
  .container-xxl { padding-left: 1rem; padding-right: 1rem; }
  .section-title { margin-bottom: 1.25rem; }
  .mb-5 { margin-bottom: 1.75rem !important; }

  /* Stats: neat 2-up cards with soft background + gutter */
  .stats-section .row { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
  .stats-section .row > [class*="col-"] { margin-bottom: 0; }
  .stat-card {
    background: var(--sa-bg-soft);
    border: 1px solid var(--sa-border);
    border-radius: 14px;
    padding: 1rem 0.5rem;
  }

  /* Feature cards: less padding, smaller icon */
  .feature-card { padding: 1.5rem 1.25rem; }
  .feature-icon { width: 58px; height: 58px; font-size: 1.4rem; margin-bottom: 0.85rem; }

  /* Product range cards: compact media so 4 cards scroll less */
  .product-range-card { padding: 1rem; }
  .product-range-card .pr-media { height: 160px; }
  .product-range-card .pr-title { font-size: 1.05rem; }

  /* CTA buttons full-width & easy to tap */
  .cta-actions { gap: 0.6rem; }
  .cta-band .btn-cta { width: 100%; justify-content: center; padding: 0.8rem 1rem; }

  /* Keep floating WhatsApp clear of the CTA buttons */
  .wa-float { width: 52px; height: 52px; font-size: 1.55rem; right: 14px; bottom: 14px; }
}
