/* ==========================================================================
   Palladium Mall - Premium design layer
   --------------------------------------------------------------------------
   Loaded AFTER css/style.css so it upgrades the base theme without needing
   the whole template to be rewritten. Everything here is scoped to the
   design tokens below, so the palette can be retuned in one place.
   ========================================================================== */

:root {
  /* --- brand ------------------------------------------------------------ */
  --pm-accent:        #ff6801;
  --pm-accent-deep:   #e35a00;
  --pm-accent-glow:   rgba(255, 104, 1, .28);
  --pm-accent-soft:   rgba(255, 104, 1, .10);

  /* --- neutrals (luxury: deep charcoal, not pure black) ----------------- */
  --pm-ink:           #14131a;
  --pm-ink-2:         #1c1b24;
  --pm-ink-3:         #26242f;
  --pm-line-dark:     rgba(255, 255, 255, .10);

  --pm-paper:         #ffffff;
  --pm-paper-2:       #faf9f8;
  --pm-paper-3:       #f2f0ee;
  --pm-line:          #e6e3df;

  --pm-text:          #14131a;
  --pm-text-soft:     #5f5c66;
  --pm-text-invert:   #ffffff;
  --pm-text-invert-s: rgba(255, 255, 255, .66);

  /* --- type -------------------------------------------------------------
     Two font sets exist on this site: the home page loads Poppins +
     Montserrat from Google, the inner pages ship local 'Montserrat Bold' /
     'SemiBold' / 'Regular' faces. Listing both means each page resolves to
     whichever it actually has, so the stack works everywhere.            */
  --pm-font-display: 'Montserrat Bold', 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --pm-font-medium:  'Montserrat SemiBold', 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --pm-font-body:    'Poppins', 'Montserrat Regular', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* --- rhythm ----------------------------------------------------------- */
  --pm-radius:     4px;
  --pm-radius-lg:  8px;
  --pm-shadow:     0 1px 2px rgba(20, 19, 26, .04), 0 8px 24px rgba(20, 19, 26, .06);
  --pm-shadow-lg:  0 24px 60px rgba(20, 19, 26, .14);
  --pm-ease:       cubic-bezier(.22, .61, .36, 1);
}

/* ==========================================================================
   1. Foundations
   ========================================================================== */

html { scroll-behavior: smooth; }

body {
  font-family: var(--pm-font-body);
  color: var(--pm-text);
  background: var(--pm-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Visible focus ring for keyboard users - the base theme removed it. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--pm-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

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

img { max-width: 100%; }

/* Respect a reduced-motion preference. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================================================
   2. Typography scale
   ========================================================================== */

.pm-display,
.au-page-title,
h1.au-page-title {
  font-family: var(--pm-font-display);
  font-size: clamp(2.1rem, 1.2rem + 3.6vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 .4em;
}

.pm-h2, .pm-title {
  font-family: var(--pm-font-display);
  font-size: clamp(1.7rem, 1.1rem + 2.2vw, 2.75rem);
  line-height: 1.14;
  letter-spacing: -.015em;
  color: var(--pm-text);
  margin: 0 0 .5em;
}

.pm-h3 {
  font-family: var(--pm-font-medium);
  font-size: clamp(1.15rem, .95rem + .8vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}

.pm-lead {
  font-size: clamp(1rem, .95rem + .25vw, 1.125rem);
  line-height: 1.8;
  color: var(--pm-text-soft);
  margin: 0;
}

.pm-body { font-size: .95rem; line-height: 1.8; color: var(--pm-text-soft); }

/* Eyebrow / kicker above a heading */
.pm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--pm-font-medium);
  font-size: .6875rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pm-accent);
  margin: 0 0 18px;
}
.pm-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}
.pm-head--center .pm-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}

/* ==========================================================================
   3. Section shells
   ========================================================================== */

.pm-section { padding: clamp(56px, 3vw + 42px, 120px) 0; position: relative; }
.pm-section--tight { padding: clamp(40px, 2vw + 30px, 80px) 0; }
.pm-section--paper { background: var(--pm-paper-2); }
.pm-section--muted { background: var(--pm-paper-3); }

