/* ================================================================
   STYLE.CSS — PT. SURYA BANGKIT CEMERLANG
   Premium Luxury Redesign
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ================================================================
   FORM SELECT (legacy)
   ================================================================ */
select {
  background-color: #111;
  color: #fff;
  border: 1px solid var(--accent);
}
select option {
  background-color: #111;
  color: #fff;
}

/* ================================================================
   GLOBAL & BODY
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #080808;
  color: #EDE5D5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.reveal-left {
  transform: translateX(-60px);
}
.reveal.reveal-right {
  transform: translateX(60px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   CUSTOM CURSOR
   ================================================================ */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: #C8972A;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(200, 151, 42, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: #C8972A;
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ================================================================
   NAVBAR
   ================================================================ */
/* Thin dark accent strip above the main nav row */
.navbar-topbar {
  height: 7px;
  background: var(--bg-footer, #1A1208);
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.65,0,0.35,1), opacity 0.3s ease;
}
.navbar.scrolled .navbar-topbar { height: 0; opacity: 0; }

.navbar {
  background: rgba(250, 250, 245, 0.96);
  border-bottom: 1px solid rgba(200, 151, 42, 0.15);
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.4s cubic-bezier(0.65,0,0.35,1),
              border-color 0.4s cubic-bezier(0.65,0,0.35,1),
              backdrop-filter 0.4s ease;
}
.navbar-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px 60px;
  gap: 0 24px;
  transition: padding 0.4s cubic-bezier(0.65,0,0.35,1);
}
.navbar-logo {
  display: flex;
  align-items: center;
  flex: none;
  min-width: 0;
}
.navbar-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
}
.navbar-logo-box img {
  display: block;
  height: 44px;
  width: 44px;
  object-fit: contain;
  transition: height 0.4s cubic-bezier(0.65,0,0.35,1),
              width 0.4s cubic-bezier(0.65,0,0.35,1);
}

/* Logo PNG sudah transparan - tidak perlu blend mode */
.navbar-logo-box img {
  /* tidak perlu mix-blend-mode */
}

[data-theme="dark"] .navbar-logo-box img {
  /* tidak perlu mix-blend-mode */
}

/* Shrink + stronger blur once the page has scrolled past the top */
.navbar.scrolled .navbar-container { padding: 10px 60px; }
.navbar.scrolled .navbar-logo-box img { height: 32px; width: 32px; }
.navbar.scrolled {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  backdrop-filter: blur(26px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(26px) saturate(180%) !important;
}
.navbar-brand {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--text-heading, #1A1208);
  font-size: 16px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.brand-tagline {
  font-size: 10px;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}
.navbar-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.navbar-menu > a,
.navbar-menu .dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4A3E2E;
  text-decoration: none;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 1px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}
/* Growing underline on hover / active, instead of the old icon pill */
.navbar-menu > a::after,
.navbar-menu .dropdown > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
}
.navbar-menu > a:hover,
.navbar-menu .dropdown > a:hover,
.navbar-menu > a:focus-visible,
.navbar-menu .dropdown > a:focus-visible,
.navbar-menu > a.nav-active,
.navbar-menu .dropdown > a.nav-active {
  color: #8A4E0F;
}
.navbar-menu > a:hover::after,
.navbar-menu .dropdown > a:hover::after,
.navbar-menu > a:focus-visible::after,
.navbar-menu .dropdown > a:focus-visible::after,
.navbar-menu > a.nav-active::after,
.navbar-menu .dropdown > a.nav-active::after {
  transform: scaleX(1);
}
.navbar-menu > a.nav-active,
.navbar-menu .dropdown > a.nav-active { font-weight: 700; }

.dropdown { position: relative; }
.dropdown-indicator {
  display: inline-flex;
  font-size: 9px;
  opacity: 0.55;
  transition: transform 0.3s cubic-bezier(0.65,0,0.35,1), opacity 0.25s ease;
}
.navbar-menu .dropdown > a:hover .dropdown-indicator,
.navbar-menu .dropdown > a.nav-active .dropdown-indicator,
.navbar-menu .dropdown.open > a .dropdown-indicator {
  opacity: 1;
  transform: translateY(1px) rotate(180deg);
}
.dropdown-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  min-width: 200px;
  background: rgba(12, 12, 12, 0.97);
  border: 1px solid rgba(200, 151, 42, 0.2);
  border-radius: 8px;
  top: calc(100% + 10px);
  left: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}
.dropdown::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 14px;
}
.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content,
.dropdown:focus-within .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1),
              transform 0.3s cubic-bezier(0.16,1,0.3,1),
              visibility 0s linear 0s;
}
.dropdown-content a {
  color: #C8C0B0;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(200,151,42,0.08);
  opacity: 0;
  transform: translateY(-6px);
  transition: color 0.15s, padding-left 0.2s, opacity 0.15s ease, transform 0.15s ease;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover {
  color: #C8972A;
  padding-left: 28px;
  background: transparent;
}
.dropdown-content a.nav-active {
  color: #C8972A;
  padding-left: 26px;
  border-left: 2px solid #C8972A;
}

/* Staggered reveal of each dropdown item while the dropdown is open */
.dropdown:hover .dropdown-content a,
.dropdown.open .dropdown-content a,
.dropdown:focus-within .dropdown-content a {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.15s, padding-left 0.2s,
              opacity 0.32s cubic-bezier(0.16,1,0.3,1),
              transform 0.32s cubic-bezier(0.16,1,0.3,1);
}
.dropdown:hover .dropdown-content a:nth-child(1),
.dropdown.open .dropdown-content a:nth-child(1),
.dropdown:focus-within .dropdown-content a:nth-child(1) { transition-delay: 0s, 0s, 0.03s, 0.03s; }
.dropdown:hover .dropdown-content a:nth-child(2),
.dropdown.open .dropdown-content a:nth-child(2),
.dropdown:focus-within .dropdown-content a:nth-child(2) { transition-delay: 0s, 0s, 0.10s, 0.10s; }
.dropdown:hover .dropdown-content a:nth-child(3),
.dropdown.open .dropdown-content a:nth-child(3),
.dropdown:focus-within .dropdown-content a:nth-child(3) { transition-delay: 0s, 0s, 0.17s, 0.17s; }
.dropdown:hover .dropdown-content a:nth-child(4),
.dropdown.open .dropdown-content a:nth-child(4),
.dropdown:focus-within .dropdown-content a:nth-child(4) { transition-delay: 0s, 0s, 0.24s, 0.24s; }
.dropdown:hover .dropdown-content a:nth-child(5),
.dropdown.open .dropdown-content a:nth-child(5),
.dropdown:focus-within .dropdown-content a:nth-child(5) { transition-delay: 0s, 0s, 0.31s, 0.31s; }
.dropdown:hover .dropdown-content a:nth-child(6),
.dropdown.open .dropdown-content a:nth-child(6),
.dropdown:focus-within .dropdown-content a:nth-child(6) { transition-delay: 0s, 0s, 0.38s, 0.38s; }
.dropdown:hover .dropdown-content a:nth-child(7),
.dropdown.open .dropdown-content a:nth-child(7),
.dropdown:focus-within .dropdown-content a:nth-child(7) { transition-delay: 0s, 0s, 0.45s, 0.45s; }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  justify-content: flex-end;
}
.navbar-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(20,16,11,0.18);
  background: transparent;
  color: #4A3E2E;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.3s ease, color 0.3s ease,
              transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              width 0.4s cubic-bezier(0.65,0,0.35,1),
              height 0.4s cubic-bezier(0.65,0,0.35,1);
}
.navbar-icon-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.navbar-icon-btn:hover,
.navbar-icon-btn:focus-visible {
  border-color: #8A4E0F;
  color: #8A4E0F;
  transform: translateY(-1px);
}
.navbar.scrolled .navbar-icon-btn { width: 34px; height: 34px; }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #0A0A0A;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* ================================================================
   DESTINATION CARD CAROUSEL (GSAP Flip)
   .dest-fullscreen holds the currently-expanded card's photo as the
   hero background; .dest-rail is the row of small thumbnail cards.
   ================================================================ */
.dest-fullscreen {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0A0A0A;
}
.dest-fullscreen img,
.dest-card-media.is-flipping {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 !important;
  display: block;
}
.dest-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 0 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.dest-rail::-webkit-scrollbar { display: none; }
.dest-card {
  flex: 0 0 auto;
  width: 190px;
  aspect-ratio: 16 / 9;
  position: relative;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  padding: 0;
  transform: translateY(0);
  opacity: 0.85;
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1),
              opacity 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.dest-card:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.dest-card.is-active {
  opacity: 1;
  border-color: #C8972A;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transform: translateY(-8px);
}
/* Auto-advance timer, shown only on the active card */
.dest-card-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 2;
  background: rgba(255,255,255,0.28);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.dest-card.is-active .dest-card-progress { opacity: 1; }
.dest-card-progress-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: #C8972A;
  transform: scaleX(0);
  transform-origin: left center;
}
.dest-card-media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.dest-card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 10px 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}
/* Shimmering gradient sweep across each product name so it reads as
   "live" even before the card is clicked */
.dest-card-label-text {
  display: inline-block;
  /* mostly a flat gold base, with a narrow, saturated orange streak
     sweeping through — a short small word won't show a slow overall
     hue-shift, so the moving part has to be a tight, obvious band */
  background: linear-gradient(100deg,
    #C8972A 0%, #C8972A 38%,
    #FFC069 46%, #FF7A29 50%, #FFC069 54%,
    #C8972A 62%, #C8972A 100%);
  background-size: 340% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 2.4s linear infinite;
}

/* Content panel — swaps copy for whichever card is active.
   Default state is fully visible (no baked-in opacity:0) so the
   panel still reads fine if GSAP ever fails to load; the JS-driven
   staggered reveal in destination-carousel.js takes it from there. */
.dest-info {
  position: absolute;
  left: 60px;
  top: 44%;
  transform: translateY(-50%);
  z-index: 4;
  max-width: 460px;
  color: #fff;
}
.dest-info-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E8C47A;
  margin-bottom: 22px;
}
.dest-info-eyebrow::before {
  content: '';
  display: inline-block;
  width: 34px;
  height: 1.5px;
  background: linear-gradient(90deg, #C8972A, transparent);
}
.dest-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 1px;
  margin: 0 0 22px;
  background: linear-gradient(100deg,
    #2F7D33 0%, #2F7D33 32%,
    #63B84B 42%, #8A5A2B 50%, #63B84B 58%,
    #5A3316 68%, #5A3316 100%);
  background-size: 280% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s linear infinite;
}
.dest-info-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin: 0 0 34px;
  max-width: 400px;
}
.dest-info-cta.hero-btn-primary {
  display: inline-block;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 1000px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C8972A;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroReveal 1s 0.3s forwards;
}
.hero-title,
.hero-interactive-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 2px;
  margin: 0 0 8px 0;
  opacity: 0;
  animation: heroReveal 1s 0.5s forwards;
}
.hero-interactive-text span {
  display: inline-block;
  transition: color 0.15s, transform 0.2s cubic-bezier(0.57, 0.15, 0.38, 0.87);
  cursor: default;
}
.hero-interactive-text span:hover {
  color: #C8972A;
  transform: scale(1.15) translateY(-4px);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.7);
  margin: 16px 0 24px 0;
  opacity: 0;
  animation: heroReveal 1s 0.7s forwards;
}
.hero-intro {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  color: rgba(237, 229, 213, 0.55);
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: heroReveal 1s 0.85s forwards;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroReveal 1s 0.9s forwards;
}
.hero-btn-primary {
  padding: 14px 44px;
  background: #C8972A;
  color: #080808;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.hero-btn-primary:hover {
  background: #E0B04A;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 151, 42, 0.4);
}
.hero-btn-secondary {
  padding: 14px 44px;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.hero-btn-secondary:hover {
  border-color: #C8972A;
  color: #C8972A;
  transform: translateY(-3px);
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroReveal 1s 1.2s forwards;
}
.hero-scroll-indicator span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(200,151,42,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50%       { transform: scaleY(0.6); opacity: 0.3; }
}

/* ================================================================
   MARQUEE STRIP
   ================================================================ */
.marquee-strip {
  background: #C8972A;
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #080808;
  margin: 0 24px;
}
.marquee-dot {
  font-size: 8px !important;
  vertical-align: middle;
  opacity: 0.5;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   SECTION COMMON
   ================================================================ */
.section-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C8972A;
  margin-bottom: 12px;
}
.section-title,
.section-title-product,
.section-title-gallery {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #EDE5D5;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
  line-height: 1.15;
}
.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #C8972A, transparent);
  margin: 16px auto 40px auto;
}
.section-divider.left { margin-left: 0; }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
  background: #0A0A0A;
  padding: 120px 40px;
  overflow: hidden;
}
.about-row {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-pics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 580px;
  min-width: 340px;
  flex-shrink: 0;
}
.about-image-card {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  position: relative;
  cursor: pointer;
}
.about-image-card:nth-child(1) { margin-top: 0; }
.about-image-card:nth-child(2) { margin-top: 40px; }
.about-image-card:nth-child(3) { margin-top: -20px; }
.about-image-card:nth-child(4) { margin-top: 20px; }
.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.about-image-card:hover img { transform: scale(1.07); }
.about-image-card span,
.image-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-radius: 4px;
}
.about-info {
  max-width: 560px;
  flex: 1;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  color: #EDE5D5;
}
.about-info > * { max-width: 100%; }
.about-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #EDE5D5;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.about-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #C8972A;
  margin-bottom: 20px;
}
.about-description {
  font-size: 1rem;
  color: #9A9080;
  line-height: 1.85;
  margin-bottom: 36px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid rgba(200,151,42,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.stat-box {
  background: rgba(200,151,42,0.05);
  border: none;
  border-right: 1px solid rgba(200,151,42,0.15);
  border-radius: 0;
  padding: 24px 16px;
  text-align: center;
  width: 100%;
  margin: 0;
  min-width: 0;
  transition: background 0.2s;
}
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(200,151,42,0.1); }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #C8972A;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7A7060;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(200,151,42,0.5);
  color: #C8972A;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.about-btn:hover {
  background: #C8972A;
  color: #080808;
  border-color: #C8972A;
  transform: translateY(-2px);
}

