/* =========================================================
   STATUE ARTS — CORE STYLESHEET
   Where Faith Meets Fine Craftsmanship
========================================================= */

:root {
  /* Brand palette */
  --sa-red: #b5121b;
  --sa-red-deep: #7e0d14;
  --sa-gold: #c8a24d;
  --sa-gold-light: #e6cd8e;
  --sa-white: #ffffff;
  --sa-cream: #faf7f2;
  --sa-dark: #222222;
  --sa-gray: #f5f5f5;
  --sa-charcoal: #241c15;
  --abb-navy: #151a52;
  --abb-navy-dark: #0e123c;
  --sa-red: #b5121b;
  --sa-red-deep: #7e0d14;
  --abb-ink: #1b1d2b;
  --abb-muted: #6b7080;
  --abb-line: #e8e9f0;
  --abb-bg-soft: #f6f7fb; 

  /* Type */
  --sa-font-heading: "Cinzel", serif;
  --sa-font-body: "Poppins", sans-serif;
  --sa-font-script: "Tangerine", cursive;

  /* Layout */
  --sa-topbar-height: 45px;
  --sa-header-height: 92px;
  --sa-radius-pill: 50px;
  --sa-container-pad: 15px;

  /* Motion */
  --sa-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sa-font-body);
  color: var(--sa-dark);
  background: var(--sa-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: 1260px;
}

/* =========================================================
   BUTTONS
========================================================= */
.sa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sa-font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--sa-radius-pill);
  border: 1px solid transparent;
  transition:
    background 0.35s var(--sa-ease),
    color 0.35s var(--sa-ease),
    border-color 0.35s var(--sa-ease),
    transform 0.35s var(--sa-ease),
    box-shadow 0.35s var(--sa-ease);
  white-space: nowrap;
}

.sa-btn--quote {
  background: var(--sa-gold);
  color: var(--sa-white);
  padding: 12px 26px;
  font-size: 12.5px;
  box-shadow: 0 8px 20px -8px rgba(200, 162, 77, 0.7);
}
.sa-btn--quote:hover {
  background: var(--sa-red);
  color: var(--sa-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(181, 18, 27, 0.55);
}

.sa-btn--primary {
  background: var(--sa-red);
  color: var(--sa-white);
  box-shadow: 0 10px 24px -10px rgba(181, 18, 27, 0.6);
}
.sa-btn--primary:hover {
  background: var(--sa-red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(126, 13, 20, 0.6);
}

.sa-btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--sa-white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sa-btn--outline:hover {
  background: var(--sa-gold);
  border-color: var(--sa-gold);
  color: var(--sa-white);
  transform: translateY(-2px);
}

/* =========================================================
   TOP HEADER
========================================================= */
.sa-topbar {
  background: var(--sa-cream);
  border-bottom: 1px solid rgba(200, 162, 77, 0.25);
  height: var(--sa-topbar-height);
  font-size: 13px;
  color: var(--sa-dark);
}

.sa-topbar__inner {
  height: var(--sa-topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sa-topbar__left {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}

.sa-topbar__short {
  display: none;
}

.sa-topbar__left i {
  color: var(--sa-red);
  font-size: 12px;
}

.sa-topbar__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.sa-topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s var(--sa-ease);
}

.sa-topbar__item i {
  color: var(--sa-gold);
  font-size: 12px;
}

.sa-topbar__item:hover {
  color: var(--sa-red);
}

/* =========================================================
   MAIN HEADER
========================================================= */
.sa-header {
  position: absolute;
  top: var(--sa-topbar-height);
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transition:
    background 0.4s var(--sa-ease),
    box-shadow 0.4s var(--sa-ease),
    padding 0.4s var(--sa-ease),
    top 0.3s var(--sa-ease);
}

.sa-header.is-sticky {
  position: fixed;
  top: 0;
  background: var(--sa-white);
  box-shadow: 0 8px 30px -12px rgba(34, 34, 34, 0.18);
}

.sa-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: var(--sa-header-height);
  transition: height 0.4s var(--sa-ease);
}

.sa-header.is-sticky .sa-header__inner {
  height: 100px;
}

.sa-header__logo img {
  height: 75px;
  width: auto;
  transition:
    height 0.35s var(--sa-ease),
    filter 0.35s var(--sa-ease);
}

.sa-header.is-sticky .sa-header__logo img {
  height: 90px;
}

.sa-header__logo img {
  filter: drop-shadow(0 2px 8px rgba(34, 34, 34, 0.08));
}

/* =========================================================
   NAVIGATION
========================================================= */
.sa-nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.sa-nav__link {
  position: relative;
  display: inline-block;
  font-family: var(--sa-font-body);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: var(--sa-dark);
  padding: 8px 0;
  transition: color 0.3s var(--sa-ease);
}

.sa-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--sa-gold);
  transition: width 0.35s var(--sa-ease);
}

.sa-nav__link:hover::after,
.sa-nav__link.is-active::after {
  width: 100%;
}

.sa-nav__link:hover,
.sa-nav__link.is-active {
  color: var(--sa-gold);
}

.sa-nav__mobilehead {
  display: none;
}

.sa-nav__backdrop {
  display: none;
}

.sa-nav__item--dropdown {
  position: relative;
}

.sa-nav__item--dropdown > .sa-nav__link i {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.3s var(--sa-ease);
}

.sa-nav__item--dropdown:hover > .sa-nav__link i {
  transform: rotate(180deg);
}

.sa-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--sa-white);
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 22px 45px -18px rgba(34, 34, 34, 0.35);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s var(--sa-ease),
    transform 0.3s var(--sa-ease),
    visibility 0.3s;
  z-index: 20;
}

.sa-nav__item--dropdown:hover .sa-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sa-dropdown li a {
  display: block;
  padding: 9px 22px;
  font-size: 13.5px;
  color: var(--sa-dark);
  border-left: 2px solid transparent;
  transition:
    background 0.25s var(--sa-ease),
    color 0.25s var(--sa-ease),
    border-color 0.25s var(--sa-ease);
}

.sa-dropdown li a:hover {
  background: var(--sa-cream);
  color: var(--sa-red);
  border-left-color: var(--sa-gold);
}

/* =========================================================
   HEADER ACTIONS
========================================================= */
.sa-header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sa-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sa-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(181, 18, 27, 0.3);
  font-size: 13px;
  color: var(--sa-red);
  transition:
    background 0.3s var(--sa-ease),
    color 0.3s var(--sa-ease),
    border-color 0.3s var(--sa-ease),
    transform 0.3s var(--sa-ease);
}

.sa-social a:hover {
  background: var(--sa-gold);
  border-color: var(--sa-gold);
  color: var(--sa-white) !important;
  transform: translateY(-3px);
}

.sa-navtoggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 26px;
  background: transparent;
  border: none;
  padding: 0;
}