/* Dark, "luxury" band */
.pm-section--dark {
  background: var(--pm-ink);
  color: var(--pm-text-invert);
}
.pm-section--dark .pm-title,
.pm-section--dark .pm-h3 { color: var(--pm-text-invert); }
.pm-section--dark .pm-lead,
.pm-section--dark .pm-body { color: var(--pm-text-invert-s); }

.pm-head { max-width: 720px; margin: 0 0 clamp(34px, 3vw, 58px); }
.pm-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.pm-head--center .pm-eyebrow { justify-content: center; }

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--pm-font-medium);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .4s var(--pm-ease), background .4s var(--pm-ease),
              border-color .4s var(--pm-ease), transform .4s var(--pm-ease),
              box-shadow .4s var(--pm-ease);
}
.pm-btn:hover { transform: translateY(-2px); text-decoration: none; }
.pm-btn:active { transform: translateY(0); }

.pm-btn--primary {
  background: var(--pm-accent);
  border-color: var(--pm-accent);
  color: #fff;
}
.pm-btn--primary:hover {
  background: var(--pm-accent-deep);
  border-color: var(--pm-accent-deep);
  color: #fff;
  box-shadow: 0 14px 30px var(--pm-accent-glow);
}

.pm-btn--ghost {
  background: transparent;
  border-color: var(--pm-line);
  color: var(--pm-text);
}
.pm-btn--ghost:hover {
  background: var(--pm-text);
  border-color: var(--pm-text);
  color: #fff;
}

.pm-btn--on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}
.pm-btn--on-dark:hover {
  background: #fff;
  border-color: #fff;
  color: var(--pm-ink);
}

/* ==========================================================================
   5. Cards & media
   ========================================================================== */

.pm-card {
  position: relative;
  height: 100%;
  background: var(--pm-paper);
  border: 1px solid var(--pm-line);
  border-radius: var(--pm-radius);
  overflow: hidden;
  transition: transform .45s var(--pm-ease), box-shadow .45s var(--pm-ease),
              border-color .45s var(--pm-ease);
}
.pm-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--pm-shadow-lg);
}
.pm-card__body { padding: clamp(20px, 2vw, 28px); }
.pm-card__title {
  font-family: var(--pm-font-medium);
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--pm-text);
  margin: 0 0 10px;
}
.pm-card__text { font-size: .9rem; line-height: 1.75; color: var(--pm-text-soft); margin: 0; }

/* Dark variant, for use inside .pm-section--dark */
.pm-section--dark .pm-card {
  background: var(--pm-ink-2);
  border-color: var(--pm-line-dark);
}
.pm-section--dark .pm-card:hover { box-shadow: 0 24px 60px rgba(0, 0, 0, .5); }
.pm-section--dark .pm-card__title { color: var(--pm-text-invert); }
.pm-section--dark .pm-card__text { color: var(--pm-text-invert-s); }

/* Media wells keep every tile the same shape */
.pm-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--pm-ink);
}
.pm-media--wide   { aspect-ratio: 16 / 9; }
.pm-media--photo  { aspect-ratio: 4 / 3; }
.pm-media--square { aspect-ratio: 1 / 1; }
.pm-media--tall   { aspect-ratio: 3 / 4; }
.pm-media > img,
.pm-media > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pm-media > img { transition: transform .8s var(--pm-ease); }
.pm-card:hover .pm-media > img,
.pm-media:hover > img { transform: scale(1.06); }

.pm-media__zoom {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(20, 19, 26, .62), rgba(20, 19, 26, .18));
  color: #fff;
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity .4s var(--pm-ease);
}
.pm-media:hover .pm-media__zoom { opacity: 1; }

/* Icon medallion for feature/stat cards */
.pm-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pm-accent-soft);
  color: var(--pm-accent);
  font-size: 1.35rem;
  margin-bottom: 22px;
  transition: background .4s var(--pm-ease), color .4s var(--pm-ease),
              transform .4s var(--pm-ease);
}
.pm-card:hover .pm-icon {
  background: var(--pm-accent);
  color: #fff;
  transform: rotate(-6deg);
}

