:root {
  --navy-deep: #1B3E6B;
  --navy-darker: #0E2748;
  --gold: #BF7A20;
  --gold-dark: #A8661A;
  --mint: #F4F7FB;
  --ink: #101B2E;
}

* { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: #FFFFFF;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Sora', sans-serif;
  color: var(--ink);
}

a { text-decoration: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

::selection { background: var(--gold); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(27,62,107,0.1);
}
.navbar-nav .nav-link {
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding-block: 0.4rem;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover { color: var(--navy-deep); }
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.btn-brand {
  background: var(--navy-deep);
  color: #fff;
  border: none;
  font-weight: 600;
}
.btn-brand:hover { background: var(--navy-darker); color: #fff; }

.btn-brand-outline {
  background: transparent;
  border: 2px solid var(--navy-deep);
  color: var(--navy-deep);
  font-weight: 600;
}
.btn-brand-outline:hover { background: var(--navy-deep); color: #fff; }

.btn-brand-accent {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  border: none;
}
.btn-brand-accent:hover { background: var(--gold-dark); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  padding-top: 8.5rem;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 100%);
  overflow: hidden;
}
.hero-eyebrow {
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: .02em;
}
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.12; font-weight: 700; }
.hero .accent { color: var(--navy-deep); }

.hero-art-wrap {
  position: relative;
}
.hero-art-wrap svg { width: 100%; height: auto; }

/* ---------- Hero slider (full-bleed, auto-playing) ---------- */
.hero-fullbleed {
  position: relative;
  overflow: hidden;
}
.hero-fullbleed .carousel-item { transition: transform 0.9s ease-in-out; }

.hero-slide {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 18%, rgba(191,122,32,0.18), transparent 45%);
  pointer-events: none;
}
.hero-slide-1 { background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy-deep) 55%, #123255 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #0B203D 0%, var(--navy-deep) 50%, #2C548C 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #061527 0%, var(--navy-darker) 45%, var(--navy-deep) 100%); }

.hero-slide-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-block: 3rem;
}
.hero-eyebrow-light {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 0;
}
.hero-slide-title {
  font-family: 'Sora', sans-serif;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 700;
}
.hero-accent { color: #A9E6DD; }
.hero-slide-text {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 34rem;
}

.hero-fullbleed .carousel-indicators {
  bottom: 1.75rem;
  margin: 0;
  gap: .5rem;
}
.hero-fullbleed .carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  border: none;
  opacity: 1;
}
.hero-fullbleed .carousel-indicators .active { background-color: var(--gold); width: 26px; border-radius: 6px; }

.hero-fullbleed .carousel-control-prev,
.hero-fullbleed .carousel-control-next {
  width: 6%;
  opacity: 1;
}
.hero-arrow-light {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 1.1rem;
  backdrop-filter: blur(2px);
  transition: background .2s ease;
}
.hero-fullbleed .carousel-control-prev:hover .hero-arrow-light,
.hero-fullbleed .carousel-control-next:hover .hero-arrow-light {
  background: rgba(255,255,255,0.3);
}
@media (max-width: 767.98px) {
  .hero-slide { min-height: 520px; }
  .hero-fullbleed .carousel-control-prev,
  .hero-fullbleed .carousel-control-next { display: none; }
}

/* Icon-based hero art used on slides 2 & 3 */
.hero-icon-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.hero-icon-circle {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-darker));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 5.5rem;
  box-shadow: 0 24px 48px rgba(27,62,107,0.22);
}
.hero-chip {
  position: absolute;
  display: flex; align-items: center; gap: .5rem;
  background: #fff;
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(27,62,107,0.14);
}
.hero-chip i { color: var(--gold); font-size: 1rem; }
.hero-chip-1 { top: 8%; right: 4%; }
.hero-chip-2 { bottom: 10%; left: 2%; }
.hero-chip-3 { top: 52%; right: -6%; }