.sa-navtoggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--sa-dark);
  border-radius: 2px;
  transition:
    background 0.3s var(--sa-ease),
    transform 0.3s var(--sa-ease),
    opacity 0.3s var(--sa-ease);
}

/* =========================================================
   HERO SLIDER
========================================================= */
.sa-hero {
  position: relative;
  min-height: 780px;
  padding-top: calc(var(--sa-topbar-height) + var(--sa-header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      120% 90% at 78% 8%,
      rgba(200, 162, 77, 0.28),
      transparent 55%
    ),
    radial-gradient(
      90% 70% at 8% 100%,
      rgba(181, 18, 27, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #fdf9f1 0%, #f6edde 45%, #f0e3cb 100%);
}

.sa-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(
      2px 2px at 20% 30%,
      rgba(255, 255, 255, 0.9),
      transparent 60%
    ),
    radial-gradient(
      2px 2px at 65% 20%,
      rgba(255, 255, 255, 0.8),
      transparent 60%
    ),
    radial-gradient(
      3px 3px at 80% 65%,
      rgba(255, 255, 255, 0.7),
      transparent 60%
    ),
    radial-gradient(
      2px 2px at 40% 80%,
      rgba(255, 255, 255, 0.7),
      transparent 60%
    ),
    radial-gradient(
      2px 2px at 90% 40%,
      rgba(255, 255, 255, 0.6),
      transparent 60%
    );
  opacity: 0.8;
  pointer-events: none;
}

.sa-hero__mandala {
  position: absolute;
  top: 50%;
  left: 2%;
  width: 640px;
  height: 640px;
  transform: translateY(-50%);
  color: var(--sa-gold);
  opacity: 0.16;
  z-index: 0;
  animation: saSpin 60s linear infinite;
  pointer-events: none;
}

@keyframes saSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.sa-hero__slider,
.sa-hero__slider .owl-stage-outer,
.sa-hero__slider .owl-stage,
.sa-hero__slider .owl-item {
  height: 100%;
}

.sa-slide {
  position: relative;
  z-index: 1;
  padding: 40px 0 70px;
}

.sa-slide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

/* Statue figure */
.sa-slide__figure {
  position: relative;
  display: flex;
  justify-content: center;
  order: 1;
}

.sa-slide__figure-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(200, 162, 77, 0.45),
    transparent 70%
  );
  filter: blur(10px);
  z-index: 0;
}

.sa-statue-art {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 40px 34px rgba(36, 28, 21, 0.28));
  animation: saFloat 6s ease-in-out infinite;
}

@keyframes saFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Content */
.sa-slide__content {
  order: 2;
}

.sa-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: var(--sa-radius-pill);
  background: rgba(181, 18, 27, 0.07);
  border: 1px solid rgba(181, 18, 27, 0.25);
  color: var(--sa-red);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}

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

.sa-eyebrow {
  margin: 0 0 10px;
  font-family: var(--sa-font-heading);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sa-gold);
}

.sa-heading {
  margin: 0 0 22px;
  font-family: var(--sa-font-heading);
  font-weight: 700;
  font-size: 35px;
  line-height: 1.12;
  color: var(--sa-dark);
}

.sa-desc {
  max-width: 520px;
  margin: 0 0 34px;
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(34, 34, 34, 0.75);
}

.sa-slide__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sa-slide__actions .sa-btn--outline {
  background: transparent;
  border-color: rgba(181, 18, 27, 0.3);
  color: var(--sa-red);
}
.sa-slide__actions .sa-btn--outline:hover {
  background: var(--sa-red);
  border-color: var(--sa-red);
  color: var(--sa-white);
}

/* Owl dots */
.sa-hero__slider .owl-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.sa-hero__slider .owl-dot span {
  display: block;
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 50%;
  background: rgba(181, 18, 27, 0.25);
  transition:
    background 0.3s var(--sa-ease),
    width 0.3s var(--sa-ease);
}

.sa-hero__slider .owl-dot.active span {
  background: var(--sa-red);
  width: 26px;
  border-radius: 5px;
}

/* Custom arrows */
.sa-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  color: var(--sa-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.65;
  transition:
    opacity 0.3s var(--sa-ease),
    transform 0.3s var(--sa-ease);
}

.sa-hero__arrow:hover {
  opacity: 1;
}

.sa-hero__arrow--prev {
  left: 26px;
}
.sa-hero__arrow--prev:hover {
  transform: translateY(-50%) translateX(-4px);
}

.sa-hero__arrow--next {
  right: 26px;
}
.sa-hero__arrow--next:hover {
  transform: translateY(-50%) translateX(4px);
}

.sa-hero__arrow i {
  color: var(--sa-gold);
}

.sa-essentials {
  background: #fff;
  font-family: var(--sa-font-body);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* faint watermark rule, brand signature: a single hairline mandala arc behind the eyebrow */
.sa-essentials::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px dashed rgba(197, 162, 77, 0.35);
}

.sa-essentials__eyebrow {
  font-family: var(--sa-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sa-red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sa-essentials__eyebrow::before,
.sa-essentials__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sa-gold);
}

.sa-essentials__title {
  font-family: var(--sa-font-heading);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--sa-charcoal);
  text-align: center;
  margin-bottom: 8px;
}

.sa-essentials__sub {
  text-align: center;
  color: #6b6258;
  font-weight: 300;
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 64px;
}

/* ---------- Item ---------- */
.sa-item {
  text-align: center;
  padding: 20px 10px;
}

.sa-item__badge {
  --ring: var(--sa-gold);
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* sunburst rays, built from conic-gradient so no extra markup is needed */
.sa-item__rays {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    var(--ring) 0deg 4deg,
    transparent 4deg 18deg
  );
  -webkit-mask: radial-gradient(circle, transparent 46%, #000 47%, #000 100%);
  mask: radial-gradient(circle, transparent 46%, #000 47%, #000 100%);
  opacity: 0.5;
  transition:
    transform 0.8s var(--sa-ease),
    opacity 0.4s var(--sa-ease);
}

.sa-item:hover .sa-item__rays {
  transform: rotate(28deg);
  opacity: 0.9;
}

.sa-item__icon-circle {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--sa-white);
  border: 1px solid rgba(197, 162, 77, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -14px rgba(126, 13, 20, 0.25);
  transition:
    transform 0.4s var(--sa-ease),
    box-shadow 0.4s var(--sa-ease);
}

.sa-item:hover .sa-item__icon-circle {
  transform: translateY(0px);
  box-shadow: 0 18px 34px -14px rgba(181, 18, 27, 0.3);
}

.sa-item__icon-circle i {
  font-size: 30px;
  color: var(--sa-red);
}

.sa-item__title {
  font-family: var(--sa-font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--sa-charcoal);
  margin-bottom: 10px;
}

.sa-item__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #7a7168;
  max-width: 240px;
  margin: 0 auto;
}

/* ---------- Highlight card (center) ---------- */
.sa-highlight {
  background: linear-gradient(
    155deg,
    var(--sa-red) 0%,
    var(--sa-red-deep) 100%
  );
  border-radius: 18px;
  padding: 46px 30px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 30px 50px -22px rgba(126, 13, 20, 0.45);
}

/* thin gold keyline, the section's signature device */
.sa-highlight::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(230, 205, 142, 0.35);
  border-radius: 12px;
  pointer-events: none;
}