/* Pill / chip */
.pm-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 40px;
  background: var(--pm-accent-soft);
  color: var(--pm-accent);
  font-family: var(--pm-font-medium);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pm-section--dark .pm-chip {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

/* Left-ruled sub-heading */
.pm-subhead {
  font-family: var(--pm-font-medium);
  font-size: 1.2rem;
  color: var(--pm-text);
  margin: 0 0 28px;
  padding-left: 15px;
  border-left: 3px solid var(--pm-accent);
  line-height: 1.35;
}
.pm-section--dark .pm-subhead { color: var(--pm-text-invert); }

/* ==========================================================================
   6. Stat counters
   ========================================================================== */

.pm-stat { text-align: center; padding: 12px; }
.pm-stat__num {
  font-family: var(--pm-font-display);
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem);
  line-height: 1;
  color: var(--pm-accent);
  margin: 0 0 8px;
  letter-spacing: -.02em;
}
.pm-stat__label {
  font-family: var(--pm-font-medium);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pm-text-soft);
  margin: 0;
}
.pm-section--dark .pm-stat__label { color: var(--pm-text-invert-s); }

/* ==========================================================================
   7. Forms
   ========================================================================== */

.common-form .form-group { position: relative; margin-bottom: 26px; }

.common-form input[type="text"],
.common-form input[type="email"],
.common-form input[type="tel"],
.common-form textarea,
.pm-input {
  width: 100%;
  padding: 15px 18px;
  background: var(--pm-paper);
  border: 1px solid var(--pm-line);
  border-radius: var(--pm-radius);
  font-family: var(--pm-font-body);
  font-size: .95rem;
  color: var(--pm-text);
  transition: border-color .3s var(--pm-ease), box-shadow .3s var(--pm-ease);
}
.common-form input:focus,
.common-form textarea:focus,
.pm-input:focus {
  border-color: var(--pm-accent);
  box-shadow: 0 0 0 3px var(--pm-accent-soft);
  outline: none;
}
.common-form textarea { min-height: 150px; resize: vertical; }

.common-form .submit,
.common-form input[type="submit"] {
  padding: 15px 40px;
  background: var(--pm-accent);
  border: 1px solid var(--pm-accent);
  border-radius: 2px;
  color: #fff;
  font-family: var(--pm-font-medium);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .4s var(--pm-ease), box-shadow .4s var(--pm-ease),
              transform .4s var(--pm-ease);
}
.common-form .submit:hover,
.common-form input[type="submit"]:hover {
  background: var(--pm-accent-deep);
  border-color: var(--pm-accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--pm-accent-glow);
}
.common-form .submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ==========================================================================
   8. Footer
   ========================================================================== */

footer {
  background: var(--pm-ink);
  color: var(--pm-text-invert-s);
  margin-top: 0 !important;
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(28px, 3vw, 52px);
  padding: clamp(52px, 5vw, 84px) 0 clamp(34px, 3vw, 52px);
}
.footer-section h3 {
  font-family: var(--pm-font-medium);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
  padding-bottom: 14px;
  position: relative;
}
.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--pm-accent);
}
.footer-section p,
.footer-section li { font-size: .9rem; line-height: 1.85; }
.footer-section p { margin: 0 0 10px; }
.footer-section i { color: var(--pm-accent); margin-right: 10px; width: 16px; }
.footer-section ul { list-style: none; margin: 0; padding: 0; }
.footer-section a {
  color: var(--pm-text-invert-s);
  text-decoration: none;
  transition: color .3s var(--pm-ease), padding-left .3s var(--pm-ease);
}
.footer-section.links a:hover { color: var(--pm-accent); padding-left: 6px; }
.footer-section a:hover { color: var(--pm-accent); }

.footer-section .social-icons { display: flex; gap: 12px; }
.footer-section .social-icons li { list-style: none; }
.footer-section .social-icons a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--pm-line-dark);
  border-radius: 50%;
  color: #fff;
  transition: background .35s var(--pm-ease), border-color .35s var(--pm-ease),
              transform .35s var(--pm-ease);
}
.footer-section .social-icons a:hover {
  background: var(--pm-accent);
  border-color: var(--pm-accent);
  transform: translateY(-3px);
}
.footer-section .social-icons i { margin: 0; color: inherit; }

.footer-bottom {
  border-top: 1px solid var(--pm-line-dark);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: .82rem; color: rgba(255, 255, 255, .48); }
.footer-bottom a { color: rgba(255, 255, 255, .72); text-decoration: none; }
.footer-bottom a:hover { color: var(--pm-accent); }

/* ==========================================================================
   9. Floating actions
   ========================================================================== */

