@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url("swiper-bundle.min.css");
@import url("bootstrap.min.css");
@import url("bootstrap-icons.css");
/* =========================================================
   NEXRA INTERNATIONAL — DESIGN TOKENS
   Navy   #0B1F3B   Deep bg  #081428
   Silver #A9B4BF   Silver-light #E4E8EC
   Gold   #C9932E   Gold-light #E4B65A
   Paper  #F5F6F8
   ========================================================= */

:root {
  --navy: #001940;
  --navy-deep: #001940;
  --navy-soft: #12294b;
  --silver: #a9b4bf;
  --silver-light: #e4e8ec;
  --gold: #d4af37;
  --gold-light: #f4c95d;
  --paper: #f5f6f8;
  --ink: #10192b;
  --ink-soft: #5b6472;
  --white: #ffffff;
  --navy-900: var(--navy);
  --line: #e2e5ea;
  --radius-lg: 16px;
  --radius-md: 12px;
  --grad-accent: linear-gradient(120deg, var(--gold), var(--gold-light));
  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "Poppins", sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  margin: 0;
}

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

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

::selection {
  background: #d4a24c;
  color: var(--navy-deep);
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #d4a24c;
  outline-offset: 3px;
}

/* =========================================================
   LOADER
   ========================================================= */
#loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s var(--ease),
    visibility 0.6s var(--ease);
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-stage {
  perspective: 600px;
}

#loaderMark {
  width: 64px;
  height: auto;
  filter: brightness(0) invert(1);
  animation: spinMark 1.3s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
  transform-style: preserve-3d;
}

@keyframes spinMark {
  0% {
    transform: rotateY(0deg) scale(0.92);
    opacity: 0.5;
  }

  50% {
    transform: rotateY(180deg) scale(1.04);
    opacity: 1;
  }

  100% {
    transform: rotateY(360deg) scale(0.92);
    opacity: 0.5;
  }
}

/* =========================================================
   NAVBAR
   ========================================================= */
#mainNav {
  padding: 10px 0;
  background: var(--white);
  transition:
    background 0.35s var(--ease),
    padding 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 12px 0;
  background: var(--white);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(7, 18, 39, 0.25);
}

#brandLogo {
  height: 70px;
  width: auto;
  transition: height 0.35s var(--ease);
}

#mainNav.scrolled #brandLogo {
  height: 45px;
}

.navbar-nav .nav-link {
  color: #001941;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 1px;
  background: #d4a24c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: 4px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.btn-nexra-outline {
  border: 1px solid #001941;
  color: #001941;
  padding: 8px 18px;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid #d4a24c;
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 20;
  cursor: pointer;
}

.btn-nexra-outline.light {
  color: #fff;
}

.btn-nexra-outline:hover {
  background: #d4a24c;
  border-color: #d4a24c;
  color: var(--navy-deep);
}

/* =========================================================
   BUTTONS (shared)
   ========================================================= */
.btn-nexra-primary {
  background: #d4a24c;
  color: var(--navy-deep);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid #d4a24c;
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 20;
  cursor: pointer;
}

.btn-nexra-primary:hover {
  background: var(--navy-deep);
  color: #d4a24c;
  transform: translateY(-2px);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  margin-top: 2%;
}

.btn-wrap {
  position: relative;
  z-index: 3;
  width: auto;
}

/* Background Video */

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, 0.65);
}

/* Particle Layer */

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Keep all hero content above everything */
.hero p {
  max-width: 650px;
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 0;
}

.type-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  margin-left: 4px;
  background: #fff;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ---- hero 3D stage (mouse-parallax tilt applied via JS) ---- */
.hero-3d-stage {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0) rotateY(0);
  transition: transform 0.35s var(--ease);
  will-change: transform;
}

.hero-3d-stage {
  pointer-events: none;
}

.hero-3d-stage .btn-nexra-primary {
  pointer-events: auto;
}

/* ---- extruded / depth headline text ---- */
.depth-text {
  position: relative;
  display: inline;
  text-shadow:
    1px 1px 0 rgba(228, 232, 236, 0.35),
    2px 2px 0 rgba(228, 232, 236, 0.28),
    3px 3px 0 rgba(228, 232, 236, 0.2),
    4px 4px 0 rgba(228, 232, 236, 0.12),
    5px 5px 10px rgba(0, 0, 0, 0.45);
}

#typeTarget .accent-dot {
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.45);
}

.type-cursor {
  display: inline-block;
  width: 3px;
  height: 0.82em;
  margin-left: 4px;
  vertical-align: -0.08em;
  background: var(--gold-light);
  box-shadow: 0 0 10px rgba(228, 182, 90, 0.7);
  animation: cursorBlink 0.85s steps(1) infinite;
}

@keyframes cursorBlink {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: #cb8117;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4a24c;
  box-shadow: 0 0 0 4px rgba(201, 147, 46, 0.25);
}

.hero-headline {
  color: var(--paper);
  font-size: clamp(2.25rem, 1.2rem + 4vw, 4.6rem);
  font-weight: 600;
  line-height: 1.06;
  max-width: 920px;
  min-height: clamp(200px, 25vw, 239px);
}

.hero-headline-outline {
  -webkit-text-stroke: 1.5px var(--paper);
  color: transparent;
}

.accent-dot {
  color: #d4a24c;
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: perspective(1000px) rotateX(10deg) translateY(30px) scale(0.98);
  transform-origin: bottom center;
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
}

/* ---- generic 3D tilt card (JS sets --rx / --ry / --tz on pointermove) ---- */
.tilt-3d {
  --rx: 0deg;
  --ry: 0deg;
  --tz: 0px;
  transform-style: preserve-3d;
  transform: perspective(9000px) rotateX(var(--rx)) rotateY(var(--ry)) translateZ(var(--tz));
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
  will-change: transform;
}

.tilt-3d.tilting,
.tilt-3d.active {
  transition: transform 0.06s linear;
}

/* =========================================================
   STATS
   ========================================================= */
.stats-band {
  background: var(--paper);
  padding: 64px 0;
}

.stat-wrapper {
  height: 100%;
  text-align: center;
  transition: transform 0.4s var(--ease);
}

.stat-wrapper:hover {
  transform: translateY(-6px);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  color: var(--navy-deep);
  font-size: 0.88rem;
  margin-top: 10px;
  max-width: 220px;
  margin: 10px auto 0 auto;
}

/* =========================================================
   SECTION GENERIC
   ========================================================= */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: #cb8117;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-eyebrow.light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.18;
}

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

p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-top: 18px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 3px;
  transition:
    gap 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.link-arrow:hover {
  gap: 12px;
  color: #d4a24c;
  border-color: #d4a24c;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-section,
.section-pad {
  padding: clamp(30px, 5vw, 60px) 0;
  background: var(--white);
}

/* ---------- Diagram section ---------- */
.diagram-section {
  display: flex;
  justify-content: center;
}

.diagram-wrap {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

svg#venn {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.connector-line {
  stroke: rgba(32, 34, 43, 0.32);
  stroke-width: 1.6;
  fill: none;
}

.side-copy {
  position: absolute;
  width: clamp(150px, 16vw, 200px);
  /* was a fixed max-width: 200px */

}

.side-copy h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.side-copy p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(32, 34, 43, 0.72);
}

.copy-mission {
  top: 6%;
  left: -6%;
  /* was -6% — this was crossing into the image column */
  text-align: left;
}

