/* ═══════════════════════════════════════════════════════════
   NEXUS GLOBAL PACK — MAIN STYLESHEET
   Brand: #B4845A Gold | Dark: #1C1510 | Cream: #FAF8F5
   Multi-page: Home · About · Products · Contact
═══════════════════════════════════════════════════════════ */

:root {
  --gold: #B4845A;
  --gold-light: #D4A96A;
  --gold-muted: rgba(180, 132, 90, 0.18);
  --gold-faint: rgba(180, 132, 90, 0.06);
  --dark: #1C1510;
  --dark-2: #241a13;
  --text: #111111;
  --text-muted: #4A4A4A;
  --text-light: #6B6B6B;
  --bg-cream: #FAF8F5;
  --bg-cream-2: #F4F0EB;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Cinzel', serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-height: 76px;
  --radius: 2px;
}

/* ─── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  color: var(--text);
}

.section-heading--light {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section--sm {
  padding: 70px 0;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}

.btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-gold-fill {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}

.btn-gold-fill:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}


/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 95%;
  max-width: 1400px;
  background: rgba(17, 21, 24, 0.4);
  /* Transparent dark background */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s var(--ease), top 0.3s var(--ease), background 0.3s var(--ease);
}

.navbar.scrolled {
  top: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  background: rgba(17, 21, 24, 0.85);
}

.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 10px 24px 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 1;
  justify-content: flex-start;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-brand-text {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex: 1;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: #ffffff;
  padding: 10px 20px;
  position: relative;
  transition: all 0.3s var(--ease);
  text-transform: capitalize;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(180, 132, 90, 0.1);
  color: var(--gold);
}

.nav-link.active {
  background: rgba(180, 132, 90, 0.15);
  /* Gold pill */
  color: var(--gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* Nav icons */
.nav-link i {
  font-size: 0.8rem;
  color: inherit;
  opacity: 0.8;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.nav-link:hover i,
.nav-link.active i {
  opacity: 1;
}

/* Mobile menu icons */
.mobile-link i {
  width: 18px;
  text-align: center;
  color: var(--gold);
  margin-right: 8px;
  font-size: 0.8rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
}

.btn-inquiry {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}

.btn-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(180, 132, 90, 0.3);
  background: var(--dark);
  border-color: var(--dark);
}

.btn-login {
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  border: 1.5px solid var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 24px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-login:hover {
  background: rgba(180, 132, 90, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--gold-muted);
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}

.mobile-menu.open {
  max-height: 520px;
  padding: 16px 0;
}

.mobile-menu ul {
  padding: 0 36px;
}

.mobile-link {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--gold-muted);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--gold);
}

.mobile-quote {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--white) !important;
  border: none;
}


/* ═══════════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════════ */
body.loading {
  overflow: hidden;
}

.pg-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.pg-loader.ldr-exit {
  transform: translateY(-100%);
}

.ldr-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.ldr-logo-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1) saturate(1.1);
  display: block;
}