/* ================================================================
   PRODUCT SECTION
   ================================================================ */
.product-section {
  background: #0E0E0E;
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,151,42,0.3), transparent);
}
.product-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #7A7060;
  margin-bottom: 60px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.product-card {
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #111;
}
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
}
@keyframes fadeInImage {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.product-card:hover .product-image-wrapper img { transform: scale(1.08); }

/* Always-visible gradient overlay */
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.65) 35%,
    rgba(0, 0, 0, 0.15) 65%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 32px 28px;
  transition: background 0.5s ease;
}
.product-card:hover .product-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.75) 45%,
    rgba(0, 0, 0, 0.2) 75%,
    transparent 100%
  );
}
.product-card-body {
  width: 100%;
}
.product-card-cat {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8972A;
  margin-bottom: 10px;
}
.product-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
  color: #EDE5D5;
  margin: 0 0 10px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.product-card-body p {
  font-size: 0.88rem;
  color: rgba(237, 229, 213, 0.7);
  line-height: 1.65;
  margin: 0 0 20px;
  transform: translateY(6px);
  opacity: 0.85;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.product-card:hover .product-card-body p {
  opacity: 1;
  transform: translateY(0);
}
.view-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: rgba(200, 151, 42, 0.15);
  border: 1px solid rgba(200, 151, 42, 0.5);
  color: #C8972A;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
  transform: translateY(4px);
}
.product-card:hover .view-detail-btn {
  background: #C8972A;
  border-color: #C8972A;
  color: #080808;
  transform: translateY(0);
}
.view-detail-btn span { transition: transform 0.25s; }
.product-card:hover .view-detail-btn span { transform: translateX(4px); }

/* Remove old product-info styles (no longer used) */
.product-info { display: none; }
.product-overlay { display: none; }

/* ================================================================
   GALLERY SECTION
   ================================================================ */
.gallery-section {
  background: #080808;
  padding: 120px 40px;
  text-align: center;
  position: relative;
}
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,151,42,0.3), transparent);
}
.gallery-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #7A7060;
  margin-bottom: 60px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px 260px;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Feature: top-left, 2×2 */
.gallery-item.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}
/* Wide: bottom row fills 2 cols each */
.gallery-item.gallery-wide {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: zoom-in;
  background: #111;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }

/* Overlay — always shows a subtle bottom strip, fully reveals on hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 30%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
  transition: background 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.05) 75%,
    transparent 100%
  );
}

.gallery-caption {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(200, 151, 42, 0.9);
  border-left: 2px solid #C8972A;
  padding-left: 10px;
  transform: translateY(4px);
  opacity: 0.85;
  transition: opacity 0.35s, transform 0.35s, color 0.35s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  color: #C8972A;
  transform: translateY(0);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #050505;
  color: #7A7060;
  padding: 80px 60px 30px;
  border-top: 1px solid rgba(200,151,42,0.12);
}
.footer-container {
  display: grid;
  grid-template-columns: 1.8fr 1.6fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px auto;
}
.footer-brand h3,
.footer-contact h3,
.footer-nav h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #EDE5D5;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}
.footer-description {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #5A5248;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; }
.social-icon-footer {
  width: 40px; height: 40px;
  background: rgba(200,151,42,0.07);
  border: 1px solid rgba(200,151,42,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social-icon-footer:hover {
  background: rgba(200,151,42,0.2);
  border-color: #C8972A;
  transform: translateY(-3px);
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5A5248;
}
.contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.contact-list strong { color: #9A9080; font-weight: 600; }
.nav-list { list-style: none; padding: 0; margin: 0; }
.nav-list li { margin-bottom: 12px; }
.nav-list li a {
  color: #5A5248;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.nav-list li a:hover { color: #C8972A; padding-left: 6px; }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(200,151,42,0.08);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: #3A3028;
  letter-spacing: 0.5px;
}

/* ================================================================
   FLOATING CONTACT BUTTONS
   ================================================================ */
.floating-contact-buttons {
  position: fixed !important;
  bottom: 30px; right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99999;
  pointer-events: none;
}
.floating-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: floatIn 0.6s ease-out forwards, floatPulse 3s ease-in-out 1s infinite;
  pointer-events: auto;
  opacity: 0;
}
.floating-btn:nth-child(2) { animation-delay: 0.15s, 1.15s; }
.floating-btn:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: none;
  opacity: 1;
}
.whatsapp-btn { background: linear-gradient(135deg, #25D366, #128C7E); border: 2px solid #fff; }
.email-btn    { background: linear-gradient(135deg, #EA4335, #C5221F); border: 2px solid #fff; }
.whatsapp-btn:hover { box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.email-btn:hover    { box-shadow: 0 8px 28px rgba(234,67,53,0.5); }
@keyframes floatIn {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06) translateY(-3px); }
}
.btn-icon svg { display: block; }

/* ================================================================
   INNER PAGE HEROES (Company Profile, Video, Cert, Cap, Process, Events)
   ================================================================ */
.cp-hero,
.video-hero,
.cert-hero,
.cap-hero,
.process-hero,
.events-hero,
.contact-hero {
  min-height: 55vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #080808 0%, #121212 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.cp-hero::before,
.video-hero::before,
.cert-hero::before,
.cap-hero::before,
.process-hero::before,
.events-hero::before,
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('gambar/vc.jpeg') center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}
.cp-hero::before {
  background-image: url('gambar/compro1.png');
  opacity: 1;
}
.video-hero::before {
  background-image: url('gambar/companyvidio.png');
  opacity: 1;
}
.cert-hero::before {
  background-image: url('gambar/certif.png');
  opacity: 1;
}
.cap-hero::before {
  background-image: url('gambar/cabi.jpg');
  opacity: 1;
}
.process-hero::before {
  background-image: url('gambar/mp.jpg');
  opacity: 1;
}
.cap-hero { min-height: 62vh; }
.cap-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(90px);
  animation: orbFloat 10s ease-in-out infinite;
}
.cap-hero-orb-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(200,151,42,0.22) 0%, transparent 70%);
  top: -12%; left: -6%;
}
.cap-hero-orb-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(180,90,20,0.18) 0%, transparent 70%);
  bottom: -8%; right: -4%;
  animation-delay: -5s;
}
.cp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.15) 100%);
}
.video-hero-overlay,
.cert-hero-overlay,
.cap-hero-overlay,
.process-hero-overlay,
.events-hero-overlay,
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
/* About Us (Company Profile / Video / Certificate) + Capabilities heroes show
   their photo at full opacity in BOTH themes, so each needs a scrim that keeps
   the title readable and a bottom fade that melts the hero into the section
   below (var(--bg-body)) — no hard light/dark seam. */
.cp-hero-overlay,
.video-hero-overlay,
.cert-hero-overlay,
.cap-hero-overlay,
.process-hero-overlay {
  background:
    linear-gradient(to bottom, transparent 60%, var(--bg-body) 100%),
    linear-gradient(to bottom,
      rgba(0,0,0,0.32) 0%,
      rgba(0,0,0,0.60) 42%,
      rgba(0,0,0,0.55) 62%,
      rgba(0,0,0,0.38) 100%);
}
/* Dark mode: photo must read as a low-key textured backdrop, not a bright
   picture — heavier scrim + earlier fade so the hero sits inside the dark theme */
[data-theme="dark"] .cp-hero-overlay,
[data-theme="dark"] .video-hero-overlay,
[data-theme="dark"] .cert-hero-overlay,
[data-theme="dark"] .cap-hero-overlay,
[data-theme="dark"] .process-hero-overlay {
  background:
    linear-gradient(to bottom, transparent 42%, var(--bg-body) 100%),
    linear-gradient(to bottom,
      rgba(0,0,0,0.60) 0%,
      rgba(0,0,0,0.76) 45%,
      rgba(0,0,0,0.72) 65%,
      rgba(0,0,0,0.66) 100%);
}
.cp-hero-content,
.video-hero-content,
.cert-hero-content,
.cap-hero-content,
.process-hero-content,
.events-hero-content,
.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 60px 24px;
}
.cp-hero-content h1,
.video-hero-content h1,
.cert-hero-content h1,
.cap-hero-content h1,
.process-hero-content h1,
.events-hero-content h1,
.contact-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
  color: #EDE5D5;
}
.cp-hero-content p,
.video-hero-content p,
.cert-hero-content p,
.cap-hero-content p,
.process-hero-content p,
.events-hero-content p,
.contact-hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #C8972A;
  font-weight: 500;
}

/* ================================================================
   COMMON INNER PAGE SECTIONS
   ================================================================ */
.cp-container,
.video-container,
.cert-container,
.cap-container,
.process-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section wrapper backgrounds */
.about-section.company-profile,
.cp-stats, .cp-vision-mission,
.core-values-section, .cp-values,
.cert-intro, .cert-grid-section, .cert-benefits, .cert-cta,
.cap-intro, .cap-category, .cap-stats, .cap-cta,
.process-intro, .process-timeline-visual,
.process-steps-section, .process-stats, .process-cta,
.events-intro, .events-section, .events-showcase, .event-stats, .events-cta,
.contact-main-section, .contact-map-section,
.featured-video-section, .video-highlights, .video-cta,
.product-detail-simple, .product-components-section,
.faq-section {
  background: #0A0A0A;
  padding: 100px 40px;
}

/* Alternating backgrounds */
.cp-stats,
.cert-grid-section,
.cap-category.finishing-options,
.cap-category.woven-cord,
.process-timeline-visual,
.events-section,
.video-highlights,
.product-components-section {
  background: #0E0E0E;
}

/* ================================================================
   INNER PAGE HEADINGS
   ================================================================ */
.about-section.company-profile .section-title,
.cp-stats h2, .cp-values h2,
.cert-intro h2, .cert-grid-section h2, .cert-benefits h2,
.cap-intro h2, .cap-stats h2,
.process-intro h2, .process-steps-section h2, .process-timeline-visual h2,
.process-stats h2,
.events-intro h2, .events-section h2, .events-gallery h2,
.featured-video-section h2, .video-highlights h2,
.contact-info-box h2, .event-stats h2,
.core-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #EDE5D5;
  letter-spacing: 0.5px;
}
.category-header h2 { color: #EDE5D5; }
.intro-text, .video-intro, .map-subtitle,
.contact-intro, .stats-intro, .components-intro,
.core-subtitle, .category-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #7A7060;
}

/* ================================================================
   STAT CARDS
   ================================================================ */
.stats-grid, .cap-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  max-width: 1100px;
  margin: 60px auto 0;
  background: rgba(200,151,42,0.08);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 4px;
  overflow: hidden;
}
/* "Our Capabilities" — 7 cards, centered flex layout so the last row never looks lopsided */
.cp-stats .stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cp-stats .stat-card {
  flex: 1 1 220px;
  max-width: 260px;
}
.cp-stats .stat-card:nth-child(1) { transition-delay: 0s; }
.cp-stats .stat-card:nth-child(2) { transition-delay: 0.08s; }
.cp-stats .stat-card:nth-child(3) { transition-delay: 0.16s; }
.cp-stats .stat-card:nth-child(4) { transition-delay: 0.24s; }
.cp-stats .stat-card:nth-child(5) { transition-delay: 0.32s; }
.cp-stats .stat-card:nth-child(6) { transition-delay: 0.4s; }
.cp-stats .stat-card:nth-child(7) { transition-delay: 0.48s; }
.cp-stats .stat-icon {
  animation: statIconFloat 2.4s ease-in-out infinite;
}
.cp-stats .stat-card:nth-child(even) .stat-icon { animation-delay: 0.3s; }
@keyframes statIconFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.stat-card {
  background: #0A0A0A;
  border: none;
  border-radius: 0;
  padding: 48px 30px;
  text-align: center;
  transition: background 0.25s;
  box-shadow: none;
}
.stat-card:hover {
  background: #111;
  transform: none;
}
.stat-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.stat-card .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #C8972A;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C8972A;
  margin-left: 4px;
}
.stat-card .stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5A5248;
  margin-top: 8px;
}