.copy-vision {
  top: -3%;
  right: -10%;
  /* was -10% — reduce so it can't clip past the container */
  text-align: left;
}

.copy-value {
  bottom: -5%;
  right: -2%;
  text-align: left;
}

.copy-mission h3 {
  color: #101828;
}

.copy-vision h3 {
  color: #1f6fb7;
}

.copy-value h3 {
  color: #d8b93a;
}

@media (max-width: 1050px) {
  .side-copy {
    display: none;
  }

  .mobile-copy {
    display: block !important;
  }
}

.mobile-copy {
  display: none;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.25rem 5rem;
}

.mobile-copy .row-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}

.mobile-copy .row-item:last-child {
  border-bottom: none;
}

.mobile-copy .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.4rem;
  flex: none;
}

.mobile-copy h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.mobile-copy p {
  font-size: 0.9rem;
  color: rgba(32, 34, 43, 0.7);
  margin: 0;
}

@media (max-width: 576px) {
  .aboutSection-wrapper {
    min-height: 46vh;
    padding: 4rem 1.25rem 2.5rem;
  }

  .aboutSection-wrapper p {
    font-size: 0.95rem;
  }

  .mobile-copy {
    padding: 0 1rem 3.5rem;
  }
}

.about-section-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-section-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.flow-img {
  object-fit: contain;
  pointer-events: none;
  margin: 0;
  border-radius: 4px;
  will-change: top, left, width, height, opacity, transform;
}

@media (max-width: 768px) {
  .about-section-img {
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about-section-img {
    aspect-ratio: 4 / 3;
  }
}


/* ============================================================
     HOW IT MOVES
  ============================================================ */
.how-moves {
  position: relative;
  border-top: 1px solid rgba(195, 204, 214, 0.1);
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 56px);
  overflow: hidden;
}

.how-moves::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 60% at 92% 8%, rgba(28, 68, 110, 0.4), transparent 60%),
    radial-gradient(45% 40% at 4% 96%,
      rgba(212, 162, 76, 0.07),
      transparent 60%);
  pointer-events: none;
}

.how-moves-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
}

.how-header {
  display: grid;
  grid-template-columns: minmax(280px, 560px) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 96px);
}

@media (max-width: 900px) {
  .how-header {
    grid-template-columns: 1fr;
  }
}

/* ---- 3D rotating crate ---- */
.crate-scene {
  perspective: 900px;
  width: 190px;
  height: 190px;
  margin: 0 auto;
  flex-shrink: 0;
  justify-self: end;
}

@media (max-width: 900px) {
  .crate-scene {
    justify-self: start;
    margin-top: 8px;
  }
}

.crate3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation:
    crateSpin 16s linear infinite,
    crateBob 4.5s ease-in-out infinite;
}

@keyframes crateSpin {
  from {
    transform: rotateX(-18deg) rotateY(0deg);
  }

  to {
    transform: rotateX(-18deg) rotateY(360deg);
  }
}

@keyframes crateBob {

  0%,
  100% {
    margin-top: 0px;
  }

  50% {
    margin-top: -14px;
  }
}

.crate-face {
  position: absolute;
  width: 190px;
  height: 190px;
  background:
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.05) 0 3px,
      transparent 3px 22px),
    linear-gradient(160deg, #1b3557), (#0a1930 70%);
  border: 1px solid rgba(195, 204, 214, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.crate-face .mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #f0c988;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  background: transparent;
}

.crate-face .mark img {
  width: 100%;
  height: 80px;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(26, 143, 255, 0.65));
}

.crate-face .mark small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #c3ccd6;
  margin-top: 4px;
  font-weight: 500;
}

.crate-face.front {
  transform: rotateY(0deg) translateZ(95px);
  background: linear-gradient(160deg, #28446e, #12253f 70%);
}

.crate-face.back {
  transform: rotateY(180deg) translateZ(95px);
  background: linear-gradient(160deg, #28446e, #12253f 70%);
}

.crate-face.right {
  transform: rotateY(90deg) translateZ(95px);
  background: linear-gradient(160deg, #28446e, #12253f 70%);
}

.crate-face.left {
  transform: rotateY(-90deg) translateZ(95px);
  background: linear-gradient(160deg, #28446e, #12253f 70%);
}

.crate-face.top {
  transform: rotateX(90deg) translateZ(95px);
  background: linear-gradient(160deg, #28446e, #12253f 70%);
}

.crate-face.top .mark {
  color: #0a1930;
  text-shadow: none;
}

.crate-face.top .mark small {
  color: #1b3557;
}

.crate-face.bottom {
  transform: rotateX(-90deg) translateZ(95px);
  opacity: 0.85;
}

/* ---- journey track ---- */
.journey {
  position: relative;
  padding-top: 8px;
}

.journey-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 29px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(212, 162, 76, 0.5) 6%,
      rgba(212, 162, 76, 0.5) 94%,
      transparent);
}

.journey-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      var(--navy-deep) 5px,
      transparent 5px 12px);
  opacity: 0.7;
  animation: dashFlow 3.5s linear infinite;
}

.journey-mover {
  position: absolute;
  top: 29px;
  left: 0;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  margin-left: -13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0c988, #d4a24c 70%);
  box-shadow:
    0 0 0 5px rgba(212, 162, 76, 0.16),
    0 6px 18px rgba(0, 0, 0, 0.5);
  animation: journeyMove 9s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.journey-mover svg {
  width: 14px;
  height: 14px;
  color: #060f1f;
}

@keyframes journeyMove {
  0% {
    left: 0%;
    transform: translateY(0) rotate(0deg);
  }

  22% {
    left: 24%;
    transform: translateY(-16px) rotate(-8deg);
  }

  50% {
    left: 50%;
    transform: translateY(0) rotate(0deg);
  }

  72% {
    left: 76%;
    transform: translateY(-16px) rotate(8deg);
  }

  100% {
    left: 100%;
    transform: translateY(0) rotate(0deg);
  }
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

@media (max-width: 980px) {
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-line,
  .journey-mover {
    display: none;
  }
}

@media (max-width: 560px) {
  .journey-steps {
    grid-template-columns: 1fr;
  }
}

.journey-step {
  position: relative;
  padding-top: 52px;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.journey-step.in-view {
  opacity: 1;
  transform: translateY(0);
}

.journey-step .node {
  position: absolute;
  top: 20px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0a1930;
  border: 2px solid #f0c988;
  box-shadow: 0 0 0 4px #0a1930;
}

.journey-step .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--navy-deep);
  margin-bottom: 10px;
  display: block;
}

.journey-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.journey-step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--navy-deep);
}

/* =========================================================
   SERVICES (accordion rows)
   ========================================================= */
.services-section {
  background: var(--navy-deep);
  padding: clamp(30px, 5vw, 60px) 0;
  position: relative;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.services-section .service-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 39, 0.904);
  /* #071227 with 75% opacity */
  z-index: 1;
}

.services-wrapper {
  position: relative;
  z-index: 2;
  color: #fff;
}

.service-row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-row-header {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 34px 6px;
  cursor: pointer;
  transform: perspective(700px) translateZ(0) translateX(0);
  transition: transform 0.4s var(--ease);
}

.service-row-header:hover {
  transform: perspective(700px) translateZ(14px) translateX(6px);
}