@keyframes ldr-spring {
  from {
    opacity: 0;
    transform: scale(0.3) rotate(-8deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.ldr-line {
  width: 320px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: ldr-line-in 0.45s var(--ease) 0.65s both;
}

@keyframes ldr-line-in {
  to {
    transform: scaleX(1);
  }
}

.ldr-brand {
  overflow: hidden;
  height: 40px;
}

.ldr-brand-text {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
  transform: translateY(100%);
  animation: ldr-slide-up 0.45s var(--ease) 0.82s both;
}

@keyframes ldr-slide-up {
  to {
    transform: translateY(0);
  }
}

.ldr-tag {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: rgba(180, 132, 90, 0.65);
  opacity: 0;
  animation: ldr-tag-reveal 0.6s var(--ease) 1.1s both;
}

@keyframes ldr-tag-reveal {
  from {
    opacity: 0;
    letter-spacing: 0.58em;
  }

  to {
    opacity: 1;
    letter-spacing: 0.38em;
  }
}

/* ── Founder's Vision tagline ─────────────────────────── */
.ldr-vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ldr-vision-label {
  font-family: var(--font-accent);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: ldr-tag-reveal 0.55s var(--ease) 1.05s both;
}

.ldr-vision-tagline {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: center;
  opacity: 0;
  animation: ldr-vision-in 0.65s var(--ease) 1.25s both;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

@keyframes ldr-vision-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ldr-bar-wrap {
  width: 300px;
  height: 2px;
  background: rgba(180, 132, 90, 0.15);
  overflow: hidden;
  border-radius: 1px;
  margin-top: 4px;
}

.ldr-bar-prog {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: ldr-bar-fill 1.3s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

@keyframes ldr-bar-fill {
  to {
    width: 100%;
  }
}

@media (prefers-reduced-motion:reduce) {
  .pg-loader {
    display: none;
  }

  body.loading {
    overflow: auto;
  }
}


/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.fade-up {
  transform: translateY(32px);
}

.fade-left {
  transform: translateX(-42px);
}

.fade-right {
  transform: translateX(42px);
}

.zoom-in {
  transform: scale(0.88);
}

.process-reveal {
  transform: translateX(-20px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.reveal[data-delay="0"] {
  transition-delay: 0s;
}

.reveal[data-delay="1"] {
  transition-delay: 0.15s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.30s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.45s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.60s;
}

.reveal[data-delay="5"] {
  transition-delay: 0.75s;
}


/* ═══════════════════════════════════════════════════════════
   PARALLAX SECTIONS (background-attachment:fixed)
═══════════════════════════════════════════════════════════ */
.parallax-sec {
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--dark);
  position: relative;
}

/* Hero parallax — home */
.parallax-hero {
  background-image:
    linear-gradient(135deg, rgba(28, 21, 16, 0.88) 0%, rgba(28, 21, 16, 0.72) 100%),
    url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=80');
}

/* Stats parallax */
.parallax-stats {
  background-image:
    linear-gradient(rgba(28, 21, 16, 0.90), rgba(28, 21, 16, 0.90)),
    url('../Images/aboutus_hero.webp');
}

/* CTA parallax */
.parallax-cta {
  background-image:
    linear-gradient(rgba(28, 21, 16, 0.82), rgba(28, 21, 16, 0.82)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80');
}

/* About page hero */
.parallax-about {
  background-image:
    linear-gradient(rgba(28, 21, 16, 0.72), rgba(28, 21, 16, 0.72)),
    url('../Images/aboutus_hero.webp');
}

/* Products page hero */
.parallax-products {
  background-image:
    linear-gradient(rgba(28, 21, 16, 0.68), rgba(28, 21, 16, 0.68)),
    url('../Images/product_hero.webp');
}

/* Contact page hero */
.parallax-contact {
  background-image:
    linear-gradient(rgba(28, 21, 16, 0.72), rgba(28, 21, 16, 0.72)),
    url('../Images/contectus_hero.webp');
}

/* Mid-page parallax quote */
.parallax-quote {
  background-image:
    linear-gradient(rgba(28, 21, 16, 0.88), rgba(28, 21, 16, 0.88)),
    url('https://images.unsplash.com/photo-1519999482648-5a03bcd98d35?auto=format&fit=crop&w=1920&q=80');
}


/* ═══════════════════════════════════════════════════════════
   PAGE HERO  (inner pages: About / Products / Contact)
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  text-align: center;
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.page-hero-inner {
  width: 100%;
}

.page-hero-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(180, 132, 90, 0.4);
  border-radius: 20px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.page-hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  color: var(--gold);
  font-size: 0.6rem;
}

.breadcrumb-current {
  color: rgba(255, 255, 255, 0.7);
}


/* ═══════════════════════════════════════════════════════════
   HOME — HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: var(--nav-height);
  position: relative;
  background:
    linear-gradient(135deg, rgba(28, 21, 16, 0.93) 0%, rgba(28, 21, 16, 0.72) 50%, rgba(28, 21, 16, 0.90) 100%),
    url('../Images/main_page_hero.webp') center / cover no-repeat;
  background-attachment: fixed;
}

.hero-left {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  background: transparent;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  position: relative;
  z-index: 1;
}

.hero-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-label {
  margin-bottom: 28px;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.hero-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-line--accent {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}

.badge-icon {
  color: var(--gold);
  font-size: 0.65rem;
}

/* Hero right — cube area */
.hero-right {
  flex: 0 0 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease) 0.3s, transform 0.9s var(--ease) 0.3s;
}

.hero-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-right-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 55% 50%, rgba(180, 132, 90, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

/* ─── HERO CUBE WRAPPER ─────────────────────────────────── */
.hero-cube-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 80px 48px;
  overflow: visible;
}

/* Ambient glow ring behind the cube */
.hero-cube-wrap::before {
  content: '';
  position: absolute;
  width: clamp(340px, 44vw, 540px);
  height: clamp(340px, 44vw, 540px);
  background: radial-gradient(circle, rgba(180, 132, 90, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
  animation: cube-glow-pulse 4s ease-in-out infinite;
}

@keyframes cube-glow-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Swiper cube container */
.heroSwiper {
  width: clamp(300px, 38vw, 460px);
  height: clamp(300px, 38vw, 460px);
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.60)) drop-shadow(0 0 24px rgba(180, 132, 90, 0.18));
}

.heroSwiper .swiper-slide {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Caption on each cube face */
.hero-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 18px;
  background: linear-gradient(transparent, rgba(28, 21, 16, 0.88));
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 3;
}

.hsl-cat {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.hsl-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}

/* Swiper pagination dots — inside the cube */
.heroSwiper-pagination {
  bottom: 8px !important;
}

.heroSwiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 6px;
  height: 6px;
  transition: background 0.3s, transform 0.3s;
}

.heroSwiper-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.4);
}

/* Floating stat badges */
.hero-stat-badge {
  position: absolute;
  z-index: 10;
  background: rgba(28, 21, 16, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(180, 132, 90, 0.4);
  border-radius: 4px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-stat-badge strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
}

.hero-stat-badge strong span {
  font-size: 1.1rem;
}

.hero-stat-badge em {
  font-style: normal;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.hero-stat-badge--tl {
  top: calc(50% - 240px / 2 - 20px);
  left: 20px;
}

.hero-stat-badge--br {
  bottom: calc(50% - 240px / 2 - 20px);
  right: 20px;
}

.hero-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 60px solid var(--gold);
  opacity: 0.06;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-boxes {
  position: relative;
  width: 280px;
  height: 340px;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.mock-box {
  position: absolute;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-inner {
  text-align: center;
  padding: 16px;
}

.box-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.box-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.box-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.box-lines span {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.box-lines span:nth-child(1) {
  width: 60px;
}

.box-lines span:nth-child(2) {
  width: 44px;
}

.box-lines span:nth-child(3) {
  width: 30px;
}

.box-1 {
  width: 180px;
  height: 210px;
  background: linear-gradient(145deg, #B4845A 0%, #8B6040 100%);
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  box-shadow: 8px 12px 32px rgba(28, 21, 16, 0.45);
  z-index: 3;
}

.box-2 {
  width: 160px;
  height: 190px;
  background: linear-gradient(145deg, #C8976A 0%, #A0724A 100%);
  bottom: 20px;
  right: 10px;
  transform: rotate(6deg);
  box-shadow: 6px 10px 28px rgba(28, 21, 16, 0.35);
  z-index: 2;
}

.box-3 {
  width: 155px;
  height: 175px;
  background: linear-gradient(145deg, #9A7050 0%, #7A5838 100%);
  bottom: 10px;
  left: 0;
  transform: rotate(-8deg);
  box-shadow: 4px 8px 24px rgba(28, 21, 16, 0.28);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particle-float var(--dur, 8s) ease-in-out var(--del, 0s) infinite;
}

@keyframes particle-float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  15% {
    opacity: 0.45;
  }

  85% {
    opacity: 0.15;
  }

  100% {
    transform: translateY(-90px) translateX(8px);
    opacity: 0;
  }
}


/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--dark);
  padding: 13px 0;
  overflow: hidden;
  border-top: 1px solid rgba(180, 132, 90, 0.15);
  border-bottom: 1px solid rgba(180, 132, 90, 0.15);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  white-space: nowrap;
  text-transform: uppercase;
}

.marquee-sep {
  color: var(--gold-light);
  opacity: 0.45;
  font-size: 0.48rem;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ═══════════════════════════════════════════════════════════
   HOME — ABOUT BRIEF  (cream bg)
═══════════════════════════════════════════════════════════ */
.home-about-section {
  background: var(--bg-cream);
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-about-content {}

.home-about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

.home-about-body {
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--gold-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.about-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.home-about-visual {
  position: relative;
}

.home-about-img-wrap {
  position: relative;
  padding-top: 115%;
  background: linear-gradient(145deg, var(--gold) 0%, #8B6040 55%, var(--dark) 100%);
  overflow: hidden;
}

.home-about-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}

.home-about-img-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  opacity: 0.5;
}

.home-about-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.ha-stat {
  background: var(--dark);
  padding: 22px 20px;
  text-align: center;
}

.ha-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.ha-stat-lbl {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════
   HOME — PRODUCT CATEGORIES  (dark bg)
═══════════════════════════════════════════════════════════ */
.home-cats-section {
  background: var(--dark);
}

.home-cats-section .section-heading {
  color: var(--white);
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(180, 132, 90, 0.15);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: default;
}

.cat-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.cat-card-vis {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cat-bg-pharma {
  background: linear-gradient(145deg, #0a1d2e 0%, #1a5580 50%, #0a1d2e 100%);
}

.cat-bg-food {
  background: linear-gradient(145deg, #2e1500 0%, #904c14 50%, #2e1500 100%);
}

.cat-bg-cosm {
  background: linear-gradient(145deg, #220818 0%, #82245a 50%, #220818 100%);
}

.cat-bg-herb {
  background: linear-gradient(145deg, #081c0c 0%, #1a6622 50%, #081c0c 100%);
}

.cat-ng {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
  transition: transform 0.5s var(--ease);
}

.cat-card:hover .cat-ng {
  transform: scale(1.1) rotate(5deg);
}

.cat-icon-wrap {
  position: absolute;
  color: rgba(255, 255, 255, 0.55);
  width: 52px;
  height: 52px;
  transition: color 0.3s;
}

.cat-card:hover .cat-icon-wrap {
  color: rgba(255, 255, 255, 0.85);
}

.cat-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.cat-type-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-accent);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(180, 132, 90, 0.25);
  color: var(--gold);
  border: 1px solid rgba(180, 132, 90, 0.3);
}

.cat-card-body {
  padding: 24px 22px 28px;
  background: rgba(255, 255, 255, 0.03);
}

.cat-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.cat-card-desc {
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 18px;
}

.cat-card-link {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s, color 0.2s;
}

.cat-card-link:hover {
  gap: 12px;
  color: var(--gold-light);
}

.cat-card-link-arrow {
  font-size: 0.9rem;
}


/* ═══════════════════════════════════════════════════════════
   INDUSTRIES  (cream bg)
═══════════════════════════════════════════════════════════ */
.industries-section {
  background: var(--bg-cream);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-tile {
  background: var(--white);
  border: 1px solid rgba(180, 132, 90, 0.2);
  padding: 48px 24px 40px;
  text-align: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: default;
}

.industry-tile:hover {
  background: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(180, 132, 90, 0.3);
}

.industry-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin: 0 auto 24px;
  transition: color 0.3s var(--ease);
}

.industry-icon svg {
  width: 100%;
  height: 100%;
}

.industry-tile:hover .industry-icon {
  color: var(--white);
}

.industry-name {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
}

.industry-tile:hover .industry-name {
  color: var(--white);
}

.industry-desc {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.3s var(--ease);
}

.industry-tile:hover .industry-desc {
  color: rgba(255, 255, 255, 0.85);
}


/* ═══════════════════════════════════════════════════════════
   STATS SECTION  (parallax dark)
═══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 90px 0;
}

.stats-inner {
  text-align: center;
  margin-bottom: 64px;
}

.stats-inner .section-label {
  color: var(--gold);
}

.counters-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  gap: 0;
  border-top: 1px solid rgba(180, 132, 90, 0.25);
  padding-top: 56px;
}

.counter-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.counter-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 4.8rem);
  color: var(--gold);
  line-height: 1;
}

.counter-plus,
.counter-percent {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  display: inline;
  vertical-align: super;
  line-height: 1;
}

.counter-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.counter-divider {
  width: 1px;
  height: 64px;
  background: rgba(180, 132, 90, 0.25);
}


/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE NEXUS  (cream bg — switched from dark)
═══════════════════════════════════════════════════════════ */
.why-section {
  background: var(--bg-cream);
}

.why-section .section-label {
  color: var(--gold);
}

.why-heading {
  color: var(--text);
}

.why-sub {
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-top: 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 24px 20px 24px 24px;
  border-left: 2px solid var(--gold);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(180, 132, 90, 0.06);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.why-item:hover {
  box-shadow: 0 8px 32px rgba(180, 132, 90, 0.14);
  transform: translateY(-4px);
}

.why-check {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.why-text p {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   WORK PROCESS  (dark bg — switched from white)
═══════════════════════════════════════════════════════════ */
.process-section {
  background: var(--dark);
}

.process-section .section-label {
  color: var(--gold);
}

.process-section .section-heading {
  color: var(--white);
}

.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 0 8px;
}

.process-connector {
  position: absolute;
  top: 26px;
  left: 60px;
  right: 60px;
  height: 0;
  border-top: 2px dashed rgba(180, 132, 90, 0.35);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  transition: background 0.3s var(--ease);
}

.step-circle.active,
.process-step:hover .step-circle {
  background: var(--gold);
}

.step-num {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  transition: color 0.3s var(--ease);
}

.step-circle.active .step-num,
.process-step:hover .step-circle .step-num {
  color: var(--white);
}

.step-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  line-height: 1.4;
}


/* ═══════════════════════════════════════════════════════════
   HOME — CTA SECTION (parallax)
═══════════════════════════════════════════════════════════ */
.home-cta-section {
  text-align: center;
  padding: 110px 0;
}

.cta-section-label {
  color: var(--gold);
}

.home-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.home-cta-title em {
  font-style: italic;
  color: var(--gold);
}

.home-cta-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.cta-btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Decorative gold lines */
.cta-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.06;
}

.cta-lines::before,
.cta-lines::after {
  content: '';
  position: absolute;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.cta-lines::before {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-lines::after {
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT CATALOGUE
═══════════════════════════════════════════════════════════ */
.catalogue-section {
  background: var(--bg-cream);
}

.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 52px;
}

.c-tab {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(180, 132, 90, 0.3);
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s;
}

.c-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.c-tab.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pcard {
  background: var(--white);
  border: 1px solid rgba(180, 132, 90, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  animation: pcard-in 0.4s var(--ease) both;
}

@keyframes pcard-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(180, 132, 90, 0.15);
  border-color: var(--gold);
}

.pc-vis {
  position: relative;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.v-pharma {
  background: linear-gradient(135deg, #0f2d44 0%, #1d6496 50%, #0f2d44 100%);
}

.v-food {
  background: linear-gradient(135deg, #3d1f08 0%, #b5601a 50%, #5a2e0e 100%);
}

.v-cosm {
  background: linear-gradient(135deg, #2e0a1e 0%, #9e2d6c 50%, #4a1030 100%);
}

.v-herb {
  background: linear-gradient(135deg, #0a2410 0%, #1e7a2a 50%, #0a2410 100%);
}

.pv-ng {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 5.5rem;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  transition: transform 0.4s var(--ease);
}

.pcard:hover .pv-ng {
  transform: scale(1.08) rotate(4deg);
}

.pv-type {
  font-family: var(--font-accent);
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  position: absolute;
  bottom: 12px;
  left: 14px;
}

.cat-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-accent);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.pill-pharma {
  background: rgba(15, 45, 68, 0.88);
  color: #6ec4f0;
}

.pill-food {
  background: rgba(61, 31, 8, 0.88);
  color: #f0b86e;
}

.pill-cosm {
  background: rgba(46, 10, 30, 0.88);
  color: #f07ec0;
}

.pill-herb {
  background: rgba(10, 36, 16, 0.88);
  color: #78f090;
}

.pc-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pc-desc {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

.pc-actions {
  display: flex;
  gap: 8px;
}

.btn-wa-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: var(--radius);
  flex: 1;
  transition: background 0.2s;
}

.btn-wa-card:hover {
  background: #128C7E;
}

.btn-em-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(180, 132, 90, 0.45);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  border-radius: var(--radius);
  flex: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-em-card:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — OUR STORY  (cream)
═══════════════════════════════════════════════════════════ */
.about-story-section {
  background: var(--bg-cream);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-visual {
  position: relative;
}

.about-story-img-box {
  position: relative;
  padding-top: 120%;
  background: linear-gradient(145deg, var(--gold) 0%, #8B6040 60%, var(--dark) 100%);
  overflow: hidden;
}

.about-story-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 10rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}

.about-story-deco {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  opacity: 0.45;
}

.about-founded-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--dark);
  padding: 20px 24px;
  text-align: center;
  z-index: 2;
}

.founded-year {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.founded-label {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 4px;
}

.about-story-body {
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
}

.highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — VISION & MISSION  (dark)
═══════════════════════════════════════════════════════════ */
.vision-section {
  background: var(--dark);
}

.vision-section .section-heading {
  color: var(--white);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  border: 1px solid rgba(180, 132, 90, 0.2);
  padding: 44px 36px;
  background: rgba(255, 255, 255, 0.025);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.vm-card:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.vm-card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}

.vm-card-icon svg {
  width: 100%;
  height: 100%;
}

.vm-card-title {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vm-card-text {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.vm-card-num {
  position: absolute;
  bottom: -10px;
  right: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — MILESTONES  (cream)
═══════════════════════════════════════════════════════════ */
.milestones-section {
  background: var(--white);
}

.milestones-timeline {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}

.milestones-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold-muted);
  transform: translateX(-50%);
}

.milestone-item {
  display: flex;
  gap: 40px;
  margin-bottom: 56px;
  align-items: flex-start;
}

.milestone-item:nth-child(odd) {
  flex-direction: row;
}

.milestone-item:nth-child(even) {
  flex-direction: row;
}

.milestone-content {
  flex: 1;
}

.milestone-item:nth-child(odd) .milestone-content {
  text-align: right;
  padding-right: 20px;
}

.milestone-item:nth-child(even) .milestone-content {
  text-align: left;
  padding-left: 20px;
}

.milestone-dot-wrap {
  flex-shrink: 0;
  width: 52px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
  position: relative;
  z-index: 1;
}

.milestone-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
}

.milestone-year {
  font-family: var(--font-accent);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.milestone-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.milestone-text {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — STRENGTHS  (cream)
═══════════════════════════════════════════════════════════ */
.strengths-section {
  background: var(--bg-cream);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strength-card {
  background: var(--white);
  padding: 36px 28px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(180, 132, 90, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.strength-card:hover {
  box-shadow: 0 8px 36px rgba(180, 132, 90, 0.14);
  transform: translateY(-5px);
}

.strength-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}

.strength-icon svg {
  width: 100%;
  height: 100%;
}

.strength-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.strength-text {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — CONTACT GRID  (cream)
═══════════════════════════════════════════════════════════ */
.contact-page-section {
  background: var(--bg-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info-card {
  background: var(--dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: 'Ng';
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16rem;
  color: rgba(180, 132, 90, 0.04);
  position: absolute;
  bottom: -40px;
  right: -20px;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.contact-info-label {
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.contact-info-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-social-row {
  display: flex;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(180, 132, 90, 0.15);
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(180, 132, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(180, 132, 90, 0.08);
}

/* Contact Form */
.contact-form-wrap {}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: none;
  border-bottom: 1.5px solid rgba(26, 26, 26, 0.2);
  padding: 12px 0 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s var(--ease);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B4845A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-color: var(--white);
  padding-right: 24px;
}

.form-group textarea {
  resize: none;
  line-height: 1.6;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  pointer-events: none;
  transition: top 0.25s var(--ease), font-size 0.25s var(--ease), color 0.25s var(--ease);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label,
.form-group select:focus~label,
.form-group select.has-value~label {
  top: -12px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--gold);
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.form-group input:focus~.form-line,
.form-group textarea:focus~.form-line,
.form-group select:focus~.form-line {
  transform: scaleX(1);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.btn-submit:hover {
  background: var(--dark);
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-cream);
  border: 1px solid rgba(180, 132, 90, 0.3);
}

.form-success.visible {
  display: block;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact form header */
.cform-head {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(180, 132, 90, 0.15);
}

.cform-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 6px;
}

.cform-desc {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Contact page section sub-heading */
.section-sub {
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* Trust Bar */
.contact-trust-section {
  background: var(--dark);
  padding: 56px 0;
}

.ctrust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.ctrust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ctrust-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(180, 132, 90, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.ctrust-icon svg {
  width: 20px;
  height: 20px;
}

.ctrust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.ctrust-item span {
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

/* Map */
.map-section {
  background: var(--dark);
  padding: 0;
}

.map-overlay-header {
  text-align: center;
  padding: 56px 40px 40px;
}

.map-embed-wrap {
  position: relative;
  overflow: hidden;
}

.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  filter: saturate(0.6) contrast(0.9) brightness(0.85);
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--gold);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.footer-logo-imgs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.footer-about {
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 0.4rem;
  flex-shrink: 0;
  margin-top: 5px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(180, 132, 90, 0.15);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  margin: 0;
}

.footer-credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-credit a:hover {
  opacity: 0.75;
}


/* ═══════════════════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.3);
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: background 0.2s, transform 0.2s;
}

.wa-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  animation-play-state: paused;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.3);
  }

  60% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  padding: 6px 12px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  border-radius: 2px;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}


/* ═══════════════════════════════════════════════════════════
   SCROLL-TO-TOP BUTTON
═══════════════════════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  border: 1px solid rgba(180, 132, 90, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s, color 0.2s;
  z-index: 997;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════
   HERO IMG WRAP (re-used outside hero, e.g. page heroes)
═══════════════════════════════════════════════════════════ */
.hero-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 21, 16, 0.55) 0%, rgba(28, 21, 16, 0.15) 60%, transparent 100%);
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════
   TICKER / INFINITE IMAGE MARQUEE
═══════════════════════════════════════════════════════════ */
.ticker-section {
  background: var(--dark);
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid rgba(180, 132, 90, 0.15);
  border-bottom: 1px solid rgba(180, 132, 90, 0.15);
}

.ticker-label {
  text-align: center;
  margin-bottom: 28px;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(180, 132, 90, 0.7);
  text-transform: uppercase;
}

.ticker-wrap {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ticker-run 36s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(180, 132, 90, 0.15);
  transition: transform 0.4s ease, border-color 0.3s;
  cursor: pointer;
}

.ticker-img:hover {
  transform: scale(1.04);
  border-color: rgba(180, 132, 90, 0.5);
}

@keyframes ticker-run {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* ═══════════════════════════════════════════════════════════
   SHOWCASE COVERFLOW SLIDER
═══════════════════════════════════════════════════════════ */
.coverSwiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.coverSwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.coverSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 12px 16px;
  color: white;
  display: flex;
  flex-direction: column;
}

.csl-cat {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.csl-title {
  font-size: 1.1rem;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════
   SHOWCASE SLIDER
═══════════════════════════════════════════════════════════ */
.showcase-section {
  background: var(--bg-cream);
  padding: 100px 0;
}

.showcase-slider {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.slider-slide img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.slider-slide.active img {
  transform: scale(1.04);
}

.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(28, 21, 16, 0.85));
  padding: 60px 48px 40px;
}

.slider-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 6px;
}

.slider-caption p {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(180, 132, 90, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s, border-color 0.3s;
  font-size: 0.9rem;
}

.slider-arrow:hover {
  background: rgba(180, 132, 90, 0.8);
  border-color: transparent;
}

.slider-arrow-prev {
  left: 20px;
}

.slider-arrow-next {
  right: 20px;
}


/* ═══════════════════════════════════════════════════════════
   CATEGORY CARDS WITH IMAGES
═══════════════════════════════════════════════════════════ */
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cat-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.cat-card:hover .cat-card-img {
  transform: scale(1.08);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 21, 16, 0.88) 0%, rgba(28, 21, 16, 0.3) 50%, transparent 100%);
  transition: background 0.4s;
}

.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(180, 132, 90, 0.75) 0%, rgba(28, 21, 16, 0.4) 60%, transparent 100%);
}

.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
}

.cat-card-name {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.cat-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cat-card-link {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.cat-card:hover .cat-card-link {
  color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT CARD WITH IMAGE (.pcard updated)
═══════════════════════════════════════════════════════════ */
.pcard {
  background: var(--white);
  border: 1px solid rgba(180, 132, 90, 0.12);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.pcard:hover {
  box-shadow: 0 16px 48px rgba(28, 21, 16, 0.12);
  transform: translateY(-4px);
}

.pcard-img-wrap {
  overflow: hidden;
  min-height: 200px;
  aspect-ratio: 4/3;
  background: var(--bg-cream);
}

.pcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.pcard:hover .pcard-img {
  transform: scale(1.07);
}

.pcard-body {
  padding: 20px 20px 16px;
}

.pcard-cat {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.pcard-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.pcard-desc {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.pcard-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pcard-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border: 1px solid rgba(180, 132, 90, 0.4);
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}

.pcard-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.pcard-btn-wa {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.pcard-btn-wa:hover {
  background: var(--dark);
  border-color: var(--dark);
}


/* ═══════════════════════════════════════════════════════════
   ABOUT STORY IMAGE
═══════════════════════════════════════════════════════════ */
.about-story-visual {
  position: relative;
}

.about-story-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-story-img-frame {
  position: relative;
  overflow: hidden;
}

.about-story-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(180, 132, 90, 0.25);
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════
   HOME ABOUT IMAGE — REDESIGNED
═══════════════════════════════════════════════════════════ */
.home-about-img {
  position: relative;
  /* overflow: visible so the video thumb can overlap outside the frame */
}

/* Framed image card with offset shadow */
.hab-frame {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow:
    12px 12px 0 0 rgba(180, 132, 90, 0.2),
    0 32px 72px rgba(28, 21, 16, 0.22);
  transition: box-shadow 0.4s ease;
}

.hab-frame:hover {
  box-shadow:
    14px 14px 0 0 rgba(180, 132, 90, 0.35),
    0 36px 80px rgba(28, 21, 16, 0.28);
}

.hab-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hab-frame:hover img {
  transform: scale(1.04);
}

/* Gold corner accents — inside the frame */
.hab-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

.hab-corner--tl {
  top: 16px;
  left: 16px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.hab-corner--br {
  bottom: 16px;
  right: 16px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

/* ─── VIDEO PLAY CARD ─────────────────────────────────────── */
.about-video-thumb {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 188px;
  height: 122px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  border: 2px solid rgba(180, 132, 90, 0.55);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 0 0 6px rgba(250, 248, 245, 0.9);
  z-index: 4;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.3s;
}

.about-video-thumb:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.65),
    0 0 0 6px rgba(250, 248, 245, 0.9);
  border-color: var(--gold);
}

.about-video-preview {
  width: 100%;
  height: calc(100% - 28px);
  object-fit: cover;
  display: block;
  pointer-events: none;
  opacity: 0.78;
}

/* Play overlay */
.about-video-play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.25s;
}

.about-video-thumb:hover .about-video-play {
  background: rgba(0, 0, 0, 0.08);
}

/* Pulsing ring */
.play-pulse-ring {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(180, 132, 90, 0.8);
  animation: play-ring-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes play-ring-pulse {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Play icon circle */
.about-video-play svg {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  padding: 12px;
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: background 0.25s, transform 0.25s;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.about-video-thumb:hover .about-video-play svg {
  background: var(--dark);
  transform: scale(1.12);
}

/* Bottom label bar */
.about-video-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  font-family: var(--font-accent);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  border-top: 1px solid rgba(180, 132, 90, 0.3);
}


/* ─── VIDEO MODAL (body-level — fixed correctly) ─────────── */

/* Lock scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

.about-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.about-video-modal.open {
  display: flex;
  animation: modal-bg-in 0.28s ease forwards;
}

@keyframes modal-bg-in {
  from { background: rgba(0,0,0,0); backdrop-filter: blur(0px); }
  to   { background: rgba(0,0,0,0.92); backdrop-filter: blur(10px); }
}

/* Stable bg after animation (avoid flicker) */
.about-video-modal.open {
  background: rgba(0, 0, 0, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Inner wrapper */
.about-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: modal-slide-in 0.3s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

@keyframes modal-slide-in {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Close button — above the video on the right */
.about-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.2s, border-color 0.2s, transform 0.25s;
  font-family: inherit;
  flex-shrink: 0;
}

.about-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg) scale(1.08);
}

.about-modal-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* The video element */
.about-modal-video {
  width: 100%;
  max-height: 78vh;
  border-radius: 6px;
  outline: none;
  display: block;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}


/* ═══════════════════════════════════════════════════════════
   ABOUT GALLERY STRIP
═══════════════════════════════════════════════════════════ */
.about-gallery-strip {
  background: var(--dark);
  padding: 0;
}

.gallery-strip-track {
  display: flex;
  overflow: hidden;
}

.gallery-strip-track img {
  flex: 1;
  min-width: 0;
  height: 340px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s, transform 0.3s;
}

.gallery-strip-track img:hover {
  filter: brightness(1);
  transform: scale(1.02);
}


/* ═══════════════════════════════════════════════════════════
   ENHANCED FOOTER
═══════════════════════════════════════════════════════════ */
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(180, 132, 90, 0.4), rgba(180, 132, 90, 0.6), rgba(180, 132, 90, 0.4), transparent);
  margin-bottom: 60px;
}

.footer-newsletter {
  background: rgba(180, 132, 90, 0.06);
  border: 1px solid rgba(180, 132, 90, 0.15);
  padding: 28px 32px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-newsletter-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}

.footer-newsletter-text p {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 360px;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(180, 132, 90, 0.3);
  border-right: none;
  padding: 11px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #fff;
  outline: none;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form button {
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 11px 20px;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.footer-newsletter-form button:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(180, 132, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(180, 132, 90, 0.08);
}


/* ═══════════════════════════════════════════════════════════
   CATS GRID — 5 COLUMNS ON DESKTOP
═══════════════════════════════════════════════════════════ */
.cats-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}


/* ═══════════════════════════════════════════════════════════
   REVIEWS TICKER
═══════════════════════════════════════════════════════════ */
.reviews-section {
  background: var(--bg-cream);
  padding: 80px 0 72px;
  overflow: hidden;
}

.reviews-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.reviews-sub strong {
  color: var(--gold);
  font-weight: 600;
}

.reviews-ticker-outer {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  padding: 12px 0;
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewTickerLTR 90s linear infinite;
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
}

.reviews-ticker-outer:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviewTickerLTR {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.rv-card {
  flex: none;
  width: clamp(260px, 24vw, 310px);
  background: var(--white);
  border: 1px solid rgba(180, 132, 90, 0.18);
  border-radius: 4px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  cursor: default;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.rv-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(180, 132, 90, 0.4);
}

.rv-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.rv-card:nth-child(4n+1) .rv-avatar { background: var(--gold); }
.rv-card:nth-child(4n+2) .rv-avatar { background: var(--dark); }
.rv-card:nth-child(4n+3) .rv-avatar { background: #7B5E3A; }
.rv-card:nth-child(4n+4) .rv-avatar { background: #4A3728; }

.rv-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
  line-height: 1;
}

.rv-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.rv-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(180, 132, 90, 0.12);
  padding-top: 10px;
  margin-top: auto;
}

.rv-name {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-body);
}

.rv-company {
  font-size: 0.76rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  font-family: var(--font-accent);
}

/* reduced-motion: disable ticker animation */
@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width:1024px) {

  .industries-grid,
  .cats-grid,
  .cats-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-about-grid {
    gap: 52px;
  }

  .contact-grid {
    gap: 52px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-heading {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
  }

  .catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-connector {
    left: 40px;
    right: 40px;
  }

  .ctrust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width:768px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 70px 0;
  }

  /* Nav */
  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-container {
    gap: 0;
    justify-content: space-between;
  }

  .logo-img {
    height: 50px;
  }
  .logo-text-img {
    height: 24px;
  }

  /* Parallax — disable fixed on mobile (Safari issue) */
  .parallax-sec {
    background-attachment: scroll;
  }

  /* Hero background fix for mobile */
  .hero {
    background-attachment: scroll;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    flex: none;
    width: 100%;
    padding: 56px 20px 40px;
    background: transparent;
  }

  .hero-right {
    flex: none;
    width: 100%;
    min-height: 460px;
    overflow: visible;
    background: transparent;
  }

  .hero-cube-wrap {
    padding: 40px 24px;
  }

  .heroSwiper {
    width: clamp(260px, 72vw, 360px);
    height: clamp(260px, 72vw, 360px);
  }

  .hero-stat-badge--tl {
    top: 16px;
    left: 16px;
  }

  .hero-stat-badge--br {
    bottom: 16px;
    right: 16px;
  }

  .hero-stat-badge {
    padding: 9px 13px;
    min-width: 88px;
  }

  .hero-stat-badge strong {
    font-size: 1.3rem;
  }

  .hero-badges {
    gap: 14px;
  }

  .badge {
    font-size: 0.74rem;
  }

  /* Page hero */
  .page-hero {
    min-height: 42vh;
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 48px;
  }

  .page-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Home about */
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-about-stats-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Cats grid */
  .cats-grid,
  .cats-grid-5 {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .cat-card-vis {
    height: 160px;
  }

  /* Industries */
  .industries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Stats */
  .counters-row {
    flex-wrap: wrap;
    gap: 32px;
  }

  .counter-divider {
    display: none;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-left: 30px;
  }

  .process-connector {
    top: 26px;
    left: 25px;
    right: auto;
    bottom: 26px;
    width: 1px;
    height: auto;
    border-top: none;
    border-left: 2px dashed rgba(180, 132, 90, 0.4);
  }

  .process-step {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex: none;
    width: 100%;
  }

  .step-label {
    text-align: left;
  }

  /* About page */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story-img-box {
    padding-top: 70%;
  }

  .about-founded-badge {
    left: 0;
    top: 16px;
  }

  .milestones-timeline::before {
    left: 20px;
  }

  .milestone-item,
  .milestone-item:nth-child(odd),
  .milestone-item:nth-child(even) {
    flex-direction: row;
    gap: 20px;
  }
  .milestone-content:empty {
    display: none;
  }

  .milestone-item:nth-child(odd) .milestone-content {
    text-align: left;
    padding-right: 0;
    padding-left: 0;
  }

  .milestone-item:nth-child(even) .milestone-content {
    text-align: left;
    padding-left: 0;
  }

  .milestone-dot-wrap {
    width: 40px;
    flex-shrink: 0;
    order: -1;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .ctrust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .map-overlay-header {
    padding: 40px 20px 28px;
  }

  /* CTA */
  .cta-btn-row {
    flex-direction: column;
    align-items: center;
  }

  /* Showcase Slider */
  .slider-slide img {
    height: 280px;
  }

  .slider-caption {
    padding: 40px 20px 24px;
  }

  .slider-caption h3 {
    font-size: 1.4rem;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  /* Ticker */
  .ticker-img {
    width: 160px;
    height: 120px;
  }

  /* Hero image */
  .hero-img-badge-1 {
    bottom: 20px;
    left: 16px;
  }

  .hero-img-badge-2 {
    top: 20px;
    right: 16px;
  }

  .hero-img-badge {
    padding: 8px 12px;
  }

  .hero-img-badge strong {
    font-size: 1.1rem;
  }

  /* Home about img & video */
  .home-about-img img {
    height: 300px;
  }
  .about-video-thumb {
    width: 155px;
    height: 100px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
    bottom: 0;
    left: 0;
  }
  .about-video-play svg {
    width: 38px;
    height: 38px;
    padding: 10px;
  }

  /* Gallery strip */
  .gallery-strip-track img {
    height: 220px;
  }

  /* Catalogue */
  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cat-tabs {
    gap: 6px;
  }

  .c-tab {
    padding: 9px 16px;
    font-size: 0.58rem;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 32px;
  }

  .footer-bottom {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  /* Floating */
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .scroll-top-btn {
    bottom: 82px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .section-heading {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width:480px) {

  .cats-grid,
  .cats-grid-5,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }

  .hero-heading {
    font-size: 1.9rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .home-about-stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .ctrust-grid {
    grid-template-columns: 1fr;
  }

  .slider-slide img {
    height: 220px;
  }

  .ticker-img {
    width: 130px;
    height: 96px;
  }

  .gallery-strip-track {
    flex-wrap: wrap;
  }

  .gallery-strip-track img {
    flex: 0 0 50%;
    height: 180px;
  }

  .footer-newsletter {
    flex-direction: column;
    gap: 16px;
  }

  .footer-newsletter-form {
    max-width: 100%;
  }
}


/* ═══════════════════════════════════════════════════════════
   LOGO BRAND TEXT  (replaces nexus_global_pack_Logo.png image)
═══════════════════════════════════════════════════════════ */
.logo-brand-text {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.3s var(--ease);
}

.nav-logo:hover .logo-brand-text {
  color: var(--gold);
}

/* Blend logo image background into dark navbar */
.logo-img,
.footer-logo-img {
  mix-blend-mode: screen;
  filter: brightness(1.05);
}

/* TM mark wrapper — position:relative so TM can sit at top-right of image */
.logo-img-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.logo-tm {
  position: absolute;
  top: 1px;
  right: -11px;
  font-size: 0.42rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0;
  vertical-align: super;
}

/* Loader TM */
.ldr-logo-wrap {
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: ldr-spring 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.ldr-logo-tm {
  position: absolute;
  top: 6px;
  right: -14px;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0;
}

/* Footer brand text (replaces nexus_global_pack_Logo.png in footer) */
.footer-logo-brand-text {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

/* Mobile: hide brand text if space is extremely tight */
@media (max-width: 360px) {
  .logo-brand-text {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════════
   BTN-QUOTE  (alias for btn-inquiry on inner pages)
═══════════════════════════════════════════════════════════ */
.btn-quote {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s, border-color 0.3s;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(180, 132, 90, 0.3);
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}


/* ═══════════════════════════════════════════════════════════
   ADDITIONAL RESPONSIVE FIXES
═══════════════════════════════════════════════════════════ */

/* ── 900px tablet breakpoint ─────────────────────────── */
@media (max-width: 900px) {
  .hero-left {
    padding: 60px 40px 60px 40px;
  }

  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cats-grid,
  .cats-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── 768px fixes (mobile) ────────────────────────────── */
@media (max-width: 768px) {
  /* Navbar brand text scales down for mobile */
  .logo-brand-text {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  /* Hero full-width on mobile */
  .hero {
    min-height: 100svh;
  }

  /* Fix hero left padding */
  .hero-left {
    padding: 72px 20px 40px;
  }

  /* Footer social on inner pages */
  .footer-social {
    margin-top: 16px;
  }

  /* About story image height */
  .about-story-photo {
    height: 320px;
  }

  /* Products grid */
  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Navbar: keep logo visible */
  .nav-logo {
    min-width: 0;
    gap: 8px;
  }

  .logo-img {
    height: 44px;
  }

  /* Hero stat badge font */
  .hero-stat-badge strong {
    font-size: 1.2rem;
  }

  /* Process steps */
  .process-step {
    flex: none;
    width: 100%;
  }
}

/* ── 480px small mobile ──────────────────────────────── */
@media (max-width: 480px) {
  .logo-img {
    height: 38px;
  }

  .btn-quote,
  .btn-inquiry {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .hero-heading {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  }

  .home-about-img img {
    height: 260px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .logo-brand-text {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .footer-logo-brand-text {
    font-size: 0.72rem;
  }

  /* Reviews ticker — tighter cards on small screens */
  .rv-card {
    width: 240px;
    padding: 18px 16px 16px;
  }

  .rv-text {
    font-size: 0.82rem;
  }

  .reviews-section {
    padding: 60px 0 56px;
  }

  /* Loader — prevent overflow on narrow screens */
  .ldr-line {
    width: calc(100vw - 48px);
    max-width: 320px;
  }

  .ldr-vision-tagline {
    font-size: 1.4rem;
  }

  .ldr-logo-img {
    width: 140px;
    height: 140px;
  }

  /* Catalogue — single column */
  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Cat tabs — allow scrolling row on very small screens */
  .cat-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 6px;
  }

  .c-tab {
    flex-shrink: 0;
  }
}

/* ── 360px ───────────────────────────────────────────── */
@media (max-width: 360px) {
  .ldr-vision-tagline {
    font-size: 1.15rem;
  }

  .ldr-logo-img {
    width: 110px;
    height: 110px;
  }

  .hero-heading {
    font-size: 1.6rem;
  }
}