/* ================================================================
   ABOUT STATS GRID (Company Profile top)
   ================================================================ */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 60px;
  background: rgba(200,151,42,0.08);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.about-stats-grid .stat-box {
  position: relative;
  background: #0A0A0A;
  border: none;
  border-radius: 0;
  padding: 36px 20px;
  text-align: center;
  transition: background 0.3s ease;
}
.about-stats-grid .stat-box:hover { background: #111; transform: none; }
.about-stats-grid .corner-bracket {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  opacity: 0.22;
  pointer-events: none;
  animation: cornerGlow 3.2s ease-in-out infinite;
}
.about-stats-grid .corner-tl { top: 8px; left: 8px; border-top-color: #C8972A; border-left-color: #C8972A; animation-delay: 0s; }
.about-stats-grid .corner-tr { top: 8px; right: 8px; border-top-color: #C8972A; border-right-color: #C8972A; animation-delay: 0.8s; }
.about-stats-grid .corner-br { bottom: 8px; right: 8px; border-bottom-color: #C8972A; border-right-color: #C8972A; animation-delay: 1.6s; }
.about-stats-grid .corner-bl { bottom: 8px; left: 8px; border-bottom-color: #C8972A; border-left-color: #C8972A; animation-delay: 2.4s; }
@keyframes cornerGlow {
  0%, 85%, 100% { opacity: 0.22; filter: none; }
  12.5% { opacity: 1; filter: drop-shadow(0 0 6px rgba(200,151,42,0.85)); }
}
.about-stats-grid .stat-number-wrap {
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.about-stats-grid .stat-number,
.about-stats-grid .stat-plus {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #C8972A;
  line-height: 1;
  transition: text-shadow 0.3s ease;
}
.about-stats-grid .stat-number { font-size: 2.8rem; }
.about-stats-grid .stat-plus { font-size: 2rem; }
.about-stats-grid .stat-box:hover .stat-number,
.about-stats-grid .stat-box:hover .stat-plus {
  text-shadow: 0 0 18px rgba(200,151,42,0.55);
}
.about-stats-grid .stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5A5248;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.about-stats-grid .stat-box:hover .stat-label {
  color: #C8972A;
  letter-spacing: 2px;
}

/* ================================================================
   ABOUT SECTION — COMPANY PROFILE VARIANT
   ================================================================ */
.about-section.company-profile {
  background: #0A0A0A;
}
.about-wrapper { max-width: 1260px; margin: 0 auto; }
.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text { color: #EDE5D5; }
.about-text p {
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 20px;
  color: #7A7060;
}
.about-text .highlight { color: #C8972A; font-weight: 600; }
.about-text strong { color: #EDE5D5; font-weight: 600; }
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(200,151,42,0.15);
  transition: transform 0.4s;
}
.about-image img:hover { transform: scale(1.02); }

/* Sparkle twinkle accents around the factory photo */
.factory-sparkle {
  position: absolute;
  font-size: 20px;
  pointer-events: none;
  opacity: 0;
  animation: sparkleTwinkle 2.6s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(200,151,42,0.6));
}
.factory-sparkle.fs-1 { top: -10px;   left: -12px;  animation-delay: 0s; }
.factory-sparkle.fs-2 { top: 14%;     right: -14px; font-size: 14px; animation-delay: 0.6s; }
.factory-sparkle.fs-3 { bottom: -12px; left: 18%;   font-size: 16px; animation-delay: 1.2s; }
.factory-sparkle.fs-4 { bottom: 20%;  right: -10px; animation-delay: 1.8s; }
.factory-sparkle.fs-5 { top: 45%;     left: -14px;  font-size: 14px; animation-delay: 2.2s; }
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1.1) rotate(15deg); }
}

/* ================================================================
   VISION / MISSION CARDS
   ================================================================ */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2px;
  background: rgba(200,151,42,0.08);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 4px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.vm-card {
  background: #0A0A0A;
  border: none;
  border-radius: 0;
  padding: 60px 50px;
  box-shadow: none;
  transition: background 0.25s;
}
.vm-card:hover { background: #0E0E0E; transform: none; }
.vm-icon-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: radial-gradient(circle, rgba(200,151,42,0.16) 0%, rgba(200,151,42,0.04) 70%, transparent 100%);
  border: 1px solid rgba(200,151,42,0.25);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.vm-card:hover .vm-icon-badge {
  transform: scale(1.08) rotate(-4deg);
  border-color: rgba(200,151,42,0.5);
}
.vm-icon {
  font-size: 2.2rem;
  display: block;
  animation: vmIconFloat 2.8s ease-in-out infinite;
}
.vm-card.mission .vm-icon { animation-delay: 0.4s; }
@keyframes vmIconFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.vm-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #EDE5D5;
  margin-bottom: 8px;
  position: relative;
}
.vm-card h3::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  margin: 12px auto 20px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  transition: width 0.4s ease;
}
.vm-card:hover h3::after { width: 60px; }
.vm-card p, .vm-card ul {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #7A7060;
}
.vm-card ul { list-style: none; padding: 0; }
.vm-card ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}
.vm-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 1px;
  background: #C8972A;
}

/* ================================================================
   CORE VALUES
   ================================================================ */
.core-values-section { background: #0E0E0E; }
.core-values-header { text-align: center; margin-bottom: 60px; }
.core-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: linear-gradient(100deg, #1A1208 20%, #C8972A 45%, #8A4E0F 55%, #1A1208 80%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShine 6s linear 0.6s infinite;
}
[data-theme="dark"] .core-title {
  background-image: linear-gradient(100deg, #EDE5D5 20%, #FFD97A 45%, #C8972A 55%, #EDE5D5 80%);
  background-size: 250% auto;
}
.core-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #7A7060;
  font-size: 1.1rem;
}
.values-wrapper { max-width: 1150px; margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(200,151,42,0.08);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.value-card {
  background: #0A0A0A;
  border: none;
  border-radius: 0;
  padding: 50px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.25s;
  box-shadow: none;
}
.value-card:hover { background: #111; transform: none; border-color: transparent; }
.value-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: radial-gradient(circle, rgba(200,151,42,0.16) 0%, rgba(200,151,42,0.04) 70%, transparent 100%);
  border: 1px solid rgba(200,151,42,0.25);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.value-card:hover .value-icon-wrapper {
  transform: scale(1.08) rotate(-4deg);
  border-color: rgba(200,151,42,0.5);
}
.value-icon {
  width: 48px;
  height: 48px;
  color: #C8972A;
  font-size: 1.7rem;
  line-height: 48px;
  display: block;
  animation: vmIconFloat 2.8s ease-in-out infinite;
}
.value-card:nth-child(2) .value-icon { animation-delay: 0.3s; }
.value-card:nth-child(3) .value-icon { animation-delay: 0.6s; }
.value-name {
  font-family: 'Cormorant Garamond', serif;
  color: #EDE5D5;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.value-divider {
  width: 30px;
  border-bottom: 1px solid rgba(200,151,42,0.4);
  margin: 0 auto 16px auto;
  transition: width 0.4s ease;
}
.value-card:hover .value-divider { width: 60px; }
.value-text {
  font-size: 0.9rem;
  color: #6A6050;
  line-height: 1.75;
}
.value-emoji { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #EDE5D5;
  margin-bottom: 10px;
}
.value-card p { font-size: 0.9rem; color: #6A6050; line-height: 1.65; }

/* ================================================================
   CTA SECTIONS
   ================================================================ */
.cta-box {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  background: #111;
  padding: 70px 50px;
  border: 1px solid rgba(200,151,42,0.15);
  border-radius: 4px;
}
.cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #EDE5D5;
  margin-bottom: 16px;
}
.cta-box p {
  font-size: 0.95rem;
  color: #6A6050;
  line-height: 1.85;
  margin-bottom: 40px;
}
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #EDE5D5;
  margin-bottom: 16px;
}
.cta-content p { font-size: 0.95rem; color: #6A6050; line-height: 1.85; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
}
.cta-btn.primary {
  background: #C8972A;
  color: #080808;
  border: 1px solid #C8972A;
}
.cta-btn.primary:hover {
  background: #E0B04A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,151,42,0.35);
}
.cta-btn.secondary {
  background: transparent;
  color: #C8972A;
  border: 1px solid rgba(200,151,42,0.4);
}
.cta-btn.secondary:hover {
  background: rgba(200,151,42,0.08);
  border-color: #C8972A;
  transform: translateY(-2px);
}

/* ================================================================
   PROCESS — closing CTA ("Experience Our Manufacturing Excellence")
   ================================================================ */
.process-cta .cta-box {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  padding: 74px 56px;
  border-radius: 10px;
}
/* animated hairline across the top edge */
.process-cta .cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 200% auto;
  animation: gradientShift 3s linear infinite;
}
/* soft glow bleeding from the top */
.process-cta .cta-box::after {
  content: '';
  position: absolute;
  top: -34%; left: 50%;
  width: 540px; height: 540px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent-bg) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.process-cta .cta-box > * { position: relative; z-index: 1; }
.process-cta .cta-box .process-eyebrow { margin-bottom: 16px; }
.process-cta .cta-box h2 {
  background: linear-gradient(100deg,
    var(--text-heading) 18%, var(--accent) 44%,
    var(--accent-hover) 56%, var(--text-heading) 82%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShine 7s linear infinite;
}
.process-cta .cta-box h2::after {
  content: '';
  display: block;
  width: 46px; height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  -webkit-text-fill-color: initial;
}
.process-cta .cta-box p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 38px;
  margin-top: 20px;
}
.process-cta .cta-buttons { gap: 18px; }
.process-cta .cta-btn { padding: 15px 44px; border-radius: 3px; }
@media (max-width: 768px) {
  .process-cta .cta-box { padding: 52px 26px; }
  .process-cta .cta-box p { margin-top: 16px; }
}

/* Video page CTA — refined glow box */
.video-cta .cta-content {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-cta .cta-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  background-size: 200% auto;
  animation: gradientShift 3s linear infinite;
}
.video-cta .cta-content::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(200,151,42,0.16) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: ctaGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
.video-cta .cta-content h2,
.video-cta .cta-content p,
.video-cta .cta-content .cta-buttons {
  position: relative;
  z-index: 1;
}
.video-cta .cta-content h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  background: linear-gradient(100deg, #1A1208 20%, #C8972A 45%, #8A4E0F 55%, #1A1208 80%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShine 6s linear infinite;
}
[data-theme="dark"] .video-cta .cta-content h2 {
  background-image: linear-gradient(100deg, #EDE5D5 20%, #FFD97A 45%, #C8972A 55%, #EDE5D5 80%);
  background-size: 250% auto;
}
.video-cta .cta-content h2::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 50px; height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
}

/* ================================================================
   VIEW ALL / MORE BUTTONS
   ================================================================ */
.view-all-btn, .view-more-gallery-btn {
  display: inline-block;
  padding: 14px 44px;
  background: transparent;
  border: 1px solid rgba(200,151,42,0.4);
  color: #C8972A;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  margin-top: 60px;
  transition: all 0.25s;
}
.view-all-btn:hover, .view-more-gallery-btn:hover {
  background: #C8972A;
  color: #080808;
  border-color: #C8972A;
  transform: translateY(-2px);
}

/* ================================================================
   GENERAL CARDS (highlights, benefits, event cards)
   ================================================================ */
.highlight-card, .benefit-card, .event-card,
.component-card, .video-info {
  background: #111;
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 4px;
  padding: 40px 30px;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
}
.highlight-card:hover, .benefit-card:hover, .event-card:hover {
  background: #161616;
  border-color: rgba(200,151,42,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.highlight-icon, .benefit-icon, .stat-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.video-highlights .highlight-card.reveal {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s, border-color 0.25s;
}
.video-highlights .highlight-card:nth-child(1) { transition-delay: 0s; }
.video-highlights .highlight-card:nth-child(2) { transition-delay: 0.08s; }
.video-highlights .highlight-card:nth-child(3) { transition-delay: 0.16s; }
.video-highlights .highlight-card:nth-child(4) { transition-delay: 0.24s; }
.video-highlights .highlight-icon {
  animation: statIconFloat 2.4s ease-in-out infinite;
}
.video-highlights .highlight-card:nth-child(even) .highlight-icon { animation-delay: 0.3s; }
.highlight-card h4, .benefit-card h4,
.video-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #EDE5D5;
  margin-bottom: 10px;
}
.highlight-card p, .benefit-card p,
.detail-item p {
  font-size: 0.9rem;
  color: #6A6050;
  line-height: 1.7;
}
.highlights-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: rgba(200,151,42,0.05);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 4px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.highlight-card, .benefit-card {
  border: none;
  border-radius: 0;
  margin: 0;
}

/* ================================================================
   CERT CARDS
   ================================================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.cert-card {
  background: #111;
  border: 1px solid rgba(200,151,42,0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.cert-card:hover {
  border-color: rgba(200,151,42,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,151,42,0.15);
}
.cert-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0A0A0A;
}
.cert-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s;
}
.cert-card:hover .cert-image img { transform: scale(1.04); }
.cert-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 24px;
  opacity: 0; transition: opacity 0.3s;
}
.cert-card:hover .cert-overlay { opacity: 1; }
.view-cert-btn {
  padding: 10px 26px;
  background: #C8972A;
  color: #080808;
  border: none;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.view-cert-btn:hover { background: #E0B04A; }
.cert-info { padding: 28px; }
.cert-logo-badge {
  width: 50px; height: 50px;
  background: rgba(200,151,42,0.1);
  border: 1px solid rgba(200,151,42,0.25);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.4s ease;
}
.cert-card:hover .cert-logo-badge {
  transform: translateY(-3px) rotate(-6deg) scale(1.08);
  background: rgba(200,151,42,0.18);
  border-color: rgba(200,151,42,0.5);
}
.cert-icon { font-size: 1.8rem; display: inline-block; }
.cert-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #EDE5D5;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.cert-card:hover .cert-info h3 { color: #E0B04A; }
.cert-title { font-size: 0.85rem; color: #5A5248; margin-bottom: 14px; font-style: italic; }
.cert-description { font-size: 0.88rem; color: #6A6050; line-height: 1.7; margin-bottom: 20px; }
.cert-details { border-top: 1px solid rgba(200,151,42,0.1); padding-top: 18px; }
.detail-row {
  display: flex; justify-content: space-between;
  margin-bottom: 10px; font-size: 0.85rem;
}
.detail-label { color: #5A5248; font-weight: 600; }
.detail-value { color: #9A9080; font-weight: 600; }
.cert-status {
  padding: 3px 10px; border-radius: 2px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 6px;
}
.cert-status.active {
  background: rgba(76,175,80,0.15);
  color: #4CAF50;
  border: 1px solid rgba(76,175,80,0.3);
}
.cert-status.active::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  animation: statusPulse 1.8s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
  50%      { box-shadow: 0 0 0 4px rgba(76,175,80,0); }
}
[data-theme="dark"] .cert-card .cert-title,
[data-theme="dark"] .cert-card .cert-description,
[data-theme="dark"] .cert-card .detail-label,
[data-theme="dark"] .cert-card .detail-value { color: var(--text-body) !important; }
.cert-intro { text-align: center; }
.cert-grid-section > .cert-container > h2,
.cert-benefits > .cert-container > h2 { text-align: center; }

/* Benefit cards — icon + heading react on hover */
.cert-benefits .benefit-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cert-benefits .benefit-card:hover .benefit-icon {
  transform: scale(1.18) rotate(-6deg);
}
.cert-benefits .benefit-card h4 { transition: color 0.3s ease; }
.cert-benefits .benefit-card:hover h4 { color: #E0B04A; }
[data-theme="dark"] .cert-benefits .benefit-card p { color: var(--text-body) !important; }

/* CTA box — refined glow treatment (matches company-video CTA) */
.cert-cta .cta-box { position: relative; overflow: hidden; }
.cert-cta .cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  background-size: 200% auto;
  animation: gradientShift 3s linear infinite;
}
.cert-cta .cta-box::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(200,151,42,0.16) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: ctaGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.cert-cta .cta-box h2,
.cert-cta .cta-box p,
.cert-cta .cta-box .cta-buttons { position: relative; z-index: 1; }
.cert-cta .cta-box h2 {
  background: linear-gradient(100deg, #1A1208 20%, #C8972A 45%, #8A4E0F 55%, #1A1208 80%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShine 6s linear infinite;
}
[data-theme="dark"] .cert-cta .cta-box h2 {
  background-image: linear-gradient(100deg, #EDE5D5 20%, #FFD97A 45%, #C8972A 55%, #EDE5D5 80%);
  background-size: 250% auto;
}
.cert-intro .intro-text { max-width: 720px; margin-left: auto; margin-right: auto; }
.cert-badges { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.badge-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(200,151,42,0.08);
  padding: 10px 22px;
  border: 1px solid rgba(200,151,42,0.2);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C8972A;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.badge-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(200,151,42,0.22);
}
.badge-icon {
  font-size: 1.1rem;
  color: #4CAF50;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.badge-item:hover .badge-icon { transform: scale(1.2) rotate(-8deg); }

/* Staggered entrance for direct children of a .reveal container (see animations.js) */
.reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-child.visible {
  opacity: 1;
  transform: none;
}
.cert-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(0,0,0,0.96);
  align-items: center; justify-content: center; flex-direction: column;
}
.close-modal {
  position: absolute; top: 30px; right: 40px;
  color: #9A9080; font-size: 36px; cursor: pointer;
  transition: color 0.2s;
}
.close-modal:hover { color: #C8972A; }
.cert-modal-content { max-width: 90%; max-height: 80vh; object-fit: contain; }
.cert-modal-caption {
  color: #9A9080; font-size: 1rem; margin-top: 20px;
  text-align: center; font-weight: 500;
}

/* ================================================================
   CAPABILITIES — CATEGORY SECTIONS
   ================================================================ */
.cap-category { padding: 100px 40px; }
.cap-category.wood-species  { background: #0A0A0A; }
.cap-category.finishing-options { background: #0E0E0E; }
.cap-category.metal-work    { background: #0A0A0A; }
.cap-category.woven-cord    { background: #0E0E0E; }
.category-header { text-align: center; margin-bottom: 60px; }
.category-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.category-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #EDE5D5;
  margin-bottom: 8px;
}
.category-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.category-content.reverse { grid-template-columns: 1fr 1.2fr; }
.category-text { color: #7A7060; }
.category-text p { font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }
.capability-list { list-style: none; padding: 0; margin: 24px 0; }
.capability-list li {
  padding: 12px 0 12px 24px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #7A7060;
  border-bottom: 1px solid rgba(200,151,42,0.07);
}
.capability-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 8px; height: 1px;
  background: #C8972A;
}
.capability-list li strong { color: #C8972A; font-weight: 600; }
.capability-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,151,42,0.08);
  padding: 10px 20px;
  border: 1px solid rgba(200,151,42,0.2);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  color: #C8972A;
  margin-top: 20px;
}
.category-image {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(200,151,42,0.15);
}
.category-image img {
  width: 100%; height: 420px;
  object-fit: cover; display: block;
  transition: transform 0.5s;
}
.category-image:hover img { transform: scale(1.04); }

/* Color dots */
.color-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.color-item { display: flex; align-items: center; gap: 10px; }
.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
}
.color-name { color: #7A7060; font-size: 0.88rem; }

/* ================================================================
   MANUFACTURING PROCESS
   ================================================================ */
/* Intro paragraph — constrained to a comfortable reading measure */
.process-intro .intro-text {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

/* "Our Production Journey" highlight strip — 3 bordered columns, matches the
   Capabilities intro-counts treatment for cross-page consistency */
.process-highlights {
  display: flex;
  max-width: 840px;
  margin: 56px auto 0;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}
.process-highlight {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px 20px;
  text-align: center;
}
.process-highlight + .process-highlight {
  border-left: 1px solid var(--border-card);
}
.ph-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}
.ph-icon svg { width: 19px; height: 19px; }
.ph-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--text-heading);
}
.ph-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .process-highlights { flex-direction: column; max-width: 340px; }
  .process-highlight { padding: 26px 20px; }
  .process-highlight + .process-highlight {
    border-left: none;
    border-top: 1px solid var(--border-card);
  }
}
/* "Production Flow" — connected numbered stepper (consolidated; the earlier
   duplicate .timeline-flow/.flow-* block further down was removed) */
.process-timeline-visual { padding-top: 80px; padding-bottom: 80px; }
.timeline-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 8px auto 0;
}
.flow-step {
  position: relative;
  flex: 1 1 0;
  min-width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 6px 4px;
}
/* connector line running behind the circles, between consecutive steps */
.flow-step::before {
  content: '';
  position: absolute;
  top: 29px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: var(--accent-border);
  z-index: 0;
}
.flow-step:first-child::before { display: none; }
.flow-number {
  position: relative;
  z-index: 1;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,151,42,0.45);
  background: var(--bg-section-alt);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--accent);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}
.flow-step:hover .flow-number {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-body);
  transform: translateY(-3px);
}
.flow-label {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.5px;
  text-align: center;
}
@media (max-width: 720px) {
  .timeline-flow { max-width: 340px; row-gap: 22px; }
  .flow-step { flex-basis: 33.333%; min-width: 0; }
  .flow-step::before { display: none; }
}
.process-step-card {
  position: relative;
  margin-bottom: 28px;
  background: #111;
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 6px;
  padding: 44px 44px 40px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.3s, box-shadow 0.3s;
}
.process-step-card:hover {
  border-color: rgba(200,151,42,0.32);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -28px rgba(0,0,0,0.7);
}
/* Big editorial ghost numeral in the top corner (replaces the old sticker badge) */
.step-number-badge {
  position: absolute;
  top: 6px; right: 26px;
  width: auto; height: auto;
  background: none; border: none;
  pointer-events: none;
  z-index: 0;
}
.process-step-card.reverse .step-number-badge { right: auto; left: 26px; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; font-weight: 700; line-height: 1;
  color: var(--accent);
  opacity: 0.12;
}
.step-content {
  position: relative;
  z-index: 1;
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 44px; align-items: center; margin-top: 8px;
}
.process-step-card.reverse .step-content { grid-template-columns: 1.15fr 1fr; }
.step-image {
  position: relative;
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border-card);
  background: var(--bg-section-alt);
  min-height: 300px;
}
/* placeholder texture shown while the photo loads / if it is missing */
.step-image::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    transparent 0, transparent 13px,
    var(--accent-bg) 13px, var(--accent-bg) 26px);
  opacity: 0.6;
}
.step-image img {
  position: relative;
  z-index: 1;
  width: 100%; height: 320px;
  object-fit: cover; display: block;
  font-size: 0;
  transition: transform 0.4s;
}
.process-step-card:hover .step-image img { transform: scale(1.04); }
.step-info { color: #8A8070; }
.step-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 700;
  color: #EDE5D5; margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-card);
}
.step-description { font-size: 0.92rem; line-height: 1.85; margin-bottom: 22px; }
.step-details { list-style: none; padding: 0; margin: 0; }
.step-details li {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 4px 20px;
  padding: 13px 0;
  font-size: 0.87rem; line-height: 1.6;
  color: #8A8070;
  border-bottom: 1px solid var(--border-card);
}
.step-details li:last-child { border-bottom: none; }
.step-details li strong {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding-top: 2px;
}