.service-row-index {
  font-family: var(--font-mono);
  color: #d4a24c;
  font-size: 1.3rem;
  width: 40px;
  flex-shrink: 0;
}

.service-row-title {
  flex: 1;
}

.service-row-title h3 {
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  font-weight: 600;
  transition: color 0.3s var(--ease);
}

.service-row-header:hover .service-row-title h3 {
  color: var(--gold-light);
}

.service-row-title p {
  color: rgba(228, 232, 236, 0.6);
  margin-top: 6px;
  font-size: 0.95rem;
}

.service-row-icon {
  color: #d4a24c;
  font-size: 1.1rem;
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}

.service-row-header[aria-expanded="true"] .service-row-icon,
.service-row-header.expanded .service-row-icon {
  transform: rotate(135deg);
}

.service-row-body {
  padding: 0 6px 40px 68px;
  color: rgba(228, 232, 236, 0.82);
  font-size: 0.95rem;
}

.service-row-body .row>div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-row-body i {
  color: #d4a24c;
  margin-top: 3px;
}

.service-image-panel {
  position: sticky;
  top: 120px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.service-image-frame {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.service-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 0.25s var(--ease);
}

/* hidden until the flying clone has actually arrived */
.service-image-frame.awaiting-flow-img img {
  opacity: 0;
}

/* .service-image-frame img.exit { */
/* opacity: 0; */
/* transform: scale(.92); */
/* filter: blur(8px); */
/* } */

/* =========================================================
   NETWORK
   ========================================================= */
.network-section {
  position: relative;
  background: var(--navy);
  padding: 120px 0;
  overflow: hidden;
}

#networkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.network-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  backdrop-filter: blur(4px);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.network-card:hover {
  border-color: #d4a24c;
  background: rgba(255, 255, 255, 0.07);
}

.network-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  display: inline-block;
  margin-bottom: 16px;
}

.network-card h5 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.network-card p {
  color: rgba(228, 232, 236, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   TESTIMONIALS — Swiper
   ========================================================= */
.testimonial-section {
  background: var(--paper);
  padding: clamp(30px, 5vw, 60px) 0;
  overflow: hidden;
}

.testimonial-swiper {
  padding-bottom: 50px;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card-new {
  position: relative;
  background: var(--white);
  border: 1px solid #e7e9ed;
  border-radius: 16px;
  padding: 36px 30px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11, 31, 59, 0.05);
  transition:
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card-new:hover {
  border-color: #d4a24c;
  box-shadow: 0 24px 44px rgba(11, 31, 59, 0.12);
}

.tc-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 2px solid var(--silver-light);
  flex-shrink: 0;
}

.tc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-stars {
  color: #d4a24c;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-card-new p {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  flex-grow: 1;
}

.tc-author {
  margin-top: 20px;
}

.tc-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy-deep);
}

.tc-author span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.tc-quote-icon {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--silver-light);
}

/* Swiper pagination dots */
.testimonial-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--silver);
  opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: #d4a24c;
  width: 22px;
  border-radius: 4px;
}

/* Nav buttons (custom, styled to match NEXRA) */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.tc-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.tc-nav-btn:hover {
  background: #d4a24c;
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.tc-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

/* =========================================================
   CTA
   ========================================================= */
.cta-section {
  background: var(--white);
  padding-bottom: clamp(30px, 5vw, 60px);
}

.cta-box {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 22px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(201, 147, 46, 0.25),
      transparent 70%);
}

.cta-title {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 6px;
}

@media (max-width: 991px) {
  .cta-box {
    padding: 36px 26px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-deep);
  padding: 80px 0 30px;
}

.footer-logo {
  height: 55px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer .col-lg-4 p {
  color: rgba(228, 232, 236, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 340px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(228, 232, 236, 0.8);
  transition: all 0.3s var(--ease);
}

.social-row a:hover {
  background: #d4a24c;
  border-color: #d4a24c;
  color: var(--navy-deep);
}

.footer h6 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: rgba(228, 232, 236, 0.65);
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
}

.footer ul li a:hover {
  color: var(--gold-light);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(228, 232, 236, 0.65);
  font-size: 0.9rem;
}

.contact-list i {
  color: #d4a24c;
  margin-top: 2px;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 50px 0 24px;
}

.foot-fine {
  color: rgba(228, 232, 236, 0.45);
  font-size: 0.8rem;
}

.foot-fine a {
  transition: all 0.5s;
}

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

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #d4a24c;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
  z-index: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 16px;
    border-radius: 12px;
    padding: 16px;
  }

  .service-row-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .service-row-body {
    padding-left: 6px;
  }
}

.video-container {
  position: relative;
  width: 100%;
  height: 400px;
  /* Fixed height */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Dark Overlay */
.video-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* 50% darkness */
  z-index: 1;
}

/* Content Above Overlay */
.video-container .content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.two-disciplines-section {
  --td-navy: #0b1b34;
  --td-navy-deep: #081426;
  --td-gold: #cf9d4f;
  --td-gold-soft: #e9c98a;
  --td-ink: #16202f;
  --td-slate: #5c6675;
  --td-line: rgba(11, 27, 52, 0.12);
  --td-paper: #f5f6f8;
  position: relative;
  background: var(--td-paper);
  padding: clamp(30px, 5vw, 60px) 0;
  overflow: hidden;
}

.two-disciplines-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 45% at 92% 6%,
      rgba(207, 157, 79, 0.1),
      transparent 60%),
    radial-gradient(45% 40% at 4% 100%, rgba(11, 27, 52, 0.06), transparent 60%);
  pointer-events: none;
}

.td-header {
  max-width: 620px;
  margin: 0 auto clamp(48px, 7vw, 88px);
  text-align: left;
}

.two-disciplines-section .section-title em {
  font-style: normal;
  color: var(--td-gold);
}

.two-disciplines-section p {
  color: var(--td-slate);
}

.td-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
}

.td-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.td-row--reverse .td-media {
  order: 2;
}

.td-row--reverse .td-copy {
  order: 1;
}

@media (max-width: 860px) {
  .td-row {
    display: block;
  }

  .td-row .td-copy {
    margin-top: 20px;
  }
}

.td-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--td-navy);
  box-shadow: 0 24px 48px -28px rgba(11, 27, 52, 0.35);
}

.td-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.td-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 0.7s cubic-bezier(0.16, 0.9, 0.28, 1);
  filter: saturate(1.02) contrast(1.02);
}

.td-media:hover img {
  transform: scale(1);
}

.td-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg,
      rgba(8, 20, 38, 0.04) 30%,
      rgba(8, 20, 38, 0.5) 100%);
  pointer-events: none;
}

.td-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--td-gold-soft);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.td-corner.tl {
  top: 12px;
  left: 12px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.td-corner.br {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.td-media:hover .td-corner {
  opacity: 1;
}

.td-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(8, 20, 38, 0.55);
  border: 1px solid rgba(233, 201, 138, 0.4);
  padding: 5px 10px;
  backdrop-filter: blur(6px);
  transform: translateY(6px);
  opacity: 0.85;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.td-media:hover .td-tag {
  transform: translateY(0);
  opacity: 1;
}

.td-copy {
  max-width: 480px;
}

.td-dept {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--td-gold);
  margin-bottom: 12px;
}

.td-copy h3 {
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  color: var(--td-ink);
  margin-bottom: 14px;
}

.td-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--td-slate);
  margin-bottom: 20px;
}