.whatsapp-float a,
#back-to-top {
  box-shadow: 0 10px 26px rgba(20, 19, 26, .2);
  transition: transform .35s var(--pm-ease), box-shadow .35s var(--pm-ease);
}
.whatsapp-float a:hover,
#back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(20, 19, 26, .28);
}

/* ==========================================================================
   10. Utilities
   ========================================================================== */

.pm-divider { height: 1px; background: var(--pm-line); border: 0; margin: 0; }
.pm-section--dark .pm-divider { background: var(--pm-line-dark); }

.pm-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--pm-ease), transform .7s var(--pm-ease);
}
.pm-reveal.is-visible { opacity: 1; transform: none; }

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

/* ==========================================================================
   11. Header & navigation
   ========================================================================== */

.header-3,
.header-3 .header-menu {
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--pm-line);
}

.header-menu { padding: 0 clamp(20px, 4vw, 65px); }

.header-3 .logo img,
.header-mobile .logo img {
  width: 112px;
  height: auto;
  transition: opacity .3s var(--pm-ease);
}
.header-3 .logo a:hover img { opacity: .78; }

/* Top-level items: quiet, wide-tracked, with an underline that grows in. */
.header-3 .menu ul.menu-primary > li > a {
  position: relative;
  display: inline-block;
  padding: 30px 0;
  margin: 0 clamp(10px, 1.2vw, 20px);
  font-family: var(--pm-font-medium);
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--pm-text-soft);
  transition: color .35s var(--pm-ease);
}
.header-3 .menu ul.menu-primary > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 1px;
  background: var(--pm-accent);
  transition: width .4s var(--pm-ease);
}
.header-3 .menu ul.menu-primary > li > a:hover,
.header-3 .menu ul.menu-primary > li.curent-menu-item > a {
  color: var(--pm-text);
}
.header-3 .menu ul.menu-primary > li > a:hover::after,
.header-3 .menu ul.menu-primary > li.curent-menu-item > a::after {
  width: 100%;
}

/* Dropdowns */
.header-3 .menu .sub-menu {
  min-width: 218px;
  padding: 10px 0;
  background: #fff;
  border: 1px solid var(--pm-line);
  border-radius: var(--pm-radius);
  box-shadow: var(--pm-shadow-lg);
}
.header-3 .menu .sub-menu li a {
  display: block;
  padding: 11px 22px;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--pm-text-soft);
  transition: color .3s var(--pm-ease), background .3s var(--pm-ease),
              padding-left .3s var(--pm-ease);
}
.header-3 .menu .sub-menu li a:hover {
  background: var(--pm-paper-2);
  color: var(--pm-accent);
  padding-left: 28px;
}

/* Sticky state */
.header-3 .fixed,
.header-5 .fixed {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 1px 24px rgba(20, 19, 26, .08);
}

/* --- mobile --- */
.header-mobile .header-top-mobile {
  padding: 14px 0;
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pm-line);
}
.au-nav-mobile { background: #fff; border-bottom: 1px solid var(--pm-line); }
.au-navbar-menu { padding: 8px 0 16px; }
.au-navbar-menu > li > a {
  display: block;
  padding: 14px 20px;
  font-family: var(--pm-font-medium);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pm-text);
  border-bottom: 1px solid var(--pm-paper-3);
}
.au-navbar-menu > li > a:hover { color: var(--pm-accent); }
.au-navbar-menu .sub-menu a {
  display: block;
  padding: 11px 20px 11px 38px;
  font-size: .8rem;
  text-transform: none;
  letter-spacing: .02em;
  color: var(--pm-text-soft);
}
.au-navbar-menu .sub-menu a:hover { color: var(--pm-accent); }

/* ==========================================================================
   12. Inner-page hero
   ========================================================================== */

.heading-page-2 { position: relative; background: var(--pm-ink); overflow: hidden; }

.heading-page-2 > img {
  width: 100%;
  min-height: 340px;
  max-height: 62vh;
  object-fit: cover;
  opacity: .5;
  transform: scale(1.03);
}

/* Readability scrim so white type always has contrast. */
.heading-page-2::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg,
              rgba(20, 19, 26, .58) 0%,
              rgba(20, 19, 26, .40) 45%,
              rgba(20, 19, 26, .78) 100%);
  pointer-events: none;
}
.heading-page-2 .container { z-index: 2; }