/* ================================================================
   PROCESS — additional polish
   ================================================================ */
.process-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8972A;
  text-align: center;
  margin-bottom: 14px;
}
.process-intro h2,
.process-timeline-visual h2,
.process-stats h2,
.process-steps-section h2 {
  text-align: center;
  margin-bottom: 0;
}
.process-intro h2::after,
.process-timeline-visual h2::after,
.process-stats h2::after,
.process-steps-section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  margin: 18px auto 44px;
}
.stat-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(200,151,42,0.07);
  border: 1px solid rgba(200,151,42,0.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.process-step-card.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.process-step-card.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   PROCESS — "Production Performance" stat panel (Process page only)
   ================================================================ */
.process-stats .stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 52px auto 0;
  background: transparent !important;
  border: 1px solid var(--border-card) !important;
  border-radius: 12px;
}
.process-stats .stat-card {
  background: transparent !important;
  padding: 54px 26px;
  border-right: 1px solid var(--border-card) !important;
}
.process-stats .stat-card:last-child { border-right: none !important; }
.process-stats .stat-card:hover { background: var(--accent-bg) !important; transform: none; }
.process-stats .stat-icon-wrap {
  width: 58px; height: 58px;
  margin: 0 auto 22px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  transition: border-color 0.3s, transform 0.3s;
}
.process-stats .stat-card:hover .stat-icon-wrap {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.process-stats .stat-icon-wrap svg { width: 24px; height: 24px; }
.process-stats .stat-card .stat-number {
  font-size: clamp(2.4rem, 4.4vw, 3.3rem);
  line-height: 1;
  margin-bottom: 0;
  color: var(--accent);
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process-stats .stat-card .stat-number::after {
  content: '';
  display: block;
  width: 26px; height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  -webkit-text-fill-color: initial;
}
.process-stats .stat-card .stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .process-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-stats .stat-card:nth-child(2) { border-right: none !important; }
  .process-stats .stat-card:nth-child(1),
  .process-stats .stat-card:nth-child(2) { border-bottom: 1px solid var(--border-card) !important; }
}
@media (max-width: 520px) {
  .process-stats .stats-grid { grid-template-columns: 1fr; }
  .process-stats .stat-card { border-right: none !important; border-bottom: 1px solid var(--border-card) !important; }
  .process-stats .stat-card:last-child { border-bottom: none !important; }
}

/* ================================================================
   EVENTS
   ================================================================ */
.event-card {
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(200,151,42,0.1);
}
.event-card:hover { border-color: rgba(200,151,42,0.35); }
.event-image { position: relative; height: 280px; overflow: hidden; }
.event-image img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s;
}
.event-card:hover .event-image img { transform: scale(1.06); }
.event-content { padding: 30px; }
.event-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: #EDE5D5; margin-bottom: 10px;
}
.event-description { font-size: 0.9rem; color: #7A7060; line-height: 1.7; margin-bottom: 20px; }
.event-detail-item {
  display: flex; gap: 10px;
  font-size: 0.88rem; color: #7A7060;
  margin-bottom: 8px;
}

/* ================================================================
   EVENTS / IFEX PAGE — Enhanced Layout
   ================================================================ */

/* Shared container */
.events-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Eyebrow label */
.events-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8972A;
  text-align: center;
  margin-bottom: 14px;
}

/* Section heading gold underline */
.events-intro h2::after,
.events-showcase > .events-container h2::after,
.events-gallery > .events-container h2::after,
.event-stats h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  margin: 18px auto 48px;
}
.events-intro h2,
.events-showcase > .events-container h2,
.events-gallery > .events-container h2,
.event-stats h2 {
  text-align: center;
  margin-bottom: 0;
}

/* Intro badge strip */
.events-intro-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.events-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,42,0.06);
  border: 1px solid rgba(200,151,42,0.2);
  padding: 9px 22px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C8972A;
}

/* ── Events Showcase — full-width alternating panels ─────────────── */
.events-showcase {
  background: #0A0A0A;
}
.events-showcase > .events-container {
  padding-top: 100px;
  padding-bottom: 60px;
}
.event-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-top: 1px solid rgba(200,151,42,0.07);
}
.event-panel.reverse .event-panel-image { order: 2; }
.event-panel.reverse .event-panel-content { order: 1; }
.event-panel-image {
  position: relative;
  overflow: hidden;
}
.event-panel-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.event-panel:hover .event-panel-image img { transform: scale(1.04); }
.event-panel-watermark {
  position: absolute;
  bottom: -10px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(200,151,42,0.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -2px;
}
.event-panel-type-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: #C8972A;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.event-panel-content {
  background: #111;
  display: flex;
  align-items: center;
  padding: 60px 64px;
  border-right: 1px solid rgba(200,151,42,0.06);
}
.event-panel.reverse .event-panel-content {
  background: #0D0D0D;
  border-right: none;
  border-left: 1px solid rgba(200,151,42,0.06);
}
.event-category-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C8972A;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(200,151,42,0.3);
  margin-bottom: 18px;
}
.event-panel-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  font-weight: 700;
  color: #EDE5D5;
  margin: 0 0 28px;
  line-height: 1.25;
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(200,151,42,0.04);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 2px;
}
.event-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: #7A7060;
}
.event-meta-item svg { flex-shrink: 0; }
.event-panel-desc {
  font-size: 0.92rem;
  color: #6A6050;
  line-height: 1.9;
  margin-bottom: 28px;
}
.event-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.event-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5A5248;
  border: 1px solid rgba(200,151,42,0.15);
  padding: 5px 12px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.event-tag:hover { border-color: rgba(200,151,42,0.4); color: #C8972A; }

/* ── Events Gallery Grid ─────────────────────────────────────────── */
.events-gallery {
  background: #080808;
  padding: 100px 0;
}
.events-gallery > .events-container {
  padding-bottom: 48px;
}
.events-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 3px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-ev-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-ev-item.tall { grid-row: span 2; }
.gallery-ev-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.23,1,0.32,1);
  filter: brightness(0.85);
}
.gallery-ev-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.gallery-ev-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #EDE5D5;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gallery-ev-item:hover .gallery-ev-caption { transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .events-container { padding: 0 28px; }
}
@media (max-width: 768px) {
  .event-panel { grid-template-columns: 1fr; }
  .event-panel.reverse .event-panel-image { order: 0; }
  .event-panel.reverse .event-panel-content { order: 0; }
  .event-panel-content { padding: 40px 28px; }
  .event-panel-image img { min-height: 280px; }
  .events-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-ev-item.tall { grid-row: span 1; }
}