.td-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.td-chips span {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--td-navy);
  border: 1px solid var(--td-line);
  padding: 5px 10px;
  border-radius: 2px;
}

.td-cta {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--td-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.td-cta p {
  color: var(--td-slate);
  max-width: 460px;
  margin: 0;
  font-size: 14.5px;
}

.td-row {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 0.9, 0.28, 1),
    transform 0.8s cubic-bezier(0.16, 0.9, 0.28, 1);
}

.td-row .td-media {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s cubic-bezier(0.16, 0.9, 0.28, 1);
}

.td-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.td-row.is-visible .td-media {
  clip-path: inset(0 0 0% 0);
}

@media (prefers-reduced-motion: reduce) {

  .td-row,
  .td-media,
  .td-rule,
  .td-media img {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* ============================================================
   GALLERY / WORK
============================================================ */
.gallery-section {
  padding: clamp(30px, 5vw, 60px) 0;
  background: #060f1f;
  position: relative;
}

.gallery-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 3.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  grid-auto-flow: dense;
  gap: 14px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: #12253f;
  border: 1px solid rgba(195, 204, 214, 0.12);
}

.g-item.g-big {
  grid-column: span 2;
  grid-row: span 2;
}

.g-item.g-tall {
  grid-row: span 2;
}

.g-item.g-wide {
  grid-column: span 2;
}

.g-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 0.7s ease;
}

.g-item:hover img {
  transform: scale(1);
}

.g-overlay {
  position: absolute;
  inset: 0;
  padding: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(200deg,
      rgba(6, 15, 31, 0.05) 20%,
      rgba(6, 15, 31, 0.92) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.g-item:hover .g-overlay {
  opacity: 1;
}

.g-cat {

  font-size: 10px;
  letter-spacing: 0.14em;
  color: #f0c988;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.g-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.g-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #f0c988;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.g-corner.tl {
  top: 12px;
  left: 12px;
  border-top: 1.5px solid;
  border-left: 1.5px solid;
}

.g-corner.br {
  bottom: 12px;
  right: 12px;
  border-bottom: 1.5px solid;
  border-right: 1.5px solid;
}

.g-item:hover .g-corner {
  opacity: 1;
}

.g-plus {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(240, 201, 136, 0.6);
  background: rgba(6, 15, 31, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0c988;
  opacity: 0;
  transform: scale(0.6) rotate(-45deg);
  transition: all 0.35s ease;
}

.g-item:hover .g-plus {
  opacity: 1;
  transform: scale(1) rotate(0);
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }

  .g-item.g-big {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .g-item,
  .g-item.g-big,
  .g-item.g-tall,
  .g-item.g-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* repeatable scroll reveal (both directions) */
.scroll-fade {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.scroll-fade.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-fade-x {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.scroll-fade-x.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(6, 15, 31, 0.94);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-frame {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.16, 0.9, 0.28, 1);
}

.lightbox.open .lightbox-frame {
  transform: scale(1);
}

.lightbox-img-wrap {
  border: 1px solid rgba(212, 162, 76, 0.35);
  background: #0a1930;
  overflow: hidden;
  max-height: 72vh;
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #060f1f;
}

.lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  flex-wrap: wrap;
}

.lb-cat {
  display: block;

  font-size: 11px;
  letter-spacing: 0.16em;
  color: #f0c988;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lb-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 26px);
  color: #fff;
}

.lightbox-count {

  font-size: 11px;
  color: #c3ccd6;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(221, 227, 234, 0.35);
  background: rgba(6, 15, 31, 0.6);
  color: #f4f6f9;
  transition: all 0.25s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: #f0c988;
  color: #f0c988;
}

.lightbox-close {
  top: -56px;
  right: 0;
}

.lightbox-nav.prev {
  left: -14px;
  top: 50%;
  transform: translate(-100%, -50%);
}

.lightbox-nav.next {
  right: -14px;
  top: 50%;
  transform: translate(100%, -50%);
}

@media (max-width: 760px) {
  .lightbox-nav.prev {
    left: 0;
    transform: translateY(-50%);
  }

  .lightbox-nav.next {
    right: 0;
    transform: translateY(-50%);
  }

  .lightbox-close {
    top: -48px;
  }
}

/* ============================================================
   CONTACT — WHITE THEME
============================================================ */
.contact-section {
  padding: clamp(30px, 5vw, 60px) 0;
  background: #f4f6f9;
  position: relative;
}

/* text overrides — this section only */
.contact-section .section-eyebrow {
  color: #b8843a;
  /* darker gold, readable on white */
}

.contact-section .section-eyebrow .eyebrow-dot,
.contact-section .section-eyebrow::before {
  background: #d4a24c;
}

.contact-section .section-title {
  color: #0a1930;
}

.contact-section .section-title em {
  font-style: normal;
  background: linear-gradient(180deg, #d4a24c, #a97a2e 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-section p {
  color: #4a5568;
  max-width: 560px;
}

@media (max-width: 940px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

/* contact detail rows */
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(10, 25, 48, 0.1);
}

.contact-detail:last-of-type {
  border-bottom: 1px solid rgba(10, 25, 48, 0.1);
}

.contact-detail i {
  font-size: 20px;
  color: #d4a24c;
  margin-top: 2px;
}

.cd-label {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #b8843a;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 700;
}

.cd-value {
  font-size: 14.5px;
  color: #1b2a3d;
  line-height: 1.55;
}

/* contact form card */
.contact-form {
  background: #ffffff;
  border: 1px solid rgba(10, 25, 48, 0.08);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow:
    0 1px 2px rgba(10, 25, 48, 0.04),
    0 20px 45px -25px rgba(10, 25, 48, 0.18);
  position: sticky;
  top: 120px;
}

@media (max-width: 767.98px) {
  .contact-form {
    position: static;
  }
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media (max-width: 560px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
}

.contact-form label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7686;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid rgba(10, 25, 48, 0.14);
  border-radius: 4px;
  color: #0a1930;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa4b2;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #d4a24c;
  box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.16);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.cf-field {
  margin-bottom: 18px;
}

.cf-submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---- inner page hero (About / Services) ---- */
.inner-hero {
  position: relative;
  background: var(--paper);
  padding: clamp(130px, 16vw, 170px) 0 0;
  overflow: hidden;
}

.breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.breadcrumb-row a {
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.breadcrumb-row a:hover {
  color: #d4a24c;
}

.breadcrumb-row i {
  font-size: 0.8rem;
  color: #d4a24c;
}

.split-media {
  position: relative;
  perspective: 1200px;
}

.split-media::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border-radius: 12px;
  background: linear-gradient(120deg,
      var(--blue-500),
      var(--cyan-400));
  opacity: 0.12;
  z-index: 0;
}

.split-media .media-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 26px 50px -22px rgba(11, 28, 51, 0.32);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.split-media img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-media:hover .media-frame {
  transform: translateY(-6px);
}

.split-media:hover img {
  transform: scale(1.06);
}

/* ===== FLOATING BADGE (overlaps images) ===== */
.float-badge {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  box-shadow: 0 20px 40px -16px rgba(11, 28, 51, 0.35);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: badgeFloat 3.6s ease-in-out infinite;
}

.float-badge .fb-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex: 0 0 42px;
}

.float-badge .fb-num {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.1;
}

.float-badge .fb-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@keyframes badgeFloat {

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

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

@media (prefers-reduced-motion: reduce) {
  .float-badge {
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .float-badge {
    padding: 0.75rem 0.9rem;
  }

  .float-badge .fb-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    flex-basis: 34px;
  }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-weight: 500;
  font-size: 0.94rem;
}

.check-list i {
  color: #fff;
  background: var(--navy);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  flex: 0 0 22px;
  margin-top: 0.15rem;
}

/* ============================================================
ABOUT — stats-band
============================================================ */

.about-stats-wrapper {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 22px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.about-stats-wrapper .stat-label {
  color: var(--white);
}

/* =========================================================
   ABOUT — mission-vision
   ========================================================= */
.mv-box {
  border-radius: 16px;
  text-align: center;
  margin-bottom: 3rem;
}

.mv-box h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0.4rem 0 1rem;
}

.mv-box p {
  max-width: 42rem;
  margin: 0 auto;
}

.mv-card {
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  padding: 2.2rem 2rem;
  height: 100%;
  position: relative;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  overflow: hidden;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -24px rgba(11, 28, 51, 0.28);
}

.mv-card:hover::after {
  opacity: 1;
}

.mv-card .mv-idx {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--paper);
  z-index: 0;
}

.mv-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.mv-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* =========================================================
   SERVICES — PILLAR NAV (jump links styled as index tabs)
   ========================================================= */
.pillar-nav {
  position: sticky;
  top: 78px;
  z-index: 40;
  background: rgba(245, 246, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e5ea;
}

.pillar-nav-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
}

.pillar-nav-inner::-webkit-scrollbar {
  display: none;
}

.pillar-nav-link {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--ink-soft);
  border: 1px solid #dde1e7;
  transition: all 0.3s var(--ease);
}

.pillar-nav-link:hover,
.pillar-nav-link.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* =========================================================
   BLOG — preview swiper (homepage)
   ========================================================= */
.blog-preview-section {
  background: var(--white);
  padding: clamp(30px, 5vw, 60px) 0;
  border-top: 1px solid #e7e9ed;
  overflow: hidden;
}

.blog-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

/* =========================================================
   BLOG — featured + list layout (homepage)
   ========================================================= */
.blog-featured-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 991px) {
  .blog-featured-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- featured card ---- */
.blog-featured-card {
  display: block;
  background: var(--white);
  border: 1px solid #e7e9ed;
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.blog-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(11, 31, 59, 0.14);
  border-color: #d4a24c;
}

.blog-featured-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.6s var(--ease);
}

.blog-featured-card:hover .blog-featured-img img {
  transform: scale(1);
}

.blog-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy-deep);
  border: 1px solid rgba(212, 162, 76, 0.5);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.blog-featured-body {
  padding: 30px 28px 32px;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.blog-featured-body h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
}

.blog-featured-card:hover .blog-featured-body h3 {
  color: #b8843a;
}

.blog-featured-body p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 20px;
}