/* Flagship slide 1: layered rotating dashed rings behind the icon circle */
.hero-icon-art-flagship { min-height: 380px; }
.hero-orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 330px; height: 330px;
  margin: -165px 0 0 -165px;
  border: 1.5px dashed rgba(169,230,221,0.45);
  border-radius: 50%;
  animation: heroSpin 22s linear infinite;
}
.hero-orbit-ring-2 {
  width: 280px; height: 280px;
  margin: -140px 0 0 -140px;
  border-color: rgba(191,122,32,0.35);
  animation-duration: 16s;
  animation-direction: reverse;
}
@keyframes heroSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orbit-ring { animation: none; }
}

/* Hero slide entrance transition — replays each time Bootstrap marks a slide .active */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.carousel-item .hero-slide-content,
.carousel-item .hero-icon-art,
.carousel-item .hero-3d-stage {
  opacity: 0;
}
.carousel-item.active .hero-slide-content {
  animation: heroFadeUp .7s cubic-bezier(.22,1,.36,1) forwards;
}
.carousel-item.active .hero-icon-art,
.carousel-item.active .hero-3d-stage {
  animation: heroFadeUp .8s cubic-bezier(.22,1,.36,1) .15s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item .hero-slide-content,
  .carousel-item .hero-icon-art,
  .carousel-item .hero-3d-stage { opacity: 1; animation: none; }
}
@media (max-width: 991.98px) {
  .hero-icon-art { margin-top: 1rem; }
  .hero-chip-3 { display: none; }
}

/* ---------- Hero 3D image card (realistic tilted photo) ---------- */
.hero-3d-stage {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
}
.hero-3d-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  transform-style: preserve-3d;
  transform: rotateY(-14deg) rotateX(6deg) translateZ(0);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  box-shadow:
    -18px 28px 45px rgba(0,0,0,0.35),
    -4px 8px 16px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.08) inset;
  will-change: transform;
}
.hero-3d-stage:hover .hero-3d-card,
.hero-3d-card.is-tilting {
  transition: transform .08s linear;
}
.hero-3d-card__media {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  transform: translateZ(0);
}
.hero-3d-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.hero-3d-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(6,20,38,0.05) 30%, rgba(6,20,38,0.55) 100%);
}
.hero-3d-card__sheen {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(115deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 26%);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateZ(1px);
}
.hero-3d-card__edge {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.22);
  pointer-events: none;
  transform: translateZ(2px);
}
.hero-3d-card .hero-chip {
  position: absolute;
  transform: translateZ(70px);
}
.hero-3d-card .hero-chip-1 { top: -6%; right: -10%; }
.hero-3d-card .hero-chip-2 {
  bottom: -7%;
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateZ(70px);
}
.hero-3d-card .hero-chip-3 { top: 48%; right: -18%; }