.heading-page-2 .heading-page-content {
  width: min(760px, 92%);
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}
.heading-page-2 .au-page-title {
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .35);
}
.heading-page-2 .desc {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(.92rem, .88rem + .25vw, 1.05rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, .82);
}

/* The theme's decorative corner rules read as clutter at this scale. */
.heading-page-2 .heading-page-content::before,
.heading-page-2 .heading-page-content::after,
.heading-page-2 .line { display: none; }

@media (max-width: 767px) {
  .heading-page-2 > img { min-height: 260px; }
}

/* ==========================================================================
   13. Home page - premium pass
   --------------------------------------------------------------------------
   The home page runs on Bootstrap 5 + css/style1.css, a different system to
   the inner pages. These rules bring it onto the same visual language.
   ========================================================================== */

/* --- hero ------------------------------------------------------------- */

/* style1.css set height:150vh - a hero one-and-a-half screens tall. */
.hero-section {
  height: auto;
  min-height: min(88vh, 780px);
  padding: clamp(120px, 14vh, 190px) 0 clamp(80px, 10vh, 130px);
  background-image:
    linear-gradient(105deg, rgba(20, 19, 26, .93) 0%, rgba(20, 19, 26, .72) 52%, rgba(20, 19, 26, .55) 100%),
    url("../bg-box.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Fade the hero into the section that follows. */
.hero-section::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--pm-paper));
  z-index: 1;
  pointer-events: none;
}
.hero-content { z-index: 2; position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 40px;
  background: rgba(255, 255, 255, .07);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: var(--pm-font-medium);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
}
.hero-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pm-accent);
  box-shadow: 0 0 0 4px var(--pm-accent-glow);
}

.hero-content h1 {
  font-family: var(--pm-font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 1.4rem + 5.4vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  color: #fff;
}
.hero-content h1 span {
  color: var(--pm-accent);
  display: block;
}
.hero-content .lead {
  max-width: 620px;
  font-size: clamp(1rem, .94rem + .32vw, 1.18rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 0;
}

/* --- buttons (Bootstrap overrides) ------------------------------------- */

.btn-primary,
.btn-outline-primary {
  padding: 15px 34px;
  border-radius: 2px;
  font-family: var(--pm-font-medium);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .4s var(--pm-ease), border-color .4s var(--pm-ease),
              color .4s var(--pm-ease), transform .4s var(--pm-ease),
              box-shadow .4s var(--pm-ease);
}
.btn-primary {
  background: var(--pm-accent);
  border-color: var(--pm-accent);
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--pm-accent-deep);
  border-color: var(--pm-accent-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--pm-accent-glow);
}
.btn-outline-primary {
  background: transparent;
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: #fff;
  border-color: #fff;
  color: var(--pm-ink);
  transform: translateY(-2px);
}
/* On light sections the ghost button needs dark ink, not white. */
.about-section .btn-outline-primary,
.features-section .btn-outline-primary,
.mall-feature-section .btn-outline-primary {
  border-color: var(--pm-line);
  color: var(--pm-text);
}

/* --- section rhythm ----------------------------------------------------- */

.mall-feature-section,
.about-section,
.features-section,
.testimonials-section,
.brands-section,
.stats-section {
  padding: clamp(56px, 3vw + 42px, 118px) 0;
  position: relative;
}
.mall-feature-section .contain,
.mall-feature-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.mall-feature-section .row + .row { margin-top: clamp(48px, 6vw, 96px); }

.about-section.bg-light { background: var(--pm-paper-2) !important; }

/* --- section titles ----------------------------------------------------- */

.section-title {
  max-width: 700px;
  margin: 0 auto clamp(38px, 4vw, 62px);
  text-align: center;
}
.section-title h2 {
  font-family: var(--pm-font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 1.1rem + 2.3vw, 2.85rem);
  line-height: 1.14;
  letter-spacing: -.02em;
  color: var(--pm-text);
  margin: 0 0 14px;
}
.section-title h2 span { color: var(--pm-accent); }
.section-title p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--pm-text-soft);
  margin: 0;
}

/* --- feature / about blocks --------------------------------------------- */