.blog-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 3px;
  transition:
    gap 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.blog-featured-card:hover .blog-featured-link {
  gap: 12px;
  color: #d4a24c;
  border-color: #d4a24c;
}

/* ---- side list ---- */
.blog-side-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-side-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid #e7e9ed;
  border-radius: 12px;
  padding: 12px;
  flex: 1;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.blog-side-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(11, 31, 59, 0.1);
  border-color: #d4a24c;
}

.blog-side-img {
  flex-shrink: 0;
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
}

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

.blog-side-item:hover .blog-side-img img {
  transform: scale(1);
}

.blog-side-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.blog-card-tag.small {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: #d4a24c;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 6px;
  width: fit-content;
}

.blog-side-body h4 {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.35;
  margin: 0 0 6px;
  transition: color 0.3s var(--ease);
}

.blog-side-item:hover .blog-side-body h4 {
  color: #b8843a;
}

.blog-side-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

@media (max-width: 560px) {
  .blog-side-item {
    flex-direction: column;
  }

  .blog-side-img {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

/* =========================================================
   BLOG — listing page
   ========================================================= */
.blog-listing-section {
  background: var(--paper);
  padding: 0 0 clamp(30px, 5vw, 60px);
}

.blog-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ---- featured post row ---- */
.blog-featured-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}

@media (max-width: 860px) {
  .blog-featured-row {
    grid-template-columns: 1fr;
  }
}

.blog-featured-media {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.6s var(--ease);
}

.blog-featured-row:hover .blog-featured-media img {
  transform: scale(1);
}

.blog-featured-info .blog-card-tag.small {
  margin-bottom: 14px;
}

.blog-featured-info h1 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.3;
  margin-bottom: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-featured-info p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 34rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* ---- eyebrow + heading above grid ---- */
.blog-listing-heading {
  margin-bottom: 40px;
}

.blog-listing-heading .section-eyebrow {
  display: block;
  margin-bottom: 10px;
}

/* ---- card: tag under image ---- */
.blog-card-img {
  height: 275px;
  overflow: hidden;
}

.blog-grid-item a .blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s var(--ease);
}

.blog-grid-item a:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 20px 4px 0;
}

.blog-card-body .blog-card-tag.small {
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-card:hover .blog-card-body h3 {
  color: #b8843a;
}

.blog-card-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-filter-btn {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--ink-soft);
  border: 1px solid #dde1e7;
  background: transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.blog-filter-btn:hover,
.blog-filter-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

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

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-grid-item {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  height: 100%;
}

.blog-grid-item a {
  height: 100%;
  display: block;
}

.blog-grid-item.is-hidden {
  display: none;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
}

.bp-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #dde1e7;
  background: var(--white);
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.bp-btn:hover,
.bp-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.bp-btn.bp-arrow {
  border: none;
  background: transparent;
  color: var(--ink-soft);
}

.bp-btn.bp-arrow:hover {
  color: #b8843a;
  background: transparent;
}

/* =========================================================
   BLOG — detail / article page
   ========================================================= */
.article-hero {
  background: var(--paper);
  padding: clamp(130px, 16vw, 170px) 0 0;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.article-cat-pill {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: #d4a24c;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.article-meta-row span {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.article-title {
  color: #001941;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 880px;
}

.article-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.article-author-row img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;

}


.article-author-row strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-deep);
}

.article-author-row span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.article-feature-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/8;
  background: var(--navy);
  margin: 40px 0 0;
}

.article-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s var(--ease);
}

.article-feature-img img:hover {
  transform: scale(1.04);
}

.article-body-section {
  background: var(--paper);
  padding: clamp(30px, 5vw, 60px) 0;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 48px 0 18px;
}

.article-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 34px 0 14px;
}

.article-content ul {
  margin: 0 0 26px;
  padding-left: 0;
}

.article-content ul li {
  position: relative;
  padding-left: 28px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.article-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4a24c;
}

.article-blockquote {
  border-left: 3px solid #d4a24c;
  padding: 6px 0 6px 26px;
  margin: 36px 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.5;
}

.article-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid #e7e9ed;
}

.article-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  border: 1px solid #dde1e7;
  padding: 6px 12px;
  border-radius: 999px;
}

.article-share-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.article-share-row span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 700;
}

.article-share-row a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #dde1e7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  transition: all 0.3s var(--ease);
  font-size: 1.2rem;
}

.article-share-row a:hover {
  background: #d4a24c;
  border-color: #d4a24c;
  color: var(--navy-deep);
}

.related-posts-section {
  background: var(--white);
  padding: clamp(30px, 5vw, 60px) 0;
}