/* Light mode */
[data-theme="light"] .event-panel-content { background: #fff; border-color: #e8e0d4; }
[data-theme="light"] .event-panel.reverse .event-panel-content { background: #f8f5f0; border-color: #e8e0d4; }
[data-theme="light"] .event-panel-inner h3 { color: #1A1612; }
[data-theme="light"] .event-meta { background: rgba(138,78,15,0.04); border-color: rgba(138,78,15,0.15); }
[data-theme="light"] .events-gallery { background: #f5f0e8; }

/* ================================================================
   CONTACT PAGE — Full Layout
   ================================================================ */

/* Section container */
.contact-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Two-column layout: info + form */
.contact-main-section {
  padding: 100px 0;
  background: #0A0A0A;
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

/* Left info column */
.contact-info-col {
  position: sticky;
  top: 100px;
}
.contact-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8972A;
  margin-bottom: 14px;
}
.contact-info-col h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #EDE5D5;
  margin: 0 0 6px;
  line-height: 1.2;
}
.contact-gold-rule {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, #C8972A, transparent);
  margin: 16px 0 24px;
}
.contact-intro-text {
  font-size: 0.92rem;
  color: #7A7060;
  line-height: 1.85;
  margin-bottom: 36px;
}

/* Contact info items */
.contact-details { display: flex; flex-direction: column; gap: 4px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(200,151,42,0.03);
  border: 1px solid rgba(200,151,42,0.08);
  border-radius: 2px;
  transition: border-color 0.25s, background 0.25s;
}
.contact-item:hover {
  border-color: rgba(200,151,42,0.22);
  background: rgba(200,151,42,0.06);
}
.contact-item-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200,151,42,0.08);
  border: 1px solid rgba(200,151,42,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item-icon svg { color: #C8972A; }
.contact-item-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #C8972A; margin: 0 0 5px;
}
.contact-item-body p {
  font-size: 0.88rem; color: #7A7060;
  line-height: 1.65; margin: 0;
}
.contact-item-body a {
  color: #7A7060; text-decoration: none;
  transition: color 0.2s;
}
.contact-item-body a:hover { color: #C8972A; }

/* Quick action buttons */
.quick-contact-buttons {
  display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap;
}
.quick-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.quick-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #1aad55);
  color: #fff;
}
.quick-btn.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.35);
}
.quick-btn.email {
  background: transparent;
  color: #C8972A;
  border: 1px solid rgba(200,151,42,0.35);
}
.quick-btn.email:hover {
  background: rgba(200,151,42,0.08);
  border-color: #C8972A;
  transform: translateY(-2px);
}

/* Right form column */
.contact-form-box {
  background: #111;
  border: 1px solid rgba(200,151,42,0.12);
  border-radius: 4px;
  padding: 50px 48px;
}
.contact-form-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: #EDE5D5; margin-bottom: 8px;
}
.contact-form-box .contact-gold-rule {
  width: 40px;
  margin: 14px 0 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #C8972A; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(200,151,42,0.04);
  border: 1px solid rgba(200,151,42,0.15);
  border-radius: 2px;
  padding: 13px 16px;
  color: #EDE5D5;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200,151,42,0.5);
  background: rgba(200,151,42,0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #3A3028; }
.form-group textarea { resize: vertical; min-height: 130px; }

/* Submit button */
.submit-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 36px;
  background: linear-gradient(135deg, #C8972A, #A07020);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,151,42,0.4);
}
.submit-btn .btn-arrow {
  font-size: 1.1rem; transition: transform 0.25s;
}
.submit-btn:hover .btn-arrow { transform: translateX(5px); }

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: #0E0E0E;
}
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}
.faq-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #EDE5D5;
  text-align: center;
  margin-bottom: 0;
}
.faq-section h2::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  margin: 16px auto 12px;
}
.faq-subtitle {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #6A6050;
  margin-bottom: 52px;
}
.faq-accordion { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.active { border-color: rgba(200,151,42,0.3); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: #111;
  border: none; border-radius: 0;
  padding: 20px 24px;
  cursor: pointer;
  color: #C5B89A;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem; font-weight: 500;
  text-align: left;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0;
}
.faq-item.active .faq-question {
  background: #141414;
  color: #EDE5D5;
}
.faq-question:hover { background: #141414; color: #EDE5D5; }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(200,151,42,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #C8972A;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.2s;
  line-height: 1;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(200,151,42,0.12);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1);
}
.faq-answer-inner {
  padding: 20px 24px 24px;
  background: rgba(200,151,42,0.03);
  border-top: 1px solid rgba(200,151,42,0.08);
}
.faq-answer p {
  font-size: 0.9rem; color: #7A7060; line-height: 1.85; margin: 0;
}