.sa-highlight .sa-item__rays {
  --ring: var(--sa-gold-light);
  opacity: 0.55;
}
.sa-highlight .sa-item__icon-circle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 205, 142, 0.5);
  backdrop-filter: blur(2px);
}
.sa-highlight .sa-item__icon-circle i {
  color: var(--sa-gold-light);
}

.sa-highlight .sa-item__title {
  color: var(--sa-white);
}
.sa-highlight .sa-item__desc {
  color: rgba(255, 255, 255, 0.78);
  max-width: 260px;
}

.sa-pooja {
  background: var(--sa-cream);
  font-family: var(--sa-font-body);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

/* --- corner artwork, same asset mirrored top-left / bottom-right --- */
.sa-pooja__corner {
  position: absolute;
  width: 500px;
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.sa-pooja__corner--tl {
  top: 40px;
  left: -50px;
}
.sa-pooja__corner--br {
  bottom: -40px;
  right: -50px;
  /* transform: rotate(180deg); */
}

@media (max-width: 767.98px) {
  .sa-pooja__corner {
    width: 170px;
  }
  .sa-pooja__corner--tl {
    top: -20px;
    left: -40px;
  }
  .sa-pooja__corner--br {
    bottom: -20px;
    right: -40px;
  }
}

.sa-pooja .container {
  position: relative;
  z-index: 1;
}

/* ---------- Header ---------- */
.sa-pooja__eyebrow {
  display: block;
  text-align: center;
  font-family: var(--sa-font-script);
  font-size: 42px;
  color: var(--sa-red);
  line-height: 1;
  margin-bottom: 2px;
}

.sa-pooja__title {
  font-family: var(--sa-font-heading);
  font-weight: 600;
  font-size: clamp(30px, 4.2vw, 46px);
  color: var(--sa-charcoal);
  text-align: center;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.sa-pooja__sub {
  text-align: center;
  color: #7a7168;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 64px;
}

/* ---------- Product card ---------- */
.sa-product {
  position: relative;
  height: 100%;
}

.sa-product__frame {
  position: relative;
  background: var(--sa-gray);
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 18px;
  transition: box-shadow 0.4s var(--sa-ease);
}

.sa-product:hover .sa-product__frame {
  box-shadow: 0 24px 40px -22px rgba(126, 13, 20, 0.28);
}

.sa-product__frame i {
  font-size: 56px;
  color: var(--sa-red);
  opacity: 0.85;
  transition:
    transform 0.5s var(--sa-ease),
    opacity 0.4s var(--sa-ease);
}

.sa-product:hover .sa-product__frame i {
  transform: scale(1.08) rotate(-4deg);
  opacity: 0.35;
}

.sa-product__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--sa-charcoal);
  color: var(--sa-gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: var(--sa-radius-pill);
  z-index: 2;
}

/* darken-veil + quote button revealed on image hover */
.sa-product__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(36, 28, 21, 0) 40%,
    rgba(36, 28, 21, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.4s var(--sa-ease);
  z-index: 1;
}
.sa-product:hover .sa-product__veil {
  opacity: 1;
}

.sa-product__quote {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 14px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sa-white);
  color: var(--sa-red);
  font-family: var(--sa-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--sa-radius-pill);
  border: none;
  white-space: nowrap;
  opacity: 0;
  transition:
    opacity 0.35s var(--sa-ease),
    transform 0.35s var(--sa-ease),
    background 0.3s var(--sa-ease),
    color 0.3s var(--sa-ease);
  z-index: 2;
  cursor: pointer;
}

.sa-product__quote i {
  font-size: 11px !important;
  color: inherit !important;
  opacity: 1 !important;
  transform: none !important;
}

.sa-product:hover .sa-product__quote {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sa-product__quote:hover {
  background: var(--sa-red);
  color: var(--sa-white);
}

.sa-product__category {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sa-gold);
  margin-bottom: 6px;
}

.sa-product__title {
  text-align: center;
  font-family: var(--sa-font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sa-charcoal);
  line-height: 1.5;
}

.sa-product__title:hover {
  color: var(--sa-red);
}

/* thin gold underline reveal, ties back to brand keyline motif */
.sa-product__title span {
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
}
.sa-product__title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--sa-gold);
  transition:
    width 0.35s var(--sa-ease),
    left 0.35s var(--sa-ease);
}
.sa-product:hover .sa-product__title span::after {
  width: 60%;
  left: 20%;
}

.sa-cat-section {
  padding: 70px 0;
  overflow: hidden;
}

/* ---------- Left column ---------- */
.sa-cat-eyebrow {
  font-family: var(--sa-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--sa-red);
  margin-bottom: 10px;
}

.sa-cat-title {
  font-family: var(--sa-font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--sa-charcoal);
  margin-bottom: 35px;
  line-height: 1.2;
}

.sa-cat-track {
  margin: 0 -5px 30px;
}

.sa-cat-track .owl-stage-outer {
  padding: 4px 2px;
}

.sa-cat-card {
  background-color: var(--sa-gray);
  border-radius: 10px;
  padding: 30px 15px 24px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition:
    transform 0.35s var(--sa-ease),
    box-shadow 0.35s var(--sa-ease);
  margin: 0 5px;
}

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

.sa-cat-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--sa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.sa-cat-card__icon i {
  font-size: 26px;
  color: var(--sa-red);
}

.sa-cat-card__label {
  font-family: var(--sa-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--sa-charcoal);
  text-transform: uppercase;
  margin: 0;
}

.sa-cat-nav {
  display: flex;
  gap: 14px;
}

.sa-cat-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--sa-gold-light);
  background-color: var(--sa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sa-red);
  cursor: pointer;
  transition:
    background-color 0.3s var(--sa-ease),
    color 0.3s var(--sa-ease);
}

.sa-cat-nav__btn:hover {
  background-color: var(--sa-red);
  color: var(--sa-white);
}

/* ---------- Right column: banner ---------- */
.sa-cat-banner {
  position: relative;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(
    155deg,
    var(--sa-red) 0%,
    var(--sa-red-deep) 100%
  );
  border-radius: 14px;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.sa-cat-banner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(230, 205, 142, 0.35);
  border-radius: 8px;
  pointer-events: none;
}