.trade-section {
  background: var(--navy-deep);
  overflow: hidden;
  padding: 120px 0;
}

.left-col {
  color: #fff;
}

.light p {
  color: white;
}

.trade-section p {
  color: #fff;
}

.trade-section.in-view .desc {
  opacity: 1;
  transform: translateY(0);
}

.mosaic {
  position: relative;
  min-height: 560px;
  height: 100%;
}

.diamond-box {
  position: absolute;
  opacity: 0;
}

.trade-section.in-view .diamond-box {
  animation: pop-in 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

.diamond-box.big {
  animation-delay: 0.05s !important;
}

.diamond-box.top {
  animation-delay: 0.35s !important;
}

.diamond-box.bottom {
  animation-delay: 0.55s !important;
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.75) translateY(24px);
  }

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

.diamond {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  transform: rotate(45deg);
  box-shadow: 0 18px 40px rgba(6, 16, 28, 0.4);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.diamond-box:hover .diamond {
  transform: rotate(45deg) scale(1.05);
  box-shadow: 0 24px 50px rgba(6, 16, 28, 0.5);
}

.diamond img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(-45deg);
  filter: grayscale(65%) contrast(1.05);
  transition: filter 0.5s ease;
}

.diamond-box:hover img {
  filter: grayscale(20%) contrast(1.05);
}

.diamond .tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(11, 27, 43, 0.12),
      rgba(11, 27, 43, 0.65));
  mix-blend-mode: multiply;
}

.diamond .tint-color {
  position: absolute;
  inset: 0;
  background: #1c3a56;
  mix-blend-mode: color;
  opacity: 0.55;
}

.label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  white-space: nowrap;
}