/* Map Section */
.contact-map-section {
  padding: 100px 0;
  background: #0A0A0A;
}
.map-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
}
.map-container h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #EDE5D5;
  text-align: center;
  margin-bottom: 0;
}
.map-container h2::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  margin: 16px auto 0;
}
.map-subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: #6A6050;
  margin: 12px 0 40px;
  letter-spacing: 0.3px;
}
.map-embed {
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(200,151,42,0.12);
  margin-bottom: 20px;
}
.map-embed iframe { display: block; }
.map-info {
  background: rgba(200,151,42,0.05);
  border: 1px solid rgba(200,151,42,0.12);
  border-radius: 4px;
  padding: 20px 24px;
}
.map-note { font-size: 0.88rem; color: #7A7060; line-height: 1.65; margin: 0; }
.map-note strong { color: #C8972A; }

/* Responsive */
@media (max-width: 960px) {
  .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-col { position: static; }
  .contact-form-box { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-container, .faq-container, .map-container { padding: 0 24px; }
}

/* Light mode */
[data-theme="light"] .contact-item { background: #fff; border-color: #e8e0d4; }
[data-theme="light"] .contact-item:hover { background: #f8f5f0; border-color: rgba(138,78,15,0.25); }
[data-theme="light"] .contact-item-icon { background: rgba(138,78,15,0.07); border-color: rgba(138,78,15,0.2); }
[data-theme="light"] .contact-item-body p,
[data-theme="light"] .contact-item-body a { color: #5A4A3A; }
[data-theme="light"] .contact-form-box { background: #fff; border-color: #e8e0d4; }
[data-theme="light"] .contact-form-box h2 { color: #1A1612; }
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: #f8f5f0; border-color: #d4c9b8; color: #1A1612;
}
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder { color: #B0A090; }
[data-theme="light"] .faq-item { border-color: #e0d6c8; }
[data-theme="light"] .faq-question { background: #fff; color: #3A2E22; }
[data-theme="light"] .faq-item.active .faq-question { background: #f8f5f0; color: #1A1612; }
[data-theme="light"] .faq-answer-inner { background: #faf7f2; border-top-color: #e8e0d4; }
[data-theme="light"] .map-info { background: #faf7f2; border-color: #e8e0d4; }

.contact-form-box {
  background: #111;
  border: 1px solid rgba(200,151,42,0.12);
  border-radius: 4px;
  padding: 50px;
}
.contact-form-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: #EDE5D5; margin-bottom: 30px;
}
.contact-info-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: #EDE5D5; margin-bottom: 30px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #C8972A; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(200,151,42,0.05);
  border: 1px solid rgba(200,151,42,0.18);
  border-radius: 2px;
  padding: 12px 16px;
  color: #EDE5D5;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200,151,42,0.5);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #3A3028; }
.contact-icon-box {
  background: rgba(200,151,42,0.07);
  border: 1px solid rgba(200,151,42,0.15);
  border-radius: 4px;
  padding: 20px; margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #C8972A; margin-bottom: 6px;
}
.contact-text p { font-size: 0.9rem; color: #7A7060; line-height: 1.65; }
.map-info {
  background: rgba(200,151,42,0.07);
  border: 1px solid rgba(200,151,42,0.15);
  border-radius: 4px;
  padding: 20px; margin-bottom: 20px;
}
.map-note { font-size: 0.88rem; color: #7A7060; line-height: 1.6; }
.map-note strong { color: #C8972A; }

/* ================================================================
   PRODUCT DETAIL / SIMPLE PAGES
   ================================================================ */
.product-detail-simple { padding: 80px 40px; }
.product-simple-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: start;
  max-width: 1300px; margin: 0 auto;
}
.product-simple-images .main-image {
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(200,151,42,0.12);
}
.product-simple-images .main-image img {
  width: 100%; height: 500px;
  object-fit: cover; display: block;
}
.product-thumbnails {
  display: flex; gap: 8px; margin-top: 10px;
}
.product-thumbnails .thumb {
  width: 80px; height: 60px;
  border-radius: 2px; overflow: hidden;
  border: 1px solid rgba(200,151,42,0.1);
  cursor: pointer; transition: border-color 0.2s;
}
.product-thumbnails .thumb:hover,
.product-thumbnails .thumb.active { border-color: #C8972A; }
.product-thumbnails .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-simple-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #EDE5D5; margin-bottom: 8px;
}
.product-subtitle { font-size: 0.9rem; color: #5A5248; margin-bottom: 20px; }
.product-desc p { font-size: 0.92rem; color: #7A7060; line-height: 1.85; margin-bottom: 14px; }
.product-simple-specs {
  background: #111;
  border: 1px solid rgba(200,151,42,0.12);
  border-radius: 4px;
  padding: 30px; margin-top: 30px;
}
.product-simple-specs h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: #EDE5D5; margin-bottom: 16px;
}
.product-simple-specs li {
  font-size: 0.88rem; color: #7A7060;
  padding: 8px 0; border-bottom: 1px solid rgba(200,151,42,0.07);
  list-style: none;
}
.product-specs-below { max-width: 1200px; margin: 24px auto 0; }
.product-components-section { padding: 80px 40px; }
.components-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #7A7060; font-size: 1.1rem;
  text-align: center; margin-bottom: 50px;
}
.product-components-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #EDE5D5;
  text-align: center; margin-bottom: 8px;
}
.component-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(200,151,42,0.05);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 4px; overflow: hidden;
  max-width: 1300px; margin: 0 auto;
}
.component-card {
  background: #0A0A0A;
  border: none; border-radius: 0;
  padding: 30px; overflow: hidden;
}
.component-card:hover { background: #111; transform: none; }
.component-image {
  border-radius: 4px; overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(200,151,42,0.1);
}
.component-image img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.component-card:hover .component-image img { transform: scale(1.05); }
.component-label h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700;
  color: #EDE5D5; margin-bottom: 6px;
}
.component-label p { font-size: 0.85rem; color: #6A6050; line-height: 1.65; }

/* ================================================================
   VIDEO PAGE
   ================================================================ */
.video-player-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px; margin-top: 40px;
}
.video-player {
  position: relative; width: 100%;
  padding-bottom: 56.25%;
  background: #111;
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(200,151,42,0.15);
}
.video-player iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.video-info {
  position: relative;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(200,151,42,0.12);
  border-radius: 8px; padding: 34px 30px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.video-info:hover {
  border-color: rgba(200,151,42,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.video-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  background-size: 200% auto;
  animation: gradientShift 3s linear infinite;
}
.video-info h3 {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 8px;
}
.video-info h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 2px;
  background: linear-gradient(90deg, #C8972A, transparent);
}
.video-details { display: flex; flex-direction: column; gap: 0; }
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(200,151,42,0.08);
  transition: padding-left 0.3s cubic-bezier(0.16,1,0.3,1);
}
.detail-item:first-child { padding-top: 16px; }
.detail-item:last-child { border-bottom: none; padding-bottom: 0; }
.detail-item:hover { padding-left: 6px; }
.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  font-size: 1.25rem;
  border-radius: 50%;
  background: rgba(200,151,42,0.08);
  border: 1px solid rgba(200,151,42,0.25);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.detail-item:hover .detail-icon {
  background: rgba(200,151,42,0.16);
  border-color: #C8972A;
  transform: scale(1.08);
}
.detail-item strong {
  display: block; font-size: 0.92rem;
  color: #EDE5D5; margin-bottom: 4px; font-weight: 700;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-section { padding: 100px 40px; }
.faq-question {
  background: #111;
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 4px;
  padding: 18px 24px;
  cursor: pointer;
  margin-bottom: 2px;
  color: #EDE5D5;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.faq-question:hover { background: #161616; border-color: rgba(200,151,42,0.25); }
.faq-answer {
  background: rgba(200,151,42,0.04);
  border: 1px solid rgba(200,151,42,0.08);
  border-top: none;
  padding: 16px 24px;
  margin-bottom: 8px;
}
.faq-answer p { font-size: 0.9rem; color: #7A7060; line-height: 1.8; }

/* ================================================================
   CATALOGUE
   ================================================================ */
.katalog-section { padding: 100px 40px; background: #0A0A0A; }
.katalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(200,151,42,0.05);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 4px; overflow: hidden;
}
.katalog-card {
  background: #0A0A0A;
  padding: 30px; text-align: center;
  transition: background 0.25s;
}
.katalog-card:hover { background: #111; }
.katalog-card img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 2px;
  margin-bottom: 16px;
  border: 1px solid rgba(200,151,42,0.1);
}
.katalog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: #EDE5D5; margin-bottom: 8px;
}
.katalog-card p { font-size: 0.88rem; color: #6A6050; line-height: 1.65; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .about-row { flex-direction: column; gap: 50px; align-items: center; }
  .about-pics { width: 100%; max-width: 520px; }
  .about-info { max-width: 100%; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.gallery-feature { grid-column: span 2; grid-row: span 1; }
  .gallery-item.gallery-wide { grid-column: span 2; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .category-content,
  .category-content.reverse { grid-template-columns: 1fr; }
  .step-content,
  .process-step-card.reverse .step-content { grid-template-columns: 1fr; gap: 28px; }
  .step-details li { grid-template-columns: 1fr; gap: 3px; padding: 11px 0; }
  .step-num { font-size: 4.25rem; }
  .product-simple-layout { grid-template-columns: 1fr; }
  .video-player-wrapper { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 950px) {
  .navbar-container {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 8px;
  }
  .navbar.scrolled .navbar-container { padding: 8px 16px 6px; }
  .navbar.scrolled .navbar-logo-box img { height: 32px; width: 32px; }
  .navbar-logo { justify-content: center; padding-bottom: 8px; }
  .navbar-menu {
    position: static;
    transform: none;
    flex-wrap: wrap; justify-content: center;
    gap: 8px 18px;
  }
  .navbar-menu > a,
  .navbar-menu .dropdown > a {
    font-size: 11px;
    letter-spacing: 1.2px;
  }
  .navbar-menu .dropdown > a .dropdown-indicator {
    opacity: 0.7;
  }
  .navbar-actions {
    justify-content: center;
    margin-top: 10px;
  }
  .hero-scroll-indicator { display: none; }
  .product-grid { grid-template-columns: 1fr; max-width: 420px; gap: 12px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.gallery-feature { grid-column: span 2; grid-row: span 1; }
  .gallery-item.gallery-wide { grid-column: span 2; }
  .cert-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .dest-info {
    left: 20px;
    right: 20px;
    top: 34%;
    max-width: none;
  }
  .dest-info-desc { max-width: none; }
  .dest-rail {
    bottom: 34px;
    gap: 10px;
    padding: 0 20px;
    justify-content: flex-start;
  }
  .dest-card { width: 130px; }
  .dest-card-label { font-size: 9px; padding: 8px 8px 9px; }
  .about-section,
  .product-section,
  .gallery-section { padding: 80px 20px; }
  .cp-hero-content h1,
  .video-hero-content h1,
  .cert-hero-content h1,
  .cap-hero-content h1,
  .process-hero-content h1 { font-size: 2rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .about-image-card:nth-child(1),
  .about-image-card:nth-child(2),
  .about-image-card:nth-child(3),
  .about-image-card:nth-child(4) { margin-top: 0; }
  .about-pics { max-width: 340px; }
  .site-footer { padding: 60px 24px 24px; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .floating-contact-buttons { bottom: 20px; right: 20px; }
  .floating-btn { width: 48px; height: 48px; }
  .cta-box { padding: 50px 24px; }
  .cta-buttons { flex-direction: column; }
  .cta-btn { width: 100%; text-align: center; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 40px 24px; }
  .process-step-card { padding: 50px 20px 24px; }
  .contact-form-box { padding: 30px 20px; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   THEME OVERRIDE: Light mode essentials
   (Full control stays in theme.css variables)
   ================================================================ */
[data-theme="light"] body { background-color: var(--bg-body); color: var(--text-body); }
[data-theme="light"] .navbar { background: var(--bg-navbar); border-bottom-color: var(--border-soft); }
[data-theme="light"] .brand-title { color: var(--text-heading); }
[data-theme="light"] .brand-tagline { color: var(--text-muted); }
[data-theme="light"] .navbar-menu > a,
[data-theme="light"] .navbar-menu .dropdown > a {
  color: var(--text-navbar);
}
[data-theme="light"] .navbar-menu > a:hover,
[data-theme="light"] .navbar-menu .dropdown > a:hover {
  color: var(--accent);
}
[data-theme="light"] .dropdown-content {
  background: var(--dropdown-bg);
  border-color: var(--dropdown-border);
}
[data-theme="light"] .dropdown-content a { color: var(--text-navbar); }
[data-theme="light"] .dropdown-content a:hover { color: var(--accent); }
[data-theme="light"] .marquee-strip { background: var(--accent); }
[data-theme="light"] .marquee-track span { color: #fff; }
[data-theme="light"] .hero-section::before { filter: brightness(1.1); }
[data-theme="light"] .about-section { background: var(--bg-body); }
[data-theme="light"] .about-info { background: transparent; color: var(--text-body); }
[data-theme="light"] .about-info h3 { color: var(--text-heading); }
[data-theme="light"] .about-tagline { color: var(--accent); }
[data-theme="light"] .about-description { color: var(--text-muted); }
[data-theme="light"] .stat-box { background: var(--accent-bg); border-right-color: var(--border-card); }
[data-theme="light"] .stat-number { color: var(--accent); }
[data-theme="light"] .stat-label { color: var(--text-muted); }
[data-theme="light"] .about-btn { border-color: var(--accent-border); color: var(--accent); }
[data-theme="light"] .about-btn:hover { background: var(--accent); color: #fff; }
[data-theme="light"] .section-title,
[data-theme="light"] .section-title-product,
[data-theme="light"] .section-title-gallery { color: var(--text-heading); }
[data-theme="light"] .product-section { background: var(--bg-section-alt); }
[data-theme="light"] .product-grid { background: transparent; border: none; }
[data-theme="light"] .product-card { background: transparent; }
[data-theme="light"] .product-card:hover { background: transparent; }
[data-theme="light"] .gallery-section { background: var(--bg-section-alt); }
[data-theme="light"] .site-footer { background: var(--bg-footer); border-top-color: var(--footer-border); }
[data-theme="light"] .footer-brand h3,
[data-theme="light"] .footer-contact h3,
[data-theme="light"] .footer-nav h3 { color: var(--footer-heading); }
[data-theme="light"] .footer-description { color: var(--footer-muted); }
[data-theme="light"] .footer-bottom p { color: var(--footer-bottom); }
[data-theme="light"] .contact-list li { color: var(--footer-text); }
[data-theme="light"] .contact-list strong { color: var(--footer-strong); }
[data-theme="light"] .nav-list li a { color: var(--footer-link); }
[data-theme="light"] .nav-list li a:hover { color: var(--footer-link-hover); }
[data-theme="light"] .social-icon-footer { background: var(--accent-bg); border-color: var(--accent-border); }

/* inner pages light */
[data-theme="light"] .contact-hero::before { opacity: 0.18; }
/* About Us + Capabilities + Process heroes keep their photo fully visible in
   light mode too — their theme-aware .*-hero-overlay handles text contrast in
   both themes */
[data-theme="light"] .cp-hero::before,
[data-theme="light"] .video-hero::before,
[data-theme="light"] .cert-hero::before,
[data-theme="light"] .cap-hero::before,
[data-theme="light"] .process-hero::before { opacity: 1; }
[data-theme="light"] .about-section.company-profile,
[data-theme="light"] .cert-intro, [data-theme="light"] .cert-cta,
[data-theme="light"] .cap-intro, [data-theme="light"] .cap-cta,
[data-theme="light"] .process-intro, [data-theme="light"] .process-cta,
[data-theme="light"] .featured-video-section, [data-theme="light"] .video-cta,
[data-theme="light"] .cp-vision-mission, [data-theme="light"] .contact-main-section,
[data-theme="light"] .contact-map-section, [data-theme="light"] .product-detail-simple,
[data-theme="light"] .faq-section, [data-theme="light"] .events-intro, [data-theme="light"] .events-cta { background: var(--bg-body); }
[data-theme="light"] .cp-stats, [data-theme="light"] .core-values-section,
[data-theme="light"] .cert-grid-section, [data-theme="light"] .cert-benefits,
[data-theme="light"] .cap-category, [data-theme="light"] .cap-stats,
[data-theme="light"] .process-timeline-visual, [data-theme="light"] .process-steps-section,
[data-theme="light"] .process-stats, [data-theme="light"] .events-section,
[data-theme="light"] .event-stats, [data-theme="light"] .video-highlights,
[data-theme="light"] .product-components-section { background: var(--bg-section-alt); }
[data-theme="light"] .vm-card, [data-theme="light"] .stat-card, [data-theme="light"] .value-card,
[data-theme="light"] .highlight-card, [data-theme="light"] .benefit-card,
[data-theme="light"] .process-step-card, [data-theme="light"] .event-card,
[data-theme="light"] .cert-card, [data-theme="light"] .contact-form-box,
[data-theme="light"] .video-info, [data-theme="light"] .component-card,
[data-theme="light"] .cta-box { background: var(--bg-card); border-color: var(--border-card); }
[data-theme="light"] .vm-card h3, [data-theme="light"] .value-name,
[data-theme="light"] .highlight-card h4, [data-theme="light"] .benefit-card h4,
[data-theme="light"] .step-info h3, [data-theme="light"] .event-content h3,
[data-theme="light"] .cert-info h3, [data-theme="light"] .component-label h4,
[data-theme="light"] .video-info h3, [data-theme="light"] .cta-box h2,
[data-theme="light"] .cta-content h2 { color: var(--text-heading); }
[data-theme="light"] .vm-card p, [data-theme="light"] .vm-card ul li,
[data-theme="light"] .value-text, [data-theme="light"] .highlight-card p,
[data-theme="light"] .benefit-card p, [data-theme="light"] .step-description,
[data-theme="light"] .event-description, [data-theme="light"] .cert-description,
[data-theme="light"] .category-text p, [data-theme="light"] .capability-list li,
[data-theme="light"] .detail-item p, [data-theme="light"] .cta-box p,
[data-theme="light"] .cta-content p, [data-theme="light"] .about-text p,
[data-theme="light"] .product-desc p, [data-theme="light"] .contact-text p,
[data-theme="light"] .map-note { color: var(--text-muted); }
[data-theme="light"] .stat-cards .stat-number,
[data-theme="light"] .about-stats-grid .stat-number,
[data-theme="light"] .about-stats-grid .stat-plus,
[data-theme="light"] .stat-card .stat-number,
[data-theme="light"] .core-title, [data-theme="light"] .category-subtitle,
[data-theme="light"] .vm-card ul li::before,
[data-theme="light"] .capability-list li::before { color: var(--accent); }
[data-theme="light"] .faq-question { background: var(--bg-card); color: var(--text-body); border-color: var(--border-card); }
[data-theme="light"] .faq-answer { background: var(--bg-section-alt); }
[data-theme="light"] .faq-answer p { color: var(--text-muted); }
[data-theme="light"] .form-group label { color: var(--accent); }
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: var(--input-bg);
  border-color: var(--input-border);
  color: var(--input-text);
}
[data-theme="light"] select { background-color: var(--input-bg); color: var(--input-text); border-color: var(--input-border); }
[data-theme="light"] select option { background-color: var(--bg-card); color: var(--input-text); }
[data-theme="light"] .stats-grid,
[data-theme="light"] .about-stats-grid { background: var(--border-card); border-color: var(--border-card); }
[data-theme="light"] .about-stats-grid .stat-box,
[data-theme="light"] .stat-card { background: var(--bg-card); }
[data-theme="light"] .product-simple-info h1,
[data-theme="light"] .product-components-section h2 { color: var(--text-heading); }
[data-theme="light"] .contact-icon-box,
[data-theme="light"] .map-info { background: var(--accent-bg); border-color: var(--accent-border); }
[data-theme="light"] .contact-text h4 { color: var(--accent); }
[data-theme="light"] .values-grid, [data-theme="light"] .highlights-grid,
[data-theme="light"] .benefits-grid, [data-theme="light"] .component-grid { background: var(--border-card); border-color: var(--border-card); }
[data-theme="light"] .cp-hero-content h1,
[data-theme="light"] .video-hero-content h1,
[data-theme="light"] .cert-hero-content h1,
[data-theme="light"] .cap-hero-content h1,
[data-theme="light"] .process-hero-content h1 { color: #fff; }

/* ================================================================
   GEN Z UPGRADES — Dynamic, energetic, animated
   ================================================================ */

/* ── Hero Gradient Orbs ─────────────────────────────────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(90px);
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(200,151,42,0.28) 0%, transparent 70%);
  top: -10%; left: -8%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(180,90,20,0.22) 0%, transparent 70%);
  bottom: 5%; right: -5%;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(220,170,60,0.18) 0%, transparent 70%);
  top: 40%; right: 15%;
  animation-delay: -7s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(30px, -40px) scale(1.05); }
  50%       { transform: translate(-20px, 30px) scale(0.95); }
  75%       { transform: translate(40px, 20px) scale(1.03); }
}

/* ── Grain / Noise Texture overlay ─────────────────────────────── */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainShift 0.8s steps(1) infinite;
}
@keyframes grainShift {
  0%  { background-position: 0 0; }
  20% { background-position: -30px 10px; }
  40% { background-position: 20px -20px; }
  60% { background-position: -10px 30px; }
  80% { background-position: 15px -5px; }
}

/* ── Gradient Text ──────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #E8C47A 0%, #C8972A 40%, #FF9B42 70%, #E8C47A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-interactive-text,
.hero-title { -webkit-text-fill-color: initial; }
.hero-interactive-text.gradient-text span,
.hero-title.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #E8C47A 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s linear infinite;
}

/* ── Animated Shimmer Button ────────────────────────────────────── */
.hero-btn-primary {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -100%; }
  60%, 100% { left: 150%; }
}

/* ── Glowing Gold Glow on hover elements ───────────────────────── */
.glow-hover {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.glow-hover:hover {
  box-shadow: 0 0 30px rgba(200,151,42,0.35), 0 0 60px rgba(200,151,42,0.15);
  transform: translateY(-4px);
}

/* Product cards get 3D tilt + glow */
.product-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease, box-shadow 0.3s ease !important;
}
.product-card:hover {
  box-shadow: 0 24px 70px rgba(0,0,0,0.6), 0 0 50px rgba(200,151,42,0.25) !important;
}

/* Cert/value/stat cards glow on hover */
.cert-card:hover,
.value-card:hover,
.stat-card:hover,
.vm-card:hover,
.highlight-card:hover,
.benefit-card:hover {
  box-shadow: 0 16px 50px rgba(0,0,0,0.45), 0 0 30px rgba(200,151,42,0.18) !important;
}

/* ── Animated Gradient Border on section titles ─────────────────── */
.section-title::after,
.section-title-product::after,
.section-title-gallery::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C8972A, #FFD700, #C8972A);
  background-size: 200% auto;
  margin: 10px auto 0;
  animation: gradientShift 3s linear infinite;
  transition: width 0.6s ease;
}
.section-title.visible::after,
.section-title-product.visible::after,
.section-title-gallery.visible::after,
.reveal.visible .section-title::after,
.reveal.visible .section-title-product::after,
.reveal.visible .section-title-gallery::after {
  width: 80px;
}
/* For inline/left-aligned titles */
.about-info .section-title::after { margin: 10px 0 0; }

/* ── Section Decorative Number ──────────────────────────────────── */
.section-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,151,42,0.12);
  position: absolute;
  top: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -4px;
  user-select: none;
}

/* ── Staggered Grid Children ────────────────────────────────────── */
.product-grid .product-card:nth-child(1) { transition-delay: 0.05s; }
.product-grid .product-card:nth-child(2) { transition-delay: 0.15s; }
.product-grid .product-card:nth-child(3) { transition-delay: 0.25s; }

.gallery-grid .gallery-item:nth-child(1) { --i: 0; }
.gallery-grid .gallery-item:nth-child(2) { --i: 1; }
.gallery-grid .gallery-item:nth-child(3) { --i: 2; }
.gallery-grid .gallery-item:nth-child(4) { --i: 3; }
.gallery-grid .gallery-item:nth-child(5) { --i: 4; }
.gallery-grid .gallery-item:nth-child(6) { --i: 5; }
.gallery-item.reveal { transition-delay: calc(var(--i, 0) * 0.1s) !important; }

/* ── About image stagger ─────────────────────────────────────────── */
.about-image-card:nth-child(1) { transition-delay: 0.0s; }
.about-image-card:nth-child(2) { transition-delay: 0.1s; }
.about-image-card:nth-child(3) { transition-delay: 0.2s; }
.about-image-card:nth-child(4) { transition-delay: 0.3s; }

/* ── Navbar glassmorphism upgrade ───────────────────────────────── */
.navbar {
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,151,42,0.4), transparent);
  pointer-events: none;
}

/* ── Gallery Lightbox ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 99997;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(8px);
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.lightbox.active img { transform: scale(1); }
.lightbox-caption {
  position: absolute;
  bottom: 30px; left: 0; right: 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 28px; line-height: 1;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  background: none; border: none;
  font-family: 'Inter', sans-serif;
}
.lightbox-close:hover { color: #C8972A; transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(200,151,42,0.1);
  border: 1px solid rgba(200,151,42,0.25);
  color: #C8972A;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(200,151,42,0.25);
  border-color: #C8972A;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ── Stats Ticker Bar ─────────────────────────────────────────────── */
.stats-ticker {
  background: #0A0A0A;
  border-top: 1px solid rgba(200,151,42,0.1);
  border-bottom: 1px solid rgba(200,151,42,0.1);
  overflow: hidden;
  padding: 0;
}
.stats-ticker-inner {
  display: flex;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}
.stats-ticker-item {
  flex: 1;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(200,151,42,0.1);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stats-ticker-item:last-child { border-right: none; }
.stats-ticker-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #C8972A, #FFD700);
  transition: width 0.5s ease;
}
.stats-ticker-item:hover::before { width: 100%; }
.stats-ticker-item:hover { background: rgba(200,151,42,0.04); }
.ticker-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #C8972A;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.ticker-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5A5248;
}

/* ── Marquee double row ──────────────────────────────────────────── */
.marquee-strip-reverse {
  background: rgba(200,151,42,0.06);
  border-bottom: 1px solid rgba(200,151,42,0.1);
  overflow: hidden;
  padding: 10px 0;
}
.marquee-track-reverse {
  display: inline-block;
  animation: marqueeReverse 35s linear infinite;
}
@keyframes marqueeReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.marquee-track-reverse span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,151,42,0.5);
  margin: 0 20px;
}

/* ── Page loader ─────────────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFade 0.6s 0.2s forwards;
  background: linear-gradient(90deg, #3E9E42 0%, #3E9E42 40%, #8A5A2B 60%, #8A5A2B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(200,151,42,0.2);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  animation: loaderBar 1.2s 0.3s ease-in-out forwards;
}
@keyframes loaderBar {
  0%   { left: -100%; }
  100% { left: 100%; }
}
.loader-hearts {
  display: flex;
  gap: 12px;
  justify-content: center;
  opacity: 0;
  animation: loaderFade 0.6s 0.3s forwards;
}
.loader-hearts span {
  font-size: 15px;
  color: #39FF6A;
  opacity: 0.35;
  animation: loaderHeartBeat 1.1s ease-in-out infinite;
}
.loader-hearts span:nth-child(1) { animation-delay: 0s; }
.loader-hearts span:nth-child(2) { animation-delay: 0.15s; }
.loader-hearts span:nth-child(3) { animation-delay: 0.3s; }
@keyframes loaderHeartBeat {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50%      { transform: scale(1.4); opacity: 1; }
}
@keyframes loaderFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Floating WhatsApp pulse ring ───────────────────────────────── */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.whatsapp-btn { position: relative; }

/* ── Product card inner number badge ───────────────────────────── */
.product-card-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.12);
  z-index: 3;
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}
.product-card:hover .product-card-num { color: rgba(200,151,42,0.25); }

/* ── About section horizontal rule ─────────────────────────────── */
.about-info .section-title {
  position: relative;
  display: inline-block;
}

/* ── Scroll progress bar ─────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #C8972A, #FFD700, #C8972A);
  background-size: 200% auto;
  z-index: 99999;
  animation: gradientShift 3s linear infinite;
  transition: width 0.1s linear;
}

/* ── Inner page hero enhancements ───────────────────────────────── */
.cp-hero, .video-hero, .cert-hero,
.cap-hero, .process-hero, .events-hero, .contact-hero {
  min-height: 60vh;
}
.cp-hero-content h1,
.video-hero-content h1,
.cert-hero-content h1,
.cap-hero-content h1,
.process-hero-content h1,
.events-hero-content h1,
.contact-hero-content h1 {
  animation: heroReveal 1s 0.2s both;
}
.cp-hero-content p,
.video-hero-content p,
.cert-hero-content p,
.cap-hero-content p,
.process-hero-content p,
.events-hero-content p,
.contact-hero-content p {
  animation: heroReveal 1s 0.4s both;
}

/* ── Breadcrumb ──────────────────────────────────────────────────── */
.page-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  animation: heroReveal 1s 0.1s both;
}
.page-breadcrumb a { color: rgba(200,151,42,0.7); text-decoration: none; }
.page-breadcrumb a:hover { color: #C8972A; }
.page-breadcrumb span { margin: 0 8px; opacity: 0.4; }

/* ── Improved product card number tags ──────────────────────────── */
.product-image-wrapper { position: relative; }

/* ── Smooth section transitions (clip path reveal) ───────────────── */
.clip-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.clip-reveal.visible { clip-path: inset(0 0 0% 0); }

/* ── "View All" CTA section at bottom of product ───────────────── */
.product-cta { position: relative; z-index: 1; }

/* ── Contact page enhanced ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Event page grid ─────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ── Better stat numbers animation target ───────────────────────── */
.stat-number[data-target] {
  display: inline-block;
  min-width: 3ch;
}

/* ── Hover border animation ─────────────────────────────────────── */
.border-anim {
  position: relative;
}
.border-anim::before, .border-anim::after {
  content: '';
  position: absolute;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.border-anim::before {
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  transform: scaleX(0);
}
.border-anim::after {
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  transform: scaleX(0);
}
.border-anim:hover::before,
.border-anim:hover::after { transform: scaleX(1); }

/* ── Responsive tweaks for Gen Z additions ──────────────────────── */
@media (max-width: 768px) {
  .stats-ticker-inner { flex-direction: column; }
  .stats-ticker-item { border-right: none; border-bottom: 1px solid rgba(200,151,42,0.1); }
  .stats-ticker-item:last-child { border-bottom: none; }
  .hero-orb { display: none; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  #page-loader .loader-logo { font-size: 1.2rem; }
}

/* ── Light mode overrides for new elements ──────────────────────── */
[data-theme="light"] .stats-ticker { background: var(--bg-section-alt); border-color: var(--border-card); }
[data-theme="light"] .stats-ticker-item { border-right-color: var(--border-card); }
[data-theme="light"] .ticker-number { color: var(--accent); }
[data-theme="light"] .ticker-label  { color: var(--text-muted); }
[data-theme="light"] .marquee-strip-reverse { background: var(--bg-section-alt); border-color: var(--border-card); }
[data-theme="light"] .marquee-track-reverse span { color: var(--accent-border); }
[data-theme="light"] .section-num { -webkit-text-stroke-color: rgba(138,78,15,0.08); }
[data-theme="light"] #page-loader { background: var(--bg-body); }
[data-theme="light"] .page-breadcrumb { color: rgba(0,0,0,0.4); }
[data-theme="light"] .page-breadcrumb a { color: var(--accent); }

/* ================================================================
   INNER PAGE HERO — Gen Z Enhancements
   ================================================================ */

/* Gold accent line under inner hero h1 */
.cp-hero-content h1::after,
.video-hero-content h1::after,
.cert-hero-content h1::after,
.cap-hero-content h1::after,
.process-hero-content h1::after,
.events-hero-content h1::after,
.contact-hero-content h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  margin: 18px auto 0;
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% auto;
}

/* Eyebrow text on inner hero */
.inner-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(200,151,42,0.7);
  margin-bottom: 16px;
  display: block;
  animation: heroReveal 1s 0s both;
}

/* Company Profile hero — refined eyebrow + title treatment */
.cp-hero-content .inner-hero-eyebrow,
.video-hero-content .inner-hero-eyebrow,
.cert-hero-content .inner-hero-eyebrow,
.cap-hero-content .inner-hero-eyebrow,
.process-hero-content .inner-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  animation: heroReveal 1s 0s both, eyebrowPulse 3.5s ease-in-out 1.2s infinite;
}
/* About Us + Capabilities eyebrows sit over a full photo — brighter green +
   shadow so they stay legible in both themes */
.cp-hero-content .inner-hero-eyebrow,
.video-hero-content .inner-hero-eyebrow,
.cert-hero-content .inner-hero-eyebrow,
.cap-hero-content .inner-hero-eyebrow,
.process-hero-content .inner-hero-eyebrow {
  background: linear-gradient(90deg, #8FD97A 0%, #8FD97A 45%, #E7C888 55%, #E7C888 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.85));
}
.cp-hero-content .inner-hero-eyebrow::before,
.cp-hero-content .inner-hero-eyebrow::after,
.video-hero-content .inner-hero-eyebrow::before,
.video-hero-content .inner-hero-eyebrow::after,
.cert-hero-content .inner-hero-eyebrow::before,
.cert-hero-content .inner-hero-eyebrow::after,
.cap-hero-content .inner-hero-eyebrow::before,
.cap-hero-content .inner-hero-eyebrow::after,
.process-hero-content .inner-hero-eyebrow::before,
.process-hero-content .inner-hero-eyebrow::after {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2F7D33);
}
.cp-hero-content .inner-hero-eyebrow::before,
.video-hero-content .inner-hero-eyebrow::before,
.cert-hero-content .inner-hero-eyebrow::before,
.cap-hero-content .inner-hero-eyebrow::before,
.process-hero-content .inner-hero-eyebrow::before { background: linear-gradient(90deg, transparent, #8FD97A); }
.cp-hero-content .inner-hero-eyebrow::after,
.video-hero-content .inner-hero-eyebrow::after,
.cert-hero-content .inner-hero-eyebrow::after,
.cap-hero-content .inner-hero-eyebrow::after,
.process-hero-content .inner-hero-eyebrow::after { background: linear-gradient(90deg, #E7C888, transparent); }
@keyframes eyebrowPulse {
  0%, 100% { opacity: 0.7; letter-spacing: 4px; }
  50%      { opacity: 1;   letter-spacing: 5px; }
}
/* About Us + Capabilities hero titles sit over a full-opacity photo — brighter
   gradient stops + a hard shadow so they stay readable over the photo in both
   themes */
.cp-hero-content h1,
.video-hero-content h1,
.cert-hero-content h1,
.cap-hero-content h1,
.process-hero-content h1 {
  background: linear-gradient(100deg, #9BE087 18%, #63C95A 46%, #E7C888 62%, #D8B06A 84%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,0.9)) drop-shadow(0 0 3px rgba(0,0,0,0.8));
  animation: heroReveal 1s 0.2s both, titleShine 6s linear 1.4s infinite;
}
.cp-hero-content h1::after,
.video-hero-content h1::after,
.cert-hero-content h1::after,
.cap-hero-content h1::after,
.process-hero-content h1::after {
  background: linear-gradient(90deg, #2F7D33, #8A5A2B);
}
@keyframes titleShine {
  0%   { background-position: 200% center; }
  100% { background-position: -50% center; }
}

/* "About PT. Surya Bangkit Cemerlang" heading — refined shimmer text */
.about-title-shine {
  background: linear-gradient(100deg, #1A1208 20%, #C8972A 45%, #8A4E0F 55%, #1A1208 80%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShine 6s linear 0.6s infinite;
}
[data-theme="dark"] .about-title-shine {
  background-image: linear-gradient(100deg, #EDE5D5 20%, #FFD97A 45%, #C8972A 55%, #EDE5D5 80%);
  background-size: 250% auto;
}

/* "Our Capabilities" heading — refined shimmer text */
.cp-stats h2,
.featured-video-section h2,
.video-highlights h2 {
  text-align: center;
  background: linear-gradient(100deg, #1A1208 20%, #C8972A 45%, #8A4E0F 55%, #1A1208 80%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShine 6s linear 0.6s infinite;
}
[data-theme="dark"] .cp-stats h2,
[data-theme="dark"] .featured-video-section h2,
[data-theme="dark"] .video-highlights h2 {
  background-image: linear-gradient(100deg, #EDE5D5 20%, #FFD97A 45%, #C8972A 55%, #EDE5D5 80%);
  background-size: 250% auto;
}
.cp-stats h2::after,
.featured-video-section h2::after,
.video-highlights h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  background-size: 200% auto;
  animation: gradientShift 3s linear infinite;
}
.cp-stats .stats-intro {
  text-align: center;
  margin-top: 10px;
}
.featured-video-section .video-intro {
  text-align: center;
  margin-top: 10px;
}

/* Floating micro-orbs injected by JS into inner page heroes */
.inner-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

/* Category icon style used in Capabilities sections */
.category-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.category-header {
  text-align: center;
  margin-bottom: 48px;
}
.category-subtitle {
  opacity: 0.65;
}

/* (Production Flow stepper styling lives in the consolidated block above,
   next to .process-highlights) */

/* Event card enhancements */
.event-card {
  background: #0E0E0E;
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), border-color 0.3s;
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,151,42,0.3);
}
.event-image { position: relative; overflow: hidden; }
.event-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-image img { transform: scale(1.04); }
.event-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #C8972A;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 2px;
}
.event-content {
  padding: 28px 24px;
}
.event-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #EDE5D5;
  margin: 0 0 10px;
}
.event-content p {
  font-size: 0.9rem;
  color: #7A7060;
  line-height: 1.7;
  margin: 0;
}

/* Capability category content layout */
.category-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.category-content.reverse { direction: rtl; }
.category-content.reverse > * { direction: ltr; }
.category-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(200,151,42,0.1);
}
.capability-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.capability-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(200,151,42,0.07);
  font-size: 0.95rem;
  color: #9A9080;
  line-height: 1.6;
}
.capability-list li:last-child { border-bottom: none; }
.capability-list strong { color: #EDE5D5; }
.capability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,42,0.07);
  border: 1px solid rgba(200,151,42,0.2);
  border-radius: 2px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  color: #C8972A;
  margin-top: 8px;
}
.capability-badge .badge-icon { font-size: 0.9rem; }

@media (max-width: 768px) {
  .category-content,
  .category-content.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .category-image img { height: 220px; }
}

/* ── Product detail simple page ─────────────────────────────────── */
.product-detail-simple {
  padding: 120px 5% 80px;
  background: #0A0A0A;
}
.product-detail-simple .product-simple-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0;
}
.product-main-image {
  position: sticky;
  top: 100px;
}
.product-main-image img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(200,151,42,0.12);
  background: #111;
  display: block;
  transition: transform 0.5s ease;
}
.product-main-image img:hover { transform: scale(1.02); }
.product-simple-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #EDE5D5;
  margin: 0 0 8px;
}
.product-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #C8972A;
  margin-bottom: 24px;
}
.product-desc p {
  font-size: 0.95rem;
  color: #9A9080;
  line-height: 1.8;
  margin-bottom: 16px;
}
.product-simple-specs h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #EDE5D5;
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,151,42,0.15);
}
.product-simple-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-simple-specs li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  color: #9A9080;
}
.product-simple-specs li:last-child { border-bottom: none; }
.product-simple-specs strong { color: #EDE5D5; }
.product-inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #C8972A, #A07020);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.product-inquiry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,151,42,0.35);
}
@media (max-width: 900px) {
  .product-detail-simple .product-simple-container {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .product-detail-simple { padding: 100px 5% 60px; }
  .product-main-image { position: static; }
}

/* ── Product page shared container ───────────────────────────────── */
.product-simple-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 5%;
}

/* WhatsApp inquiry button (used without "product-" prefix on product pages) */
.inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.inquiry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.35);
}
.inquiry-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
.product-simple-cta { margin-top: 32px; }

/* ── Product info side enhancements ────────────────────────────── */
.product-simple-info {
  padding-top: 8px;
}
.product-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C8972A;
  border: 1px solid rgba(200,151,42,0.3);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.product-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, #C8972A, transparent);
  margin: 20px 0;
}

/* ── Components grid (used in HTML, matching component-grid style) ── */
.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: rgba(200,151,42,0.05);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: 4px;
  overflow: hidden;
  max-width: 1260px;
  margin: 32px auto 0;
}

/* Component card with direct <img> (no .component-image wrapper) */
.components-grid .component-card {
  background: #0A0A0A;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  transition: background 0.25s;
}
.components-grid .component-card:hover { background: #111; }
.components-grid .component-card > img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #111;
  transition: transform 0.4s ease;
}
.components-grid .component-card:hover > img { transform: scale(1.04); }
.components-grid .component-label {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(200,151,42,0.08);
}
.components-grid .component-label h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #EDE5D5;
  margin: 0 0 6px;
}
.components-grid .component-label p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #6A6050;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Components section heading */
.product-components-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #EDE5D5;
  text-align: center;
  margin-bottom: 8px;
}
.product-components-section h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  margin: 14px auto 0;
}
.product-components-section .components-intro {
  text-align: center;
  margin-bottom: 0;
}