.feature-content h3,
.about-content h3 {
  font-family: var(--pm-font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 1rem + 1.5vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--pm-text);
  margin: 0 0 18px;
}
.feature-content h3 span,
.about-content h3 span { color: var(--pm-accent); }

.feature-content p,
.about-content p {
  font-size: .97rem;
  line-height: 1.85;
  color: var(--pm-text-soft);
  margin-bottom: 16px;
}

.feature-image,
.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--pm-radius);
  box-shadow: var(--pm-shadow);
}
.feature-image img,
.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .9s var(--pm-ease);
}
.feature-image:hover img,
.about-image:hover img { transform: scale(1.05); }

.features-list { list-style: none; margin: 24px 0 0; padding: 0; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: .93rem;
  color: var(--pm-text);
}
.features-list i { color: var(--pm-accent); margin-top: 4px; flex-shrink: 0; }

/* --- feature / update / testimonial cards -------------------------------- */

.feature-card,
.update-card,
.testimonial-card {
  height: 100%;
  padding: clamp(26px, 2.4vw, 38px);
  background: var(--pm-paper);
  border: 1px solid var(--pm-line);
  border-radius: var(--pm-radius);
  transition: transform .45s var(--pm-ease), box-shadow .45s var(--pm-ease),
              border-color .45s var(--pm-ease);
}
.feature-card:hover,
.update-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--pm-shadow-lg);
}
.feature-card h3,
.feature-card h4 {
  font-family: var(--pm-font-medium);
  font-size: 1.05rem;
  color: var(--pm-text);
  margin: 0 0 12px;
}
.feature-card p { font-size: .92rem; line-height: 1.75; color: var(--pm-text-soft); margin: 0; }

.feature-icon {
  width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--pm-accent-soft);
  color: var(--pm-accent);
  font-size: 1.35rem;
  transition: background .4s var(--pm-ease), color .4s var(--pm-ease),
              transform .4s var(--pm-ease);
}
.feature-card:hover .feature-icon {
  background: var(--pm-accent);
  color: #fff;
  transform: rotate(-6deg);
}

/* --- testimonials -------------------------------------------------------- */

.testimonials-section { background: var(--pm-paper-2); }
.testimonial-card { position: relative; }
.quote-icon {
  position: absolute;
  top: 24px; right: 26px;
  font-size: 2.4rem;
  color: var(--pm-accent);
  opacity: .14;
}
.testimonial-text {
  font-size: .96rem;
  line-height: 1.9;
  color: var(--pm-text-soft);
  font-style: italic;
  margin: 0 0 22px;
}
.testimonial-header { display: flex; align-items: center; gap: 14px; }
.client-image img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.client-info h5, .client-info h4 {
  font-family: var(--pm-font-medium);
  font-size: .95rem;
  margin: 0 0 2px;
  color: var(--pm-text);
}
.client-info p, .client-info span {
  font-size: .8rem;
  color: var(--pm-text-soft);
  margin: 0;
}

/* --- brand strip --------------------------------------------------------- */

.brands-section { background: var(--pm-paper); }
.brand-logo {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: .55;
  transition: filter .4s var(--pm-ease), opacity .4s var(--pm-ease),
              transform .4s var(--pm-ease);
}
.brand-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* --- stats band ---------------------------------------------------------- */

.stats-section {
  background: var(--pm-ink);
  color: #fff;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pm-accent-glow) 0%, transparent 68%);
  pointer-events: none;
}
.stats-section .container { position: relative; z-index: 1; }

.stat-item { text-align: center; padding: 16px 10px; }
.stat-item i {
  font-size: 1.6rem;
  color: var(--pm-accent);
  margin-bottom: 16px;
  display: block;
}
.stat-item .counter,
.stat-item h3 {
  font-family: var(--pm-font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem);
  line-height: 1;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}
.stat-item p {
  font-family: var(--pm-font-medium);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  margin: 0;
}

.fade-in { will-change: opacity, transform; }

@media (max-width: 991px) {
  .mall-feature-section .row + .row { margin-top: 44px; }
  .feature-image, .about-image { margin-bottom: 28px; }
}

/* Centred "status" card variant used on the construction page. */
.pm-card.pm-status { padding: clamp(30px, 3vw, 42px) clamp(22px, 2.4vw, 30px); text-align: center; }
.pm-card.pm-status .pm-icon { margin-left: auto; margin-right: auto; }