.label .name {
  color: #fff;
  font-size: clamp(1rem, 0.85rem + 0.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Desktop / tablet positions: one large centered-right, small top-left, small bottom-left */
.diamond-box.big {
  width: clamp(230px, 25vw, 420px);
  height: clamp(230px, 25vw, 420px);
  top: 40%;
  right: 0%;
  margin-top: calc(-1 * clamp(115px, 13.5vw, 170px));
  margin-left: calc(-1 * clamp(115px, 13.5vw, 170px));
}

.diamond-box.big .label {
  bottom: 50%;
}

.diamond-box.top {
  width: clamp(130px, 15vw, 210px);
  height: clamp(130px, 15vw, 210px);
  top: 1%;
  left: 15%;
}

.diamond-box.top .label {
  top: 50%;
}

.diamond-box.bottom {
  width: clamp(130px, 15vw, 210px);
  height: clamp(130px, 15vw, 210px);
  bottom: 7%;
  left: 15%;
}

.diamond-box.bottom .label {
  bottom: 50%;
}

.flare {
  position: absolute;
  right: -10%;
  top: -15%;
  width: 55%;
  height: 70%;
  background: var(--steel);
  opacity: 0.16;
  border-radius: 40%;
  transform: rotate(20deg);
  filter: blur(4px);
  pointer-events: none;
}

@media (max-width: 1500px) {
  .diamond-box.big {
    top: 44%;
    right: 7%;
  }
}

@media (max-width: 1399px) {
  .diamond-box.big {
    top: 46%;
    right: 0;
  }
}

@media (max-width: 1300px) {
  .diamond-box.big {
    top: 48%;
    right: 8%;
  }
}

@media (max-width: 1199px) {
  .diamond-box.big {
    top: 49%;
    right: 4%;
  }
}

@media (max-width: 1100px) {
  .diamond-box.big {
    top: 49%;
    right: 15%;
  }
}

@media (max-width: 991.98px) {
  .mosaic {
    min-height: 520px;
  }

  .diamond-box.top {
    top: 10%;
  }
}

/* Mobile: stack diamonds instead of absolute overlap */
@media (max-width: 767.98px) {
  .mosaic {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.75rem;
    padding: 3rem 0 4rem;
  }

  .diamond-box {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    margin: 0 !important;
  }

  .diamond-box.big {
    order: 1;
  }

  .diamond-box.top {
    width: min(38vw, 170px);
    height: min(38vw, 170px);
    order: 0;
  }

  .diamond-box.bottom {
    width: min(38vw, 170px);
    height: min(38vw, 170px);
    order: 2;
  }

  .flare {
    display: none;
  }
}

@media (max-width:575px) {
  .diamond-box.big {
    width: min(52vw, 230px);
    height: min(52vw, 230px);
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .headline,
  .desc,
  .diamond-box {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   CRATE → DIAMOND FLIGHT
   Clone of the 3D crate travels from "how-it-moves" down to
   the trade-section, the lid pops open, and three photo
   "sparks" fly out into the mosaic's diamond positions.
   ========================================================= */
.crate-flight-clone {
  position: fixed;
  top: 0;
  left: 0;
  perspective: 900px;
  pointer-events: none;
  z-index: 500;
  opacity: 0;
  will-change: transform, opacity;
}

.crate-flight-clone .crate3d {
  animation: none !important;
  /* we drive rotation/position via JS instead */
}

.diamond-spark {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
  z-index: 480;
  opacity: 0;
  box-shadow: 0 18px 40px rgba(6, 16, 28, 0.4);
  will-change: transform, opacity;
}

.diamond-spark img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: grayscale(45%) contrast(1.05);
}

/* lets JS own opacity for the real diamonds without the
   pop-in keyframe fighting it every frame */
.diamond-box.js-flight-controlled {
  animation: none !important;
}

/* Product Page */
.hero-cats {
  position: relative;
  padding: clamp(150px, 20vw, 190px) 0 4rem;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      rgba(6, 13, 24, 0.88) 0%,
      rgba(6, 13, 24, 0.74) 55%,
      rgba(6, 13, 24, 0.92) 100%);
}

.hero-cats::before,
.hero-cats::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.hero-cats::before {
  width: 340px;
  height: 340px;
  background: rgba(212, 175, 55, 0.35);
  top: -140px;
  left: -80px;
}

.hero-cats::after {
  width: 280px;
  height: 280px;
  background: rgba(244, 201, 93, 0.22);
  bottom: -120px;
  right: -60px;
}

.hero-cats .container {
  position: relative;
  z-index: 1;
}

.hero-cats .breadcrumb-row,
.hero-cats .breadcrumb-row a {
  color: var(--white);
}

.hero-cats .breadcrumb-row a:hover {
  color: #d4a24c;
}

.hero-cats-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.hero-cats-title {
  margin: 0.3rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cats .slider-arrow.on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(6px);
}

.hero-cats .slider-arrow.on-dark:hover {
  background: var(--grad-accent);
  border-color: transparent;
  color: #fff;
}

.hero-cats-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overflow-y: hidden;
}

.hero-cats-row::-webkit-scrollbar {
  display: none;
}

.hero-cat-card {
  display: block;
  text-decoration: none;
  position: relative;
  flex: 0 0 168px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.hero-cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: var(--radius-lg);
  background: var(--grad-accent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.hero-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -16px rgba(0, 0, 0, 0.6);
}

.hero-cat-card:hover::before {
  opacity: 1;
}

.hero-cat-thumb {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: #fff;
}

.hero-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-cat-name {
  text-align: center;
  padding: 0.85rem 0.4rem;
  border-top: 1px solid var(--line);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (min-width: 1200px) {
  .hero-cat-card {
    flex-basis: calc((100% - 7 * 1.1rem) / 8);
  }
}

/* ===== CATEGORY SLIDER NAV (reused arrow-button pattern) ===== */
.slider-arrows {
  display: flex;
  gap: 0.6rem;
}

.slider-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.slider-arrow:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== SHOWCASE SECTION ===== */
.showcase {
  padding: 6rem 0;
  background: #fff;
  overflow: hidden;
}

.showcase-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin: 0.6rem 0 1.2rem;
}

.showcase-copy {
  color: var(--ink-soft);
  max-width: 30rem;
  margin-bottom: 2rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.read-more .line {
  width: 52px;
  height: 1px;
  background: var(--ink);
  position: relative;
  transition: width 0.2s ease;
}

.read-more i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.read-more:hover {
  color: var(--gold);
}

.read-more:hover .line {
  background: var(--gold);
  width: 64px;
}

.read-more:hover i {
  transform: translateX(4px);
  color: var(--gold);
}

.showcase-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 9.5rem;
  color: var(--paper);
  z-index: 0;
  white-space: nowrap;
  user-select: none;
}

.showcase-product {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff, var(--paper) 72%);
  box-shadow:
    0 30px 60px -18px rgba(11, 28, 51, 0.28),
    inset 0 0 0 1px var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-product i {
  font-size: 6.6rem;
  color: var(--navy-900);
}

.showcase-callout {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.showcase-callout i {
  font-size: 0.6rem;
  color: var(--gold);
}

.showcase-thumb {
  position: absolute;
  bottom: 0;
  left: -1.2rem;
  z-index: 2;
  width: 118px;
  height: 118px;
}

.showcase-thumb .corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold);
}

.showcase-thumb .corner.tl {
  top: -6px;
  left: -6px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.showcase-thumb .corner.tr {
  top: -6px;
  right: -6px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.showcase-thumb .corner.bl {
  bottom: -6px;
  left: -6px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.showcase-thumb .corner.br {
  bottom: -6px;
  right: -6px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.showcase-thumb .thumb-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-thumb .thumb-inner i {
  font-size: 2rem;
  color: var(--navy-900);
}

@media (max-width: 991.98px) {
  .showcase-watermark {
    font-size: 5.5rem;
  }

  .showcase-thumb {
    display: none;
  }
}

/* ================================================================
     ===== PRODUCTS SECTION — catalog + sidebar (dark-blue theme) =====
     ================================================================ */
.products-section {
  padding: 50px 0 clamp(30px, 5vw, 60px);
  background: var(--paper);
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.3rem 0 0;
}

/* ---- toolbar: results count / sort / search ---- */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.results-count {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.toolbar-controls {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.combo-field {
  display: flex;
}

.combo-field select,
.combo-field input {
  border: 1px solid var(--line);
  border-right: none;
  background: #fff;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 1.1rem;
  height: 46px;
  min-width: 170px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  appearance: none;
  -webkit-appearance: none;
}

.combo-field input {
  text-transform: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  min-width: 190px;
}

.combo-field input::placeholder {
  color: var(--ink-soft);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.combo-field select:focus,
.combo-field input:focus {
  outline: none;
  border-color: var(--gold);
}

.combo-btn {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: none;
  color: #fff;
  background: var(--navy-900);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.18s ease;
}

.combo-btn:hover {
  background: var(--gold);
}

/* ---- product card ---- */
.product-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 22px 44px -22px rgba(11, 28, 51, 0.32);
  transform: translateY(-4px);
}

.product-thumb {
  aspect-ratio: 4/3.1;
  position: relative;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-md);
}

.badge-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.65rem;
  border-radius: 4px;
}

.badge-sale {
  background: var(--navy-900);
  color: #fff;
}

.badge-new {
  background: var(--grad-accent);
  color: #fff;
}

.badge-sold {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.product-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.product-cats {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.product-cats .cat-a {
  color: #cb8117;
}

.product-cats .sep {
  color: var(--ink-soft);
  margin: 0 0.3rem;
}

.product-cats .cat-b {
  color: var(--ink-soft);
}

.product-row {
  display: block;
}

.product-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.fade-item {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.fade-item.is-hidden {
  display: none;
}

.no-results {
  text-align: center;
  color: var(--ink-soft);
  padding: 2.5rem 0;
  display: none;
}

.no-results.show {
  display: block;
}

/* ---- sidebar ---- */

.sidebar-block {
  margin-bottom: 2.4rem;
}

.sidebar-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem;
}

.sidebar-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: var(--grad-accent);
  border-radius: 2px;
}

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

.cat-list li {
  border-bottom: 1px solid var(--line);
}

.cat-list li:first-child {
  border-top: 1px solid var(--line);
}

.cat-list button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.75rem 0.1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  transition:
    color 0.18s ease,
    padding-left 0.18s ease;
}

.cat-list button:hover {
  color: var(--gold);
  padding-left: 0.35rem;
}

.cat-list button.active {
  color: var(--gold);
}

.cat-list button.active::before {
  content: "— ";
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag-pill {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: all 0.18s ease;
}

.tag-pill:hover,
.tag-pill.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

@media (max-width: 991.98px) {
  .shop-sidebar {
    margin-top: 2.5rem;
    border-top: 1px solid var(--line);
    padding-top: 2.5rem;
  }
}

/* ===== SCROLL-REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   NEXRA INTERNATIONAL — PRODUCT DETAIL (no pricing)
   Extends the tokens already defined in css/styles.css
   ========================================================= */

.pd-breadcrumb-section {
  background: var(--paper);
  padding: clamp(130px, 16vw, 170px) 0 0;
}

.pd-section {
  background: var(--paper);
  padding: clamp(30px, 5vw, 60px) 0;
}

/* ---- gallery ---- */
.pd-gallery-main {
  aspect-ratio: 4/3.4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
}

.pd-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
}

.pd-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.pd-thumb {
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease;
}

.pd-thumb.active,
.pd-thumb:hover {
  border-color: var(--gold);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---- info column ---- */
.pd-info {
  padding-left: clamp(0px, 2vw, 24px);
}

.pd-cats {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.pd-cats .cat-a {
  color: #cb8117;
}

.pd-cats .sep {
  color: var(--ink-soft);
  margin: 0 0.3rem;
}

.pd-cats .cat-b {
  color: var(--ink-soft);
}

.pd-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.pd-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.pd-availability .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e8b57;
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.18);
}


.pd-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.pd-actions .btn-nexra-primary,
.pd-actions .btn-nexra-outline {
  padding: 12px 26px;
  font-size: 0.9rem;
}

/* ---- tabs ---- */
.pd-tabs {
  margin-top: 3.5rem;
}

.pd-tab-nav {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.8rem;
}

.pd-tab-link {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.9rem 1.3rem;
  position: relative;
  transition: color 0.2s ease;
}

.pd-tab-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.pd-tab-link.active {
  color: var(--ink);
}

.pd-tab-link.active::after {
  transform: scaleX(1);
}

.pd-tab-panel {
  display: none;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.8;
  max-width: 46rem;
}

.pd-tab-panel.active {
  display: block;
}

.pd-tab-panel table {
  width: 100%;
  max-width: 30rem;
}

.pd-tab-panel table td {
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.pd-tab-panel table td:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  width: 40%;
}

/* ---- related products ---- */
.related-section {
  background: var(--white);
  padding: clamp(30px, 5vw, 60px) 0;
}

.related-title {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--ink);
  margin: 2.8rem 0 1.8rem;
}

.service-page {
  background: var(--paper);
}

/* Service Page */
.service-page p {
  max-width: 900px;
}

.service,
.service-page {
  margin: 0 auto;
}

.service.light {
  background: var(--navy);
  color: var(--white);
}

.service {
  padding: clamp(30px, 5vw, 60px) 0;
}

/* accordion */
.accordion-row {
  border-top: 1px solid rgba(213, 215, 219, 1);
}

.accordion-row:last-child {
  border-bottom: 1px solid rgba(213, 215, 219, 1);
}

.service.light .accordion-row {
  border-top: 1px solid rgba(237, 240, 247, 0.09);
}

.service.light .accordion-row:last-child {
  border-bottom: 1px solid rgba(237, 240, 247, 0.09);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 2px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 500;
  text-align: left;
}

.service.light .accordion-trigger {
  color: #edf0f7;
}

.accordion-trigger .chev {
  flex: none;
  width: 16px;
  height: 16px;
  transition: transform 0.35s ease;
  color: #7c879e;
}

.accordion-row[data-open="true"] .accordion-trigger .chev {
  transform: rotate(180deg);
  color: var(--gold);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-row[data-open="true"] .accordion-panel {
  max-height: 200px;
}

.accordion-panel p {
  color: #7c879e;
  font-size: 14.5px;
  line-height: 1.7;
  padding: 0 2px 20px;
  max-width: 440px;
}

/* visual panel */
.service-visual {
  position: relative;
  aspect-ratio: 1/0.82;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 320px 220px at 30% 20%, rgba(62, 124, 255, 0.16), transparent 65%),
    linear-gradient(155deg, var(--navy), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(237, 240, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 240, 247, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 75%);
}

.service-visual img {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  filter: drop-shadow(0 0 22px rgba(232, 163, 61, 0.25));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-visual:hover img {
  transform: scale(1.06);
}

/* ---------- Responsive ---------- */
@media (max-width:860px) {

  .service,
  .service.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 0;
  }

  .service .service-copy,
  .service.reverse .service-copy {
    order: 1;
  }

  .service .service-visual,
  .service.reverse .service-visual {
    order: 2;
  }

  .service-visual {
    aspect-ratio: 16/11;
  }
}

/* =========================================================
         CHINA DIRECT SOURCING — page-scoped additions
         Reuses existing design tokens (--navy, --gold, --paper …)
         instead of introducing a new palette.
         ========================================================= */

.cs-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cs-supplier-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.cs-supplier-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e8b57;
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.18);
  flex: none;
}

.cs-supplier-badge span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.service.light .cs-supplier-badge span {
  color: rgba(228, 232, 236, 0.65);
}

.cs-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px;
}

.cs-chip {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: var(--white);
  background: rgba(237, 240, 247, 0.06);
  border: 1px solid rgba(237, 240, 247, 0.14);
  padding: 8px 16px;
  border-radius: 999px;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.cs-chip:hover {
  border-color: #d4a24c;
  background: rgba(212, 162, 76, 0.1);
}

.service:not(.light) .cs-chip {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.cs-ref-list {
  margin: 26px 0 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(237, 240, 247, 0.1);
}

.service:not(.light) .cs-ref-list {
  border-top: 1px solid var(--line);
}

.cs-ref-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4a24c;
  margin-bottom: 14px;
  display: block;
}

.cs-ref-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}

.cs-ref-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(228, 232, 236, 0.82);
  border-bottom: 1px solid rgba(228, 232, 236, 0.28);
  padding-bottom: 2px;
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.service:not(.light) .cs-ref-links a {
  color: var(--navy-deep);
  border-bottom-color: var(--line);
}

.cs-ref-links a:hover,
.service:not(.light) .cs-ref-links a:hover {
  color: #d4a24c;
  border-color: #d4a24c;
}

.cs-ref-links a i {
  font-size: 0.75rem;
}

.cs-legal-line {
  font-size: 0.86rem;
  color: rgba(228, 232, 236, 0.55);
  margin-bottom: 6px;
}

.service:not(.light) .cs-legal-line {
  color: var(--ink-soft);
}


.cs-supplier-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-supplier-icon i {
  font-size: 5rem;
  color: #d4a24c;
  filter: drop-shadow(0 0 22px rgba(232, 163, 61, 0.25));
}

.cs-supplier-icon-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--white);
}

.cs-supplier-icon-label small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #d4a24c;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Inquiry form section */
.cs-inquiry-section {
  background: #ffffff;
  position: relative;
}

.cargo-details-panel {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.cargo-details-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 18px;
}

.cargo-contact-img {
  width: 100%;
  height: 100%;
}

.cargo-contact-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================================================
   AIR CARGO DETAILS PAGE — additions
   Extends the tokens already defined in css/styles.css
   (--navy, --gold, --paper, --ink, --line, --radius-md, --ease …)
   Load this file AFTER styles.css.
   ========================================================= */

:root {
  --danger: #b3372c;
  --danger-soft: #d1685c;
  --danger-tint: #fbeeec;
}

.cargo-page .section-title {
  margin-bottom: 4px;
}

.cargo-address-card,
.cargo-hours-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cargo-address-card::before,
.cargo-hours-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--grad-accent);
}