/* Light theme overrides */
[data-theme="light"] .components-grid .component-card { background: #fff; }
[data-theme="light"] .components-grid .component-card:hover { background: #f8f5f0; }
[data-theme="light"] .components-grid .component-card > img { background: #f0ece4; }
[data-theme="light"] .components-grid .component-label h4 { color: #1A1612; }
[data-theme="light"] .components-grid .component-label p { color: #8A7A6A; }

/* ── Katalog page hero ──────────────────────────────────────────── */
.katalog-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #080808 0%, #121212 100%);
  overflow: hidden;
  text-align: center;
  padding: 80px 24px 60px;
}
.katalog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('gambar/vc.jpeg') center/cover no-repeat;
  opacity: 0.08;
}
.katalog-hero-content {
  position: relative;
  z-index: 1;
}
.katalog-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #EDE5D5;
  margin: 0 0 12px;
  animation: heroReveal 1s 0.2s both;
}
.katalog-hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #7A7060;
  animation: heroReveal 1s 0.4s both;
}
.katalog-flipbook-section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.katalog-flipbook-section iframe {
  width: 100%;
  height: 680px;
  border: none;
  border-radius: 4px;
  border: 1px solid rgba(200,151,42,0.1);
}

/* ================================================================
   CAPABILITIES PAGE — Immersive Panel Redesign
   ================================================================ */

/* ── Intro Strip ──────────────────────────────────────────────── */
.cap-intro-strip {
  background: #080808;
  border-bottom: 1px solid rgba(200,151,42,0.1);
  padding: 80px 6%;
}
.cap-intro-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.cap-intro-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C8972A;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}
.cap-intro-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.cap-intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: #9A9080;
  line-height: 1.7;
  max-width: 800px;
  margin: 0;
}
.cap-intro-counts {
  display: flex;
  flex-direction: row;
  gap: 0;
  border-top: 1px solid var(--border-card, rgba(200,151,42,0.18));
  padding-top: 34px;
}
.cap-count-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0 36px;
  border-right: 1px solid var(--border-card, rgba(200,151,42,0.18));
}
.cap-count-item:first-child { padding-left: 0; }
.cap-count-item:last-child { border-right: none; padding-right: 0; }
.cap-count-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  font-weight: 700;
  color: #C8972A;
  line-height: 1;
}
.cap-count-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5A5040;
  line-height: 1.5;
}