@media (max-width: 991.98px) {
  .hero-3d-stage { min-height: 300px; }
  .hero-3d-card { max-width: 300px; transform: none; box-shadow: 0 18px 34px rgba(0,0,0,0.28); }
  .hero-3d-card .hero-chip-3 { display: none; }
  .hero-3d-card .hero-chip-1 { right: -4%; }
  .hero-3d-card .hero-chip-2 { bottom: -8%; left: 50%; transform: translateX(-50%) translateZ(70px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-3d-card { transition: none; }
}
@media (max-width: 575.98px) {
  .hero-chip { position: static; margin: .35rem auto 0; width: fit-content; }
  .hero-icon-art { flex-direction: column; gap: .5rem; min-height: auto; padding-block: 1.5rem; }
}

/* ---------- Section basics ---------- */
.section { padding-block: 5.5rem; }
.section-mint { background: var(--mint); }
.section-deep { background: var(--navy-darker); color: #fff; }
.section-deep h2, .section-deep h3 { color: #fff; }
.eyebrow {
  text-transform: none;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Icon badges ---------- */
.icon-badge {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27,62,107,0.08);
  color: var(--navy-deep);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.icon-badge.on-dark { background: rgba(255,255,255,0.12); color: #fff; }
.icon-badge.accent { background: rgba(191,122,32,0.12); color: var(--gold-dark); }

/* ---------- Cards ---------- */
.card-service {
  border: 1px solid rgba(27,62,107,0.12);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(27,62,107,0.10);
  border-color: rgba(27,62,107,0.25);
}
.card-service ul { padding-left: 1.1rem; }
.card-service ul li { margin-bottom: .35rem; color: rgba(18,34,31,0.75); }

.pill-tag {
  display: inline-block;
  background: rgba(27,62,107,0.08);
  color: var(--navy-deep);
  border-radius: 999px;
  padding: .25rem .8rem;
  font-size: .8rem;
  font-weight: 600;
  margin: .2rem .3rem .2rem 0;
}

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid rgba(27,62,107,0.1); border-bottom: 1px solid rgba(27,62,107,0.1); }
.trust-item i { color: var(--gold); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy-darker) 100%);
  border-radius: 24px;
  color: #fff;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 15%, rgba(191,122,32,0.28), transparent 45%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2, .cta-banner p { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-darker); }
.footer-links li { margin-bottom: .6rem; color: rgba(255,255,255,0.65); }
.footer-links a { color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { background: rgba(0,0,0,0.15); }
.footer-admin-link { color: rgba(255,255,255,0.55); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.25); }
.footer-admin-link:hover { color: var(--gold); text-decoration-color: var(--gold); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  z-index: 1050;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Forms ---------- */
.form-control, .form-select {
  border: 1.5px solid rgba(27,62,107,0.2);
  border-radius: 10px;
  padding: .7rem 1rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--navy-deep);
  box-shadow: 0 0 0 .2rem rgba(27,62,107,0.12);
}
.form-label { font-weight: 600; font-size: .9rem; color: var(--ink); }

/* Custom, professionally-worded validation messages (replaces the browser's default tooltip) */
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
  border-color: var(--gold-dark);
  background-image: none;
  padding-right: 1rem;
}
.was-validated .form-control:invalid:focus,
.was-validated .form-select:invalid:focus {
  box-shadow: 0 0 0 .2rem rgba(229,80,47,0.15);
}
.was-validated .form-control:valid,
.was-validated .form-select:valid {
  border-color: var(--navy-deep);
  background-image: none;
}
.invalid-feedback {
  display: none;
  align-items: center;
  gap: .4rem;
  margin-top: .4rem;
  padding: .45rem .7rem;
  background: rgba(229,80,47,0.08);
  border: 1px solid rgba(229,80,47,0.25);
  border-radius: 8px;
  color: var(--gold-dark);
  font-size: .82rem;
  font-weight: 500;
}
.invalid-feedback::before {
  content: '\F33A'; /* bootstrap-icons exclamation-triangle-fill */
  font-family: 'bootstrap-icons';
  font-size: 1rem;
  line-height: 1;
}
.was-validated :invalid ~ .invalid-feedback { display: flex; }

/* ---------- Catalog: toolbar & filters ---------- */
.catalog-toolbar { position: sticky; top: 84px; z-index: 5; background: #fff; padding-block: .5rem; }
.btn-filter {
  border: 1.5px solid rgba(27,62,107,0.18);
  background: #fff;
  color: var(--navy-deep);
  font-weight: 600;
  font-size: .85rem;
  border-radius: 999px;
  padding: .45rem 1rem;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-filter:hover { border-color: var(--navy-deep); }
.btn-filter.active { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }

.sku-tag {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(18,34,31,0.45);
  letter-spacing: .02em;
}

.add-to-quote-btn.added {
  background: var(--navy-deep);
  color: #fff;
  border-color: var(--navy-deep);
}

/* ---------- Catalog: floating quote cart ---------- */
.quote-cart-float {
  position: fixed;
  bottom: 96px; left: 24px;
  width: 58px; height: 58px;
  background: var(--navy-deep);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(27,62,107,0.28);
  z-index: 1050;
  transition: transform .2s ease;
}
.quote-cart-float:hover { transform: scale(1.08); color: #fff; }
.quote-cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px; height: 22px;
  padding: 0 5px;
  background: var(--gold);
  color: #fff;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

#quoteCartPanel .offcanvas-header { border-bottom: 1px solid rgba(27,62,107,0.1); }
.cart-item:last-child { border-bottom: none !important; }
.btn-qty {
  width: 26px; height: 26px;
  padding: 0;
  line-height: 1;
  border: 1px solid rgba(27,62,107,0.25);
  border-radius: 6px;
  color: var(--navy-deep);
  background: #fff;
  font-weight: 700;
}
.btn-qty:hover { background: var(--mint); }
.qty-display { min-width: 18px; text-align: center; font-weight: 600; font-size: .85rem; }

@media (max-width: 575.98px) {
  .quote-cart-float { bottom: 92px; }
}

/* ---------- Catalog: product photo + quick view ---------- */
.card-product { position: relative; overflow: hidden; }

.quick-view-trigger {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(27,62,107,0.18);
  z-index: 3;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease, color .18s ease;
}
.card-product:hover .quick-view-trigger,
.quick-view-trigger:focus-visible {
  opacity: 1;
  transform: translateY(0);
}
.quick-view-trigger:hover { background: var(--navy-deep); color: #fff; }

.product-media {
  position: relative;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-in;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.card-product:hover .product-media img { transform: scale(1.08); }
.product-media-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  font-size: 1.9rem;
}

.quick-view-media {
  border-radius: 16px;
  overflow: hidden;
  background: var(--mint);
  min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-in;
}
.quick-view-media img {
  width: 100%; height: 100%;
  max-height: 320px;
  object-fit: cover;
  transition: transform .4s ease;
}
.quick-view-media:hover img { transform: scale(1.35); }
.quick-view-icon { width: 96px; height: 96px; border-radius: 24px; font-size: 2.8rem; }

/* ---------- Catalog: WhatsApp + PDF quote buttons ---------- */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  font-weight: 600;
  transition: background .15s ease, transform .15s ease;
}
.btn-whatsapp:hover { background: #1DA851; color: #fff; }

/* ---------- Catalog: pricing ---------- */
.product-price {
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 1.05rem;
}
.quick-view-price {
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 1.3rem;
}
.cart-item-price { color: rgba(18,34,31,0.55); }
.cart-subtotal-row { font-size: .95rem; }

/* ---------- Misc ---------- */
.divider-dot { color: var(--gold); }
.map-frame { border-radius: 18px; overflow: hidden; border: 1px solid rgba(27,62,107,0.15); }
.value-row { border-top: 1px solid rgba(27,62,107,0.12); padding-block: 1.4rem; }
.value-row:last-child { border-bottom: 1px solid rgba(27,62,107,0.12); }

/* ============================================================
   PREMIUM UPGRADE — scroll reveal, stats, testimonials, badges,
   back-to-top, refined depth. Added for a higher polish pass.
   ============================================================ */

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Section eyebrow refinement ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  display: inline-block;
}
.section-deep .eyebrow, .hero-slide .eyebrow { color: var(--gold); }

/* ---------- Stats / counters ---------- */
.stats-strip {
  background: var(--navy-darker);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}
.stat-card { position: relative; z-index: 1; text-align: center; padding-block: .5rem; }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .15rem;
}
.stat-number .stat-suffix { font-size: 0.55em; color: var(--gold); font-weight: 700; }
.stat-label {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: .9rem;
  margin-top: .5rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(27,62,107,0.10);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  height: 100%;
  position: relative;
  box-shadow: 0 4px 18px rgba(27,62,107,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 36px rgba(27,62,107,0.12); }
.testimonial-quote-icon {
  font-size: 2rem;
  color: rgba(191,122,32,0.35);
  line-height: 1;
  margin-bottom: 1rem;
}
.testimonial-stars { color: #F5A623; font-size: .85rem; margin-bottom: .9rem; letter-spacing: .1rem; }
.testimonial-text { color: rgba(18,34,31,0.78); font-size: .98rem; margin-bottom: 1.5rem; }
.testimonial-person { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-darker));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .92rem; margin-bottom: 0; }
.testimonial-role { font-size: .8rem; color: rgba(18,34,31,0.55); }

/* ---------- Certifications / assurance strip ---------- */
.assurance-strip {
  border: 1px dashed rgba(27,62,107,0.25);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--mint) 0%, #ffffff 100%);
}
.assurance-item { display: flex; align-items: center; gap: .9rem; }
.assurance-item i { font-size: 1.6rem; color: var(--navy-deep); flex-shrink: 0; }
.assurance-item h4 { font-size: .95rem; margin-bottom: .15rem; }
.assurance-item p { font-size: .82rem; color: rgba(18,34,31,0.6); margin-bottom: 0; }

/* ---------- Section heading underline accent ---------- */
.heading-accent-bar {
  width: 56px; height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin: 0.75rem auto 0;
}
.text-start .heading-accent-bar { margin-left: 0; margin-right: auto; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 96px; left: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 22px rgba(27,62,107,0.28);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-darker); color: #fff; }
@media (max-width: 575.98px) {
  .back-to-top { bottom: 92px; left: 20px; width: 42px; height: 42px; }
}
/* Catalog page has a 3rd floating button (quote cart) stacked on the left,
   so push the back-to-top arrow up above it there. */
.page-catalog .back-to-top { bottom: 168px; }
@media (max-width: 575.98px) {
  .page-catalog .back-to-top { bottom: 160px; }
}

/* ---------- Refined card depth on hover for existing badges ---------- */
.card-service .icon-badge { transition: transform .25s ease, background .25s ease; }
.card-service:hover .icon-badge { transform: scale(1.08); }

/* ---------- Social row (footer) ---------- */
.social-row { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.social-row a:hover { background: var(--gold); transform: translateY(-3px); }

/* ---------- Page loader-free fade-in for main content ---------- */
img { max-width: 100%; }

/* ---------- Team section (About page) ---------- */
.team-card-role {
  display: inline-block;
  background: rgba(27,62,107,0.08);
  color: var(--navy-deep);
  border-radius: 999px;
  padding: .3rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* Spotlight carousel */
.team-carousel { max-width: 720px; margin: 0 auto; }
.team-spotlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid rgba(27,62,107,0.10);
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 45px rgba(14,39,72,0.08);
}
.team-spotlight-photo {
  position: relative;
  flex-shrink: 0;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--navy-deep), var(--gold));
  margin: 0 auto;
}
.team-spotlight-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid #fff;
}
.team-spotlight-body { text-align: center; width: 100%; }
.team-quote-icon {
  display: inline-block;
  font-size: 2rem;
  color: rgba(27,62,107,0.15);
  line-height: 1;
  margin-bottom: -.25rem;
}
.team-spotlight-name {
  color: var(--navy-darker);
  font-weight: 700;
  margin: .5rem 0 .6rem;
}
.team-spotlight-bio {
  color: rgba(18,34,31,0.7);
  margin: 0 auto;
  max-width: 30rem;
}

/* Carousel controls / indicators for team spotlight */
.team-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.team-carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(27,62,107,0.2);
  background: #fff;
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.team-carousel-btn:hover {
  background: var(--navy-deep);
  color: #fff;
  transform: translateY(-2px);
}
.team-carousel-indicators {
  position: static;
  margin: 0;
  gap: .5rem;
}
.team-carousel-indicators [data-bs-target] {
  width: 9px; height: 9px;
  border-radius: 50%;
  background-color: rgba(27,62,107,0.25);
  border: none;
  opacity: 1;
  transition: width .25s ease, background-color .25s ease, border-radius .25s ease;
}
.team-carousel-indicators .active {
  background-color: var(--gold);
  width: 24px;
  border-radius: 6px;
}