.cargo-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b8843a;
  margin-bottom: 10px;
}

.cargo-mini-label i {
  color: var(--gold);
}

.cargo-address-text,
.cargo-hours-card p {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

.cargo-address-text span,
.cargo-hours-card p span {
  font-size: 12px;
  color: var(--ink-soft);
}

.cargo-address-note {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

/* ---- payment / credit callout ---- */
.cargo-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.cargo-notice-box i {
  flex: none;
  font-size: 1.1rem;
  color: #b8843a;
  margin-top: 2px;
}

.cargo-notice-box p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cargo-notice-box strong {
  color: var(--ink);
}

/* ---- instructions checklist ---- */
.cargo-check-list li {
  align-items: flex-start;
}

.cargo-check-list li span {
  line-height: 1.6;
  padding-top: 1px;
}

/* ---- gallery / find the warehouse ---- */
.cargo-details-title {
  display: block;
  margin-bottom: 24px;
}

.cargo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .cargo-gallery {
    grid-template-columns: 1fr;
  }
}

.cargo-gallery-item {
  margin: 0;
}

.cargo-gallery-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px -22px rgba(11, 28, 51, 0.28);
}

.cargo-gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.6s var(--ease);
}

.cargo-gallery-item:hover .cargo-gallery-frame img {
  transform: scale(1);
}

.cargo-gallery-item figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cg-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- alert / compliance banners ---- */
.cargo-alert-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 48px;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  background: var(--danger-tint);
  border: 1px solid rgba(179, 55, 44, 0.25);
}

.cargo-alert-banner i {
  flex: none;
  font-size: 1.3rem;
  color: var(--danger);
  margin-top: 1px;
}

.cargo-alert-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #7a281f;
  font-weight: 500;
}

@media (max-width: 575.98px) {

  .cargo-alert-banner,
  .cargo-notice-box {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .cs-supplier-icon-label {
    left: 18px;
    bottom: 18px;
  }
}

@media (max-width:575px) {
  section {
    overflow: hidden;
  }

  #brandLogo {
    height: 50px;
  }
}

.light .section-eyebrow {
  color: var(--gold-light);
}