/* ── Immersive Panels ─────────────────────────────────────────── */
.cap-panel {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 620px;
  position: relative;
  overflow: hidden;
}
.cap-panel-reverse {
  grid-template-columns: 45% 55%;
}
.cap-panel-reverse .cap-panel-visual { order: 2; }
.cap-panel-reverse .cap-panel-content { order: 1; }

.cap-panel-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(200,151,42,0.12) 0%, transparent 60%),
    linear-gradient(150deg, #14120E 0%, #0A0A0A 60%, #12100C 100%);
}
.cap-panel-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.cap-panel:hover .cap-panel-visual img { transform: scale(1.04); }
/* Placeholder icon shown while the real photo isn't wired up yet (or if it fails to load) */
.cap-panel-visual::before {
  content: attr(data-icon);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(4rem, 9vw, 7rem);
  opacity: 0.16;
  filter: grayscale(0.4);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
  z-index: 0;
}
.cap-panel:hover .cap-panel-visual::before { transform: scale(1.12) rotate(-4deg); opacity: 0.22; }
.cap-panel-visual::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(200,151,42,0.08), transparent);
  animation: capVisualSheen 6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes capVisualSheen {
  0%   { left: -60%; }
  50%  { left: 130%; }
  100% { left: 130%; }
}

/* Gradient fade from image into content panel */
.cap-panel-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, transparent 50%, #080808 100%);
  pointer-events: none;
}
.cap-panel-fade-right {
  background: linear-gradient(to left, transparent 50%, #080808 100%);
}

/* Content panel */
.cap-panel-content {
  background: #080808;
  padding: clamp(44px, 5vw, 72px) clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Large ghost number */
.cap-panel-num {
  position: absolute;
  bottom: -20px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 700;
  color: rgba(200, 151, 42, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.5s;
}
.cap-panel:hover .cap-panel-num { color: rgba(200, 151, 42, 0.1); }

.cap-panel-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C8972A;
  display: block;
  margin-bottom: 20px;
}
.cap-panel-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #C8972A;
  vertical-align: middle;
  margin-right: 10px;
}

.cap-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  color: #EDE5D5;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 28px;
}

.cap-panel-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #6A6050;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 400px;
}

/* Feature list */
.cap-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.cap-feature-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(200,151,42,0.08);
  transition: border-color 0.3s;
}
.cap-feature-list li:first-child { border-top: 1px solid rgba(200,151,42,0.08); }
.cap-panel:hover .cap-feature-list li { border-color: rgba(200,151,42,0.14); }
.cf-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #EDE5D5;
  white-space: nowrap;
}
.cf-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #5A5040;
  text-align: right;
  letter-spacing: 0.3px;
}

/* Cert badge */
.cap-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: rgba(200,151,42,0.05);
  border: 1px solid rgba(200,151,42,0.18);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #C8972A;
  align-self: flex-start;
  transition: background 0.3s, border-color 0.3s;
}
.cap-cert-badge:hover {
  background: rgba(200,151,42,0.1);
  border-color: rgba(200,151,42,0.4);
}

/* Top accent line on panels */
.cap-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,151,42,0.2), transparent);
  z-index: 2;
}

/* ── Stats Strip ──────────────────────────────────────────────── */
.cap-stats-strip {
  background: #050505;
  border-top: 1px solid rgba(200,151,42,0.12);
  border-bottom: 1px solid rgba(200,151,42,0.12);
  padding: 70px 6%;
}
.cap-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cap-stat-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  text-align: center;
}
.cap-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #C8972A;
  line-height: 1;
  letter-spacing: -1px;
}
.cap-stat-num sup {
  font-size: 0.45em;
  vertical-align: super;
  letter-spacing: 0;
}
.cap-stat-slash { color: rgba(200,151,42,0.4); margin: 0 2px; }
.cap-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5A5040;
}
.cap-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(200,151,42,0.15);
  flex-shrink: 0;
}

/* ── CTA Section ──────────────────────────────────────────────── */
.cap-cta-section {
  background: #080808;
  padding: 120px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cap-cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,42,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cap-cta-inner { position: relative; z-index: 1; }
.cap-cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  background-size: 200% auto;
  animation: gradientShift 3s linear infinite;
}
.cap-cta-title {
  background: linear-gradient(100deg, #1A1208 20%, #C8972A 45%, #8A4E0F 55%, #1A1208 80%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShine 6s linear infinite;
}
[data-theme="dark"] .cap-cta-title {
  background-image: linear-gradient(100deg, #EDE5D5 20%, #FFD97A 45%, #C8972A 55%, #EDE5D5 80%);
  background-size: 250% auto;
}
.cap-cta-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C8972A;
  margin-bottom: 20px;
}
.cap-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #EDE5D5;
  line-height: 1.1;
  margin: 0 0 20px;
}
.cap-cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #6A6050;
  margin-bottom: 48px;
}
.cap-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cap-panel,
  .cap-panel-reverse {
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
  }
}
@media (max-width: 768px) {
  .cap-intro-inner { gap: 32px; }
  .cap-intro-counts {
    flex-direction: column;
    gap: 0;
    padding-top: 24px;
  }
  .cap-count-item {
    flex: none;
    width: 100%;
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid var(--border-card, rgba(200,151,42,0.18));
  }
  .cap-count-item:last-child { border-bottom: none; padding-bottom: 0; }
  .cap-count-label { align-self: center; }
  .cap-panel,
  .cap-panel-reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cap-panel-reverse .cap-panel-visual { order: 0; }
  .cap-panel-reverse .cap-panel-content { order: 1; }
  .cap-panel-visual { height: 50vw; min-height: 260px; }
  .cap-panel-fade,
  .cap-panel-fade-right {
    background: linear-gradient(to bottom, transparent 60%, #080808 100%);
  }
  .cap-panel-num { font-size: 5rem; bottom: -10px; }
  .cap-stats-inner { flex-wrap: wrap; }
  .cap-stat-item { flex: 0 0 40%; }
  .cap-stat-divider { display: none; }
}

/* ================================================================
   ACCESSIBILITY: prefers-reduced-motion fallback
   Collapses navbar shrink, hover circle, dropdown stagger and
   scroll-reveal to instant state changes instead of animated ones.
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .navbar,
  .navbar-topbar,
  .navbar-container,
  .navbar-logo-box,
  .navbar-logo-box img,
  .navbar-menu > a,
  .navbar-menu .dropdown > a,
  .navbar-menu > a::after,
  .navbar-menu .dropdown > a::after,
  .dropdown-indicator,
  .navbar-icon-btn,
  .dropdown-content,
  .dropdown-content a,
  .hero-orb,
  .hero-grain,
  .dest-card,
  .dest-info,
  .dest-info-title,
  .dest-card-progress,
  .dest-card-label-text,
  .reveal,
  .reveal.reveal-left,
  .reveal.reveal-right,
  .gallery-item.reveal,
  .process-step-card.reveal {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .reveal,
  .reveal.reveal-left,
  .reveal.reveal-right,
  .gallery-item.reveal,
  .process-step-card.reveal {
    transform: none !important;
  }
}