.sa-cat-banner__om {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: var(--sa-font-heading);
  font-size: 260px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.sa-cat-banner__script {
  font-family: var(--sa-font-script);
  font-size: 40px;
  color: var(--sa-gold-light);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.sa-cat-banner__title {
  font-family: var(--sa-font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--sa-white);
  line-height: 1.3;
  max-width: 420px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.sa-cat-banner__text {
  font-family: var(--sa-font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 380px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.sa-cat-banner__btn {
  font-family: var(--sa-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--sa-charcoal);
  background-color: var(--sa-gold);
  border: none;
  border-radius: var(--sa-radius-pill);
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition:
    background-color 0.3s var(--sa-ease),
    transform 0.3s var(--sa-ease);
}

.sa-cat-banner__btn:hover {
  background-color: var(--sa-gold-light);
  color: var(--sa-charcoal);
  transform: translateY(-2px);
}

.sa-cat-banner__btn i {
  font-size: 12px;
  transition: transform 0.3s var(--sa-ease);
}

.sa-cat-banner__btn:hover i {
  transform: translateX(3px);
}

/* ============ Static wrapper (its own fields — eyebrow / title / script line) ============ */
.sa-about {
  position: relative;
  padding: 90px 0;
  background-color: var(--sa-cream);
  overflow: hidden;
}

.sa-about__bg-om {
  position: absolute;
  top: -60px;
  left: -40px;
  font-family: var(--sa-font-heading);
  font-size: 320px;
  line-height: 1;
  color: var(--sa-gold);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.sa-about__bg-ring {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid var(--sa-gold);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.sa-about__bg-ring::before {
  content: "";
  position: absolute;
  inset: 35px;
  border: 1px solid var(--sa-gold);
  border-radius: 50%;
}

.sa-about__bg-dots {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(var(--sa-gold) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.sa-about__inner {
  position: relative;
  z-index: 1;
}

.sa-about__eyebrow {
  font-family: var(--sa-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--sa-red);
  margin-bottom: 10px;
}

.sa-about__title {
  font-family: var(--sa-font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--sa-charcoal);
  margin-bottom: 12px;
  line-height: 1.25;
}

.sa-about__script {
  font-family: var(--sa-font-script);
  font-size: 30px;
  color: var(--sa-gold);
  margin-bottom: 10px;
}

/* =====================================================================
     DYNAMIC CONTENT BLOCK
     Everything below is scoped to ONE parent class: .sa-about-content
     No classes are assumed on the children — only plain tags:
     p, img, figure/figcaption, strong, em, a, ul, li.
     This is exactly what a WYSIWYG / DB-driven rich-text field outputs.
     ===================================================================== */

.sa-about-content {
  margin-top: 30px;
}

/* Clearfix — so floated images don't bleed into whatever follows */
.sa-about-content::after {
  content: "";
  display: table;
  clear: both;
}

.sa-about-content p {
  font-family: var(--sa-font-body);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--sa-dark);
  margin: 0 0 18px;
  text-align: justify;
}

.sa-about-content strong,
.sa-about-content b {
  font-weight: 600;
  color: var(--sa-charcoal);
}

.sa-about-content em,
.sa-about-content i {
  /* font-family: var(--sa-font-script); */
  font-style: normal;
  font-size: 1.3em;
  color: var(--sa-gold);
}

.sa-about-content a {
  color: var(--sa-red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s var(--sa-ease);
}

.sa-about-content a:hover {
  color: var(--sa-red-deep);
}

/* ---- Images: float right by default, alternate ones float left ----
     Works on a bare <img> OR a CMS-wrapped <figure><img><figcaption> —
     whichever tag comes back from the database, the float rule targets
     the outermost of the two so spacing never doubles up. */

.sa-about-content img,
.sa-about-content figure {
  float: right;
  width: 400px;
  max-width: 45%;
  margin: 6px 0 24px 34px;
}

.sa-about-content img:nth-of-type(even),
.sa-about-content figure:nth-of-type(even) {
  float: left;
  margin: 24px 34px 24px 0;
}

.sa-about-content figure img {
  /* reset — the <figure> now owns the float + spacing */
  float: none;
  width: 100%;
  max-width: none;
  margin: 0;
}

.sa-about-content img,
.sa-about-content figure img {
  display: block;
  height: auto;
  border: 10px solid var(--sa-white);
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(34, 34, 34, 0.12);
  outline: 1px solid var(--sa-gold-light);
  outline-offset: -1px;
}

.sa-about-content figcaption {
  font-family: var(--sa-font-script);
  font-size: 22px;
  color: var(--sa-red);
  text-align: center;
  margin-top: 10px;
}

/* ---- Feature / trust list: plain <ul><li>, no per-item classes ---- */

.sa-about-content ul {
  clear: both;
  list-style: none;
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  gap: 26px;
  /* margin: 44px 0 0; */
  padding: 34px 0 0;
  border-top: 1px solid rgba(200, 162, 77, 0.3);
}

.sa-about-content li {
  position: relative;
  padding-left: 34px;
  font-family: var(--sa-font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: #5a5a5a;
}

/* Decorative marker instead of a per-item icon class */
.sa-about-content li::before {
  content: "\f6e3"; /* fa-solid gopuram/temple-ish glyph; falls back to a dot if the font hasn't loaded */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 13px;
  color: var(--sa-red);
}

.sa-about-content li strong {
  display: block;
  font-family: var(--sa-font-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--sa-charcoal);
  margin-bottom: 4px;
}

/* ---- Feature strip (clears the floats) ---- */
.sa-about__features {
  clear: both;
  margin-top: 45px;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 162, 77, 0.3);
}

.sa-about__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sa-about__feature-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--sa-white);
  border: 1px solid var(--sa-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-about__feature-icon i {
  font-size: 18px;
  color: var(--sa-red);
}

.sa-about__feature-label {
  font-family: var(--sa-font-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--sa-charcoal);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sa-about__feature-sub {
  font-family: var(--sa-font-body);
  font-size: 13px;
  font-weight: 300;
  color: #5a5a5a;
  line-height: 1.5;
}

/* ============ CTA Banner ============ */
.sa-cta {
  position: relative;
  /* min-height: 640px; */
  display: flex;
  align-items: center;
  padding: 100px var(--sa-container-pad);
  /* overflow: hidden; */
  isolation: isolate;

  /* Fixed background — the Ganesha illustration */
  background-image: url("../image/img/cta.png");
  background-size: cover;
  /* background-position: left center; */
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
}

.sa-cta .container {
  max-width: 1000px;
  margin: auto;
}

/* The artwork sits on the left — this scrim only builds up on the
     right so the illustration stays fully visible and the text gets
     a clean, readable surface. Colors pulled from the parchment tones
     in the image itself so the seam is invisible. */
.sa-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250, 247, 242, 0) 0%,
    rgba(250, 247, 242, 0.35) 38%,
    rgb(250 247 242 / 61%) 58%,
    rgb(250 247 242 / 0%) 100%
  );
  z-index: 0;
}

/* Floating marigold/ember specks drifting upward on the text side only */
.sa-cta__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.sa-cta__particle {
  position: absolute;
  bottom: -30px;
  font-size: 12px;
  color: var(--sa-gold);
  opacity: 0;
  animation-name: saParticleRise;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

@keyframes saParticleRise {
  0% {
    transform: translateY(0) translateX(0) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  50% {
    transform: translateY(-220px) translateX(16px) scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-440px) translateX(-12px) scale(0.5);
    opacity: 0;
  }
}

.sa-cta__row {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.sa-cta__inner {
  max-width: 480px;
  text-align: center;
}

.sa-cta__script {
  font-family: var(--sa-font-script);
  font-size: 36px;
  color: var(--sa-red);
  margin-bottom: 4px;
  opacity: 0;
  animation: saFadeUp 0.9s var(--sa-ease) 0.1s forwards;
}

.sa-cta__title {
  font-family: var(--sa-font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--sa-charcoal);
  margin-bottom: 18px;
  opacity: 0;
  animation: saFadeUp 0.9s var(--sa-ease) 0.25s forwards;
}

.sa-cta__title span {
  background: linear-gradient(
    100deg,
    var(--sa-red-deep) 0%,
    var(--sa-red) 25%,
    var(--sa-gold) 50%,
    var(--sa-red) 75%,
    var(--sa-red-deep) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: saShimmer 6s linear 1.2s infinite;
}

@keyframes saShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: -250% center;
  }
}

.sa-cta__text {
  font-family: var(--sa-font-body);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a4139;
  margin: 0 0 36px;
  opacity: 0;
  animation: saFadeUp 0.9s var(--sa-ease) 0.4s forwards;
}

@keyframes saFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Solid CTA buttons, animated ---- */
.sa-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  animation: saFadeUp 0.9s var(--sa-ease) 0.55s forwards;
}

.sa-cta__btn {
  position: relative;
  font-family: var(--sa-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  border-radius: var(--sa-radius-pill);
  padding: 15px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  overflow: hidden;
  transition:
    transform 0.3s var(--sa-ease),
    border-color 0.3s var(--sa-ease),
    background-color 0.3s var(--sa-ease),
    color 0.3s var(--sa-ease);
}

.sa-cta__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s var(--sa-ease);
}

.sa-cta__btn:hover::before {
  left: 130%;
}

.sa-cta__btn i {
  font-size: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--sa-ease);
}

.sa-cta__btn span {
  position: relative;
  z-index: 1;
}

.sa-cta__btn:hover i {
  transform: translateX(3px);
}

/* Primary — solid red, gentle idle glow pulse */
.sa-cta__btn--red {
  background-color: var(--sa-red);
  color: var(--sa-white);
  border-color: var(--sa-red);
  animation: saGlowPulse 2.6s ease-in-out infinite;
}

@keyframes saGlowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(181, 18, 27, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(181, 18, 27, 0);
  }
}

.sa-cta__btn--red:hover {
  background-color: var(--sa-red-deep);
  border-color: var(--sa-red-deep);
  color: var(--sa-white);
  transform: translateY(-3px);
}

/* Secondary — solid gold outline-on-charcoal */
.sa-cta__btn--outline {
  background-color: transparent;
  color: var(--sa-charcoal);
  border-color: var(--sa-charcoal);
}

.sa-cta__btn--outline:hover {
  background-color: var(--sa-charcoal);
  color: var(--sa-white);
  border-color: var(--sa-charcoal);
  transform: translateY(-3px);
}

/* ============ Section shell ============ */
.sa-why {
  position: relative;
  padding: 90px 0;
  background-color: var(--sa-cream);
  overflow: hidden;
}

.sa-why__bg-dots {
  position: absolute;
  top: 60px;
  left: -30px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(var(--sa-gold) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.sa-why__bg-om {
  position: absolute;
  bottom: -90px;
  right: -40px;
  font-family: var(--sa-font-heading);
  font-size: 300px;
  line-height: 1;
  color: var(--sa-gold);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.sa-why__inner {
  position: relative;
  z-index: 1;
}

/* ============ LEFT: image + floating elements ============ */
.sa-why__media {
  position: relative;
  max-width: 420px;
  margin: 0 auto 50px;
}

.sa-why__ring {
  position: absolute;
  inset: -22px;
  border: 1px dashed var(--sa-gold);
  border-radius: 50%;
  opacity: 0.5;
  animation: saWhyRingSpin 40s linear infinite;
}

@keyframes saWhyRingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.sa-why__frame {
  position: relative;
  border-radius: 50%;
  padding: 10px;
  background-color: var(--sa-white);
  box-shadow: 0 25px 50px rgba(34, 34, 34, 0.14);
}

.sa-why__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--sa-gold-light);
}

/* Floating info badge over the image */
.sa-why__badge {
  position: absolute;
  top: 18px;
  right: -18px;
  background-color: var(--sa-charcoal);
  color: var(--sa-white);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(36, 28, 21, 0.35);
  animation: saWhyFloat 5s ease-in-out infinite;
  z-index: 3;
}

.sa-why__badge-num {
  font-family: var(--sa-font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--sa-gold-light);
  line-height: 1;
}

.sa-why__badge-num sup {
  font-size: 14px;
  top: -0.6em;
}

.sa-why__badge-label {
  font-family: var(--sa-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
  white-space: nowrap;
}

/* Small decorative floating glyphs orbiting the image */
.sa-why__glyph {
  position: absolute;
  font-family: var(--sa-font-heading);
  color: var(--sa-red);
  opacity: 0.8;
  z-index: 3;
  animation: saWhyFloat 6s ease-in-out infinite;
}

.sa-why__glyph--om {
  bottom: 8px;
  left: -14px;
  font-size: 30px;
  animation-delay: 0.6s;
}

.sa-why__glyph--diya {
  top: 60%;
  right: -26px;
  font-size: 20px;
  color: var(--sa-gold);
  animation-delay: 1.4s;
}

@keyframes saWhyFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* CTA + stats under the image */
.sa-why__cta {
  margin-top: 40px;
  text-align: center;
}

.sa-why__btn {
  font-family: var(--sa-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--sa-white);
  background-color: var(--sa-red);
  border: none;
  border-radius: var(--sa-radius-pill);
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition:
    background-color 0.3s var(--sa-ease),
    transform 0.3s var(--sa-ease);
}

.sa-why__btn:hover {
  background-color: var(--sa-red-deep);
  color: var(--sa-white);
  transform: translateY(-2px);
}

.sa-why__btn i {
  font-size: 12px;
  transition: transform 0.3s var(--sa-ease);
}

.sa-why__btn:hover i {
  transform: translateX(3px);
}

.sa-why__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 34px;
}

.sa-why__stat {
  padding: 0 22px;
  text-align: center;
  border-right: 1px solid rgba(200, 162, 77, 0.35);
}

.sa-why__stat:last-child {
  border-right: none;
}

.sa-why__stat-num {
  font-family: var(--sa-font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--sa-charcoal);
  line-height: 1;
}

.sa-why__stat-num span {
  color: var(--sa-red);
}

.sa-why__stat-label {
  font-family: var(--sa-font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #6a6a6a;
  margin-top: 4px;
}

/* ============ RIGHT: copy + feature carousel ============ */
.sa-why__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sa-why__eyebrow-line {
  width: 30px;
  height: 2px;
  background-color: var(--sa-red);
}

.sa-why__eyebrow i {
  font-size: 12px;
  color: var(--sa-gold);
}

.sa-why__eyebrow span {
  font-family: var(--sa-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--sa-red);
}

.sa-why__title {
  font-family: var(--sa-font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--sa-charcoal);
  line-height: 1.3;
  margin-bottom: 16px;
}

.sa-why__title em {
  font-style: normal;
  color: var(--sa-red);
}

.sa-why__desc {
  font-family: var(--sa-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  color: #4a4a4a;
  max-width: 540px;
  margin-bottom: 36px;
}

.sa-why__track {
  margin: 0 -12px;
}

.sa-why__track .owl-stage-outer {
  padding: 6px 4px 26px;
}

.sa-why__card {
  margin: 0 12px;
  background-color: var(--sa-white);
  border-radius: 10px;
  padding: 28px 24px;
  height: 100%;
  border-top: 3px solid var(--sa-gold);
  box-shadow: 0 12px 30px rgba(34, 34, 34, 0.06);
  transition:
    transform 0.35s var(--sa-ease),
    box-shadow 0.35s var(--sa-ease);
}

.sa-why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(34, 34, 34, 0.1);
}

.sa-why__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--sa-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.sa-why__card-icon i {
  font-size: 20px;
  color: var(--sa-red);
}

.sa-why__card-title {
  font-family: var(--sa-font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--sa-charcoal);
  margin-bottom: 8px;
}

.sa-why__card-text {
  font-family: var(--sa-font-body);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.7;
  color: #666;
}

.sa-why__nav {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.sa-why__nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--sa-gold-light);
  background-color: var(--sa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sa-red);
  cursor: pointer;
  transition:
    background-color 0.3s var(--sa-ease),
    color 0.3s var(--sa-ease);
}

.sa-why__nav-btn:hover {
  background-color: var(--sa-red);
  color: var(--sa-white);
}

/* ============ Responsive ============ */
@media (max-width: 991.98px) {
  .sa-why {
    padding: 65px 0;
  }
  .sa-why__title {
    font-size: 27px;
  }
}

@media (max-width: 575.98px) {
  .sa-why__media {
    max-width: 300px;
  }
  .sa-why__badge {
    padding: 10px 14px;
    right: -10px;
  }
  .sa-why__badge-num {
    font-size: 20px;
  }
  .sa-why__stats {
    flex-wrap: wrap;
  }
  .sa-why__stat {
    padding: 0 14px;
    margin-bottom: 12px;
  }
  .sa-why__title {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sa-why__ring,
  .sa-why__badge,
  .sa-why__glyph {
    animation: none !important;
  }
}

/* ============ SECTION SHELL ============ */
.abb-tf {
  background: var(--abb-bg-soft);
  padding: 100px 0;
}
.abb-tf__inner {
  padding: 0 10px;
}
.abb-tf__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.abb-tf__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.abb-tf__badge span {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: var(--sa-red);
  display: inline-block;
}
.abb-tf__badge p {
  margin: 0;
  color: var(--sa-red-deep);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.abb-tf__title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.25;
  color: var(--abb-navy-dark);
  margin: 0 0 14px;
}
.abb-tf__title span {
  color: var(--sa-red);
}
.abb-tf__subtitle {
  margin: 0;
  color: var(--abb-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.abb-tf__col-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
}
.abb-tf__col-title i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--abb-navy-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.abb-tf__col-title p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--abb-navy-dark);
}

/* ============ TESTIMONIALS: vertical auto-scrolling marquee ============ */
.abb-testi-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.abb-testi {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  min-height: 520px;
}
.abb-testi__viewport {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.abb-testi__track {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: abbTestiScroll linear infinite;
  animation-duration: 22s;
}
.abb-testi.is-paused .abb-testi__track {
  animation-play-state: paused;
}
@keyframes abbTestiScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.abb-testi-slide {
  display: flex;
  width: 100%;
  flex-shrink: 0;
  background: #fff;
  border-radius: 18px;
  /* box-shadow: 0 16px 40px rgba(21, 26, 82, 0.1); */
  padding: 28px 30px 24px;
  flex-direction: column;
  justify-content: center;
}

.abb-testi-slide__quote {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(244, 113, 31, 0.12);
  color: var(--sa-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 14px;
}
.abb-testi-slide__stars {
  color: var(--sa-red);
  font-size: 0.8rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.abb-testi-slide__text {
  margin: 0 0 16px;
  color: var(--abb-ink);
  font-size: 0.94rem;
  line-height: 1.6;
}
.abb-testi-slide__person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--abb-line);
}
.abb-testi-slide__person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.abb-testi-slide__name {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--abb-navy-dark);
}
.abb-testi-slide__role {
  margin: 0;
  color: var(--abb-muted);
  font-size: 0.78rem;
}

/* ============ FAQ ACCORDION ============ */
.abb-faq {
  height: 100%;
}
.abb-faq__item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--abb-line);
  margin-bottom: 14px;
  overflow: hidden;
}
.abb-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--abb-navy-dark);
}
.abb-faq__q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--abb-bg-soft);
  color: var(--sa-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}
.abb-faq__q[aria-expanded="true"] .abb-faq__q-icon {
  transform: rotate(45deg);
  background: var(--sa-red);
  color: #fff;
}
.abb-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.abb-faq__a-inner {
  padding: 0 22px 20px;
  color: var(--abb-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.abb-faq__item.abb-open .abb-faq__a {
  max-height: 260px;
}

/* ============ Section shell ============ */
.sa-contact {
  position: relative;
  padding: 100px 0;
  background-color: var(--sa-charcoal);
  overflow: hidden;
}

.sa-contact__bg-dots {
  position: absolute;
  top: 50px;
  right: 6%;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(var(--sa-gold) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.sa-contact__bg-om {
  position: absolute;
  top: -70px;
  left: -60px;
  font-family: var(--sa-font-heading);
  font-size: 320px;
  line-height: 1;
  color: var(--sa-gold);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.sa-contact__bg-ring {
  position: absolute;
  bottom: -160px;
  right: -120px;
  width: 380px;
  height: 380px;
  border: 1px dashed var(--sa-gold);
  border-radius: 50%;
  opacity: 0.12;
  z-index: 0;
  animation: saContactSpin 70s linear infinite;
}

@keyframes saContactSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.sa-contact__inner {
  position: relative;
  z-index: 1;
}

/* ---- Header ---- */
.sa-contact__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 55px;
}

.sa-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sa-contact__eyebrow-line {
  width: 26px;
  height: 2px;
  background-color: var(--sa-gold);
}

.sa-contact__eyebrow span {
  font-family: var(--sa-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--sa-gold-light);
}

.sa-contact__title {
  font-family: var(--sa-font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--sa-white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.sa-contact__title em {
  font-style: normal;
  color: var(--sa-gold-light);
}

.sa-contact__subtext {
  font-family: var(--sa-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

/* ============ Floating card ============ */
.sa-contact__card {
  position: relative;
  background-color: var(--sa-white);
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

/* ---- Form panel ---- */
.sa-contact__form-panel {
  padding: 55px 50px;
}

.sa-contact__form-kicker {
  font-family: var(--sa-font-script);
  font-size: 28px;
  color: var(--sa-red);
  margin-bottom: 2px;
}

.sa-contact__form-title {
  font-family: var(--sa-font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--sa-charcoal);
  margin-bottom: 30px;
}

.sa-field {
  position: relative;
  margin-bottom: 26px;
}

.sa-field label {
  display: block;
  font-family: var(--sa-font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sa-charcoal);
  margin-bottom: 8px;
}

.sa-field__control-wrap {
  position: relative;
}

.sa-field__control-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--sa-gold);
  pointer-events: none;
  transition: color 0.3s var(--sa-ease);
}

.sa-field input,
.sa-field select,
.sa-field textarea {
  width: 100%;
  font-family: var(--sa-font-body);
  font-size: 14px;
  color: var(--sa-charcoal);
  background-color: var(--sa-gray);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 13px 16px 13px 44px;
  transition:
    border-color 0.3s var(--sa-ease),
    background-color 0.3s var(--sa-ease);
}

.sa-field textarea {
  padding-top: 13px;
  resize: none;
  min-height: 110px;
}

.sa-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c8a24d' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}

.sa-field input:focus,
.sa-field select:focus,
.sa-field textarea:focus {
  outline: none;
  background-color: var(--sa-white);
  border-color: var(--sa-gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 77, 0.15);
}

.sa-field input:focus + i,
.sa-field select:focus ~ i,
.sa-field textarea:focus + i,
.sa-field__control-wrap:focus-within i {
  color: var(--sa-red);
}

.sa-field--textarea i {
  top: 20px;
  transform: none;
}

.sa-contact__submit {
  width: 100%;
  font-family: var(--sa-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--sa-white);
  background-color: var(--sa-red);
  border: none;
  border-radius: var(--sa-radius-pill);
  padding: 16px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition:
    background-color 0.3s var(--sa-ease),
    transform 0.3s var(--sa-ease);
}

.sa-contact__submit:hover {
  background-color: var(--sa-red-deep);
  transform: translateY(-2px);
}

.sa-contact__submit i {
  font-size: 12px;
  transition: transform 0.3s var(--sa-ease);
}

.sa-contact__submit:hover i {
  transform: translateX(3px);
}

.sa-contact__note {
  font-family: var(--sa-font-body);
  font-size: 12px;
  color: #8a8a8a;
  margin-top: 14px;
  text-align: center;
}

/* ---- Details panel ---- */
.sa-contact__details-panel {
  position: relative;
  background: linear-gradient(
    165deg,
    var(--sa-red) 0%,
    var(--sa-red-deep) 100%
  );
  color: var(--sa-white);
  padding: 55px 42px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sa-contact__details-panel::before {
  content: "ॐ";
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-family: var(--sa-font-heading);
  font-size: 200px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.sa-contact__details-title {
  font-family: var(--sa-font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.sa-contact__detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  position: relative;
  z-index: 1;
}

.sa-contact__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sa-contact__detail-item:first-child {
  padding-top: 0;
}

.sa-contact__detail-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-contact__detail-icon i {
  font-size: 15px;
  color: var(--sa-gold-light);
}

.sa-contact__detail-label {
  font-family: var(--sa-font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sa-gold-light);
  margin-bottom: 3px;
}

.sa-contact__detail-value {
  font-family: var(--sa-font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

/* ---- Map ---- */
.sa-contact__map {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  min-height: 250px;
}

.sa-contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
  filter: grayscale(0.3) sepia(0.25) hue-rotate(-10deg) saturate(1.1);
}


  /* ============ Footer shell ============ */
  .sa-footer {
    position: relative;
    background-color: var(--sa-charcoal);
    padding-top: 40px;
    overflow: hidden;
  }

  /* Temple-spire silhouette running along the very top edge —
     a small brand-specific touch instead of a generic straight line */
  .sa-footer__skyline {
    height: 34px;
    width: 100%;
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: 90px 34px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='34' viewBox='0 0 90 34'><path d='M0 34 L0 20 L10 20 L10 12 L16 12 L16 6 L20 6 L20 2 L25 2 L25 6 L29 6 L29 12 L35 12 L35 20 L45 20 L45 12 L51 12 L51 6 L55 6 L55 2 L60 2 L60 6 L64 6 L64 12 L70 12 L70 20 L80 20 L80 20 L90 20 L90 34 Z' fill='%23c8a24d' fill-opacity='0.9'/></svg>");
  }

  .sa-footer__bg-om {
    position: absolute;
    bottom: -80px;
    right: -50px;
    font-family: var(--sa-font-heading);
    font-size: 320px;
    line-height: 1;
    color: var(--sa-gold);
    opacity: 0.045;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  .sa-footer__bg-dots {
    position: absolute;
    top: 60px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--sa-gold) 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
  }

  .sa-footer__main {
    position: relative;
    z-index: 1;
    padding: 60px 0 50px;
  }

  /* ---- Brand column ---- */
  .sa-footer__logo {
    font-family: var(--sa-font-script);
    font-size: 40px;
    color: var(--sa-gold-light);
    line-height: 1;
    margin-bottom: 14px;
  }

  .sa-footer__about {
    font-family: var(--sa-font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
    margin-bottom: 26px;
  }

  .sa-footer__socials {
    display: flex;
    gap: 12px;
  }

  .sa-footer__social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(230, 205, 142, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sa-gold-light);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s var(--sa-ease), color 0.3s var(--sa-ease),
      transform 0.3s var(--sa-ease), border-color 0.3s var(--sa-ease);
  }

  .sa-footer__social:hover {
    background-color: var(--sa-gold);
    border-color: var(--sa-gold);
    color: var(--sa-charcoal);
    transform: translateY(-3px);
  }

  /* ---- Link columns ---- */
  .sa-footer__col-title {
    font-family: var(--sa-font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--sa-white);
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
  }

  .sa-footer__col-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--sa-red);
  }

  .sa-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sa-footer__links li {
    margin-bottom: 13px;
  }

  .sa-footer__links a {
    font-family: var(--sa-font-body);
    font-weight: 300;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s var(--sa-ease), padding-left 0.3s var(--sa-ease);
  }

  .sa-footer__links a i {
    font-size: 9px;
    color: var(--sa-gold);
    transition: transform 0.3s var(--sa-ease);
  }

  .sa-footer__links a:hover {
    color: var(--sa-gold-light);
    padding-left: 4px;
  }

  .sa-footer__links a:hover i {
    transform: translateX(3px);
  }

  /* ---- Contact details column ---- */
  .sa-footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
  }

  .sa-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .sa-footer__contact-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(230, 205, 142, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sa-footer__contact-icon i {
    font-size: 13px;
    color: var(--sa-gold-light);
  }

  .sa-footer__contact-label {
    font-family: var(--sa-font-body);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sa-gold-light);
    margin-bottom: 3px;
  }

  .sa-footer__contact-value {
    font-family: var(--sa-font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
  }

  .sa-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }

  .sa-footer__badge {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sa-footer__badge i {
    font-size: 13px;
    color: var(--sa-gold-light);
  }

  .sa-footer__badge span {
    font-family: var(--sa-font-body);
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.2px;
  }

  /* ---- Bottom bar ---- */
  .sa-footer__divider {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sa-footer__bottom {
    position: relative;
    z-index: 1;
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .sa-footer__copy {
    font-family: var(--sa-font-body);
    font-weight: 300;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
  }

  .sa-footer__copy strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
  }

  .sa-footer__legal {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    padding: 0;
    margin: 0;
  }

  .sa-footer__legal a {
    font-family: var(--sa-font-body);
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s var(--sa-ease);
  }

  .sa-footer__legal a:hover {
    color: var(--sa-gold-light);
  }

  /* ---- Back to top ---- */
  .sa-footer__top-btn {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--sa-gold);
    color: var(--sa-charcoal);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s var(--sa-ease), transform 0.35s var(--sa-ease),
      background-color 0.3s var(--sa-ease);
    z-index: 999;
    cursor: pointer;
  }

  .sa-footer__top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .sa-footer__top-btn:hover {
    background-color: var(--sa-gold-light);
  }


  /* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
    .wa-float {
      position: fixed;
      left: 24px;
      bottom: 28px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
    }

    /* Tooltip bubble above the button */
    .wa-tooltip {
      background: #fff;
      border-radius: 14px 14px 14px 4px;
      box-shadow: 0 8px 32px rgba(0,0,0,.14), 0 1px 4px rgba(0,0,0,.08);
      padding: 10px 14px;
      margin-bottom: 10px;
      max-width: 210px;
      position: relative;
      transform: translateY(6px) scale(.94);
      opacity: 0;
      pointer-events: none;
      transition: opacity .28s cubic-bezier(.22,1,.36,1),
                  transform .28s cubic-bezier(.22,1,.36,1);
      transform-origin: bottom left;
    }
    .wa-float:hover .wa-tooltip {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .wa-tip-name {
      font-size: .72rem;
      font-weight: 700;
      color: #111;
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 3px;
    }
    .wa-tip-name::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #25d366;
      flex-shrink: 0;
      animation: pulse-dot 1.8s ease infinite;
    }
    @keyframes pulse-dot {
      0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
      50%      { box-shadow: 0 0 0 5px rgba(37,211,102,0); }
    }
    .wa-tip-msg {
      font-size: .68rem;
      color: #555;
      line-height: 1.5;
    }
    /* Tiny tail on tooltip */
    .wa-tooltip::after {
      content: '';
      position: absolute;
      bottom: -8px; left: 18px;
      border: 5px solid transparent;
      border-top-color: #fff;
      filter: drop-shadow(0 2px 2px rgba(0,0,0,.06));
    }

    /* Main WA button */
    .wa-btn {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
      cursor: pointer;
      text-decoration: none;
    }

    /* Outer animated ring */
    .wa-ring {
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 2px solid rgba(37,211,102,.35);
      animation: wa-spin-ring 6s linear infinite;
      pointer-events: none;
    }
    .wa-ring::before {
      content: '';
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #25d366;
      box-shadow: 0 0 6px #25d366;
    }
    @keyframes wa-spin-ring {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Second pulse ring */
    .wa-pulse-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: rgba(37,211,102,.15);
      animation: wa-pulse 2.4s ease-out infinite;
      pointer-events: none;
    }
    @keyframes wa-pulse {
      0%   { transform: scale(1);   opacity: .8; }
      100% { transform: scale(1.9); opacity: 0;  }
    }

    /* Circle core */
    .wa-circle {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,.5),
                  0 2px 8px rgba(0,0,0,.15);
      transition: transform .28s cubic-bezier(.22,1,.36,1),
                  box-shadow .28s;
      position: relative;
      z-index: 2;
    }
    .wa-btn:hover .wa-circle {
      transform: scale(1.1) rotate(-8deg);
      box-shadow: 0 10px 36px rgba(37,211,102,.65),
                  0 4px 12px rgba(0,0,0,.2);
    }
    .wa-circle i {
      font-size: 1.55rem;
      color: #fff;
      filter: drop-shadow(0 1px 3px rgba(0,0,0,.2));
    }

    /* "Chat" label pill that slides out on hover */
    .wa-label-pill {
      background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 0 0 0 0;
      border-radius: 0 50px 50px 0;
      max-width: 0;
      overflow: hidden;
      white-space: nowrap;
      opacity: 0;
      margin-left: -10px;
      height: 40px;
      display: flex;
      align-items: center;
      transition: max-width .35s cubic-bezier(.22,1,.36,1),
                  opacity .28s,
                  padding .28s,
                  margin .28s;
      box-shadow: 0 4px 18px rgba(37,211,102,.35);
    }
    .wa-btn:hover .wa-label-pill {
      max-width: 130px;
      opacity: 1;
      padding: 0 16px 0 14px;
      margin-left: -8px;
    }

    /* Notification badge */
    .wa-badge {
      position: absolute;
      top: -3px; right: -3px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--sa-red);
      color: #fff;
      font-size: .55rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #fff;
      z-index: 3;
      animation: badge-bounce .6s .5s ease both;
    }
    @keyframes badge-bounce {
      0%,100% { transform: scale(1);    }
      50%      { transform: scale(1.25); }
    }

    @keyframes arrow-up {
      0%   { transform: translateY(0); opacity: 1; }
      45%  { transform: translateY(-6px); opacity: 0; }
      46%  { transform: translateY(6px); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }

    /* Tiny % label below */
    .gtt-pct {
      font-size: .58rem;
      font-weight: 700;
      color: var(--muted, #6b7a8d);
      letter-spacing: .06em;
      text-align: center;
      line-height: 1;
    }

    