/* MOLVIZADAH SONS - DESIGN SYSTEM */

:root {
  --color-bg: #fdfcf7; /* warm ivory */
  --color-bg-secondary: #f4f0e6; /* soft beige */
  --color-forest: #1c2b21; /* deep forest green */
  --color-forest-light: #2c4234;
  --color-gold: #c39c4a; /* muted gold / brass */
  --color-gold-hover: #a17d35;
  --color-gold-rgb: 195, 156, 74;
  --color-beige: #1a201b; /* dark forest for text */
  --color-beige-muted: #3a473d; /* secondary text */
  --color-text-secondary: #5e6b62;
  --color-border: rgba(28, 43, 33, 0.15); /* forest border */
  --color-border-light: rgba(28, 43, 33, 0.08);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Syne', sans-serif;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) var(--color-bg);
  background-color: var(--color-bg);
  color: var(--color-beige);
  font-family: var(--font-sans);
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-hover);
}
.pin-spacer{
	background: #f7f6f5;
}
/* FILM GRAIN */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* PAGE TRANSITION CURTAIN */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-forest-light);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition.active {
  transform: translateY(0);
}

.page-transition.exit {
  transform: translateY(-100%);
}

.transition-banner {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.page-transition.active .transition-banner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.banner-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.banner-sub {
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: var(--color-beige-muted);
  text-transform: uppercase;
}

/* LUXURY HEADER & NAV */
/* ==========================================================================
   CLEAN TRANSPARENT HEADER
   ========================================================================== */

.luxury-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent !important;
  border-bottom: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
  opacity: 1;
}

.luxury-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-container {
  pointer-events: auto;
  max-width: 1700px;
  width: calc(100% - 4rem);
  margin: 1.5rem auto 0;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  background-color: transparent;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, margin-top 0.4s ease, border-radius 0.4s ease, backdrop-filter 0.4s ease;
}

.luxury-header.header-dark {
  display: flex;
  justify-content: center;
}

.luxury-header.header-dark .header-container {
  background-color: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.45rem 0.45rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  justify-content: center;
  width: max-content;
  border-radius: 16px;
  margin-top: 5vh;
}

.luxury-header.header-dark .logo-link {
  display: none;
}

.luxury-header.header-dark .nav-link-desktop,
.luxury-header.header-dark .menu-text {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}

.luxury-header.header-dark .menu-icon-luxury .icon-line {
  background: #ffffff;
}

.luxury-header.header-dark .nav-separator {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .header-container {
    width: calc(100% - 2rem);
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
  }
}

.logo-link {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
}

.logo-text-large {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  line-height: 1;
  transition: color 0.4s ease;
}

.logo-text-sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.65em;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.4s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link-desktop {
  position: relative;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #030303;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.4s ease, font-size 0.4s ease, font-weight 0.4s ease;
}

.nav-link-desktop::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-desktop:hover {
  color: #ffffff;
}

.nav-link-desktop:hover::after {
  width: 100%;
  left: 0;
}

.nav-separator {
  width: 1px;
  height: 12px;
  background: rgba(3, 3, 3, 0.2);
  transition: background 0.4s ease;
}

.menu-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.5rem 0;
}

.menu-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #030303;
  transition: color 0.4s ease, font-size 0.4s ease, font-weight 0.4s ease;
}

.menu-icon-luxury {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 8px;
  position: relative;
}

.menu-icon-luxury .icon-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #030303;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
  transform-origin: right center;
}

.menu-icon-luxury .icon-line.bottom {
  width: 70%;
  margin-left: auto;
}

.menu-accent-line {
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-toggle:hover .menu-text {
  color: var(--color-gold);
}

.menu-toggle:hover .menu-icon-luxury .icon-line {
  background: var(--color-gold);
}

.menu-toggle:hover .menu-icon-luxury .icon-line.top {
  width: 70%;
}

.menu-toggle:hover .menu-icon-luxury .icon-line.bottom {
  width: 100%;
}

.menu-toggle:hover .menu-accent-line {
  width: 100%;
}
/* MEGA MENU OVERLAY */
.mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mega-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 252, 247, 0.95);
  backdrop-filter: blur(15px);
}

.menu-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  flex: 1;
  align-items: center;
}

.menu-col-left {
  border-right: 1px solid var(--color-border);
  padding-right: 4rem;
}

.menu-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--color-gold);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.mega-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mega-menu-item {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-beige-muted);
  transition: var(--transition-smooth);
  display: inline-block;
  line-height: 1.2;
}

.mega-menu-item:hover {
  color: var(--color-gold);
  transform: translateX(15px);
}

.menu-col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.preview-default-content {
  border: 1px solid var(--color-border);
  background: rgba(28, 43, 33, 0.02);
  padding: 3rem;
  border-radius: 4px;
}

.preview-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.preview-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.preview-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-beige);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}

/* Mega Menu Product Category Dynamic Hover Preview Cards */
.menu-preview-card {
  animation: fadeIn 0.4s ease forwards;
}

.menu-preview-img-container {
  width: 100%;
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.menu-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.menu-preview-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.menu-preview-sub {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.menu-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.menu-preview-list li {
  font-size: 0.75rem;
  background: rgba(28, 43, 33, 0.05);
  border: 1px solid var(--color-border-light);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  color: var(--color-beige-muted);
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border-light);
  padding-top: 2rem;
  margin-top: 2rem;
}

.menu-footer-links {
  display: flex;
  gap: 2rem;
}

.menu-footer-link {
  text-decoration: none;
  font-size: 0.8rem;
  color: var(--color-beige-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-fast);
}

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

.menu-footer-info {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.05em;
}

/* SECTION STRUCTURES */
section {
  position: relative;
  width: 100%;
  /* overflow: hidden is scoped per-section below to allow sticky pin */
}



/* HERO SECTION (SECTION 1) */
.hero-sec {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #ffffff;
}

.hero-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-globe-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 2rem;
}

.hero-title-container {
  margin-bottom: 2rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-beige);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-subheading {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--color-beige-muted);
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
  line-height: 1.5;
  animation: fadeInUp 1.4s ease forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  animation: fadeInUp 1.6s ease forwards;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

/* SECTION HEADINGS (EDITORIAL) */
.section-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.sec-title-wrap {
  display: flex;
  flex-direction: column;
}

.sec-num {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-gold);
  font-style: italic;
  margin-bottom: 1rem;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.sec-desc-wrap p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 550px;
}

/* GLOBAL ORIGINS (SECTION 2) */
.origins-sec {
  background: var(--color-bg);
  padding-bottom: 8rem;
}

.origins-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}

.origins-scroll-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.origin-card {
  opacity: 0.4;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  cursor: pointer;
  padding-left: 2rem;
  border-left: 2px solid transparent;
}

.origin-card.active {
  opacity: 1;
  transform: translateY(0);
  border-left-color: var(--color-gold);
}

.origin-region {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.origin-countries {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-beige);
  margin-bottom: 1rem;
}

.origin-desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.origins-visual {
  position: relative;
  height: 500px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.origins-map-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* PRODUCT ECOSYSTEM (SECTION 3) */
.ecosystem-sec {
  background: radial-gradient(circle at center, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
  padding-bottom: 8rem;
}

.ecosystem-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.ecosystem-visual-container {
  width: 100%;
  height: 600px;
  position: relative;
  background: rgba(253, 252, 247, 0.4);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  overflow: hidden;
}

.ecosystem-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.ecosystem-details-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  max-width: 350px;
  background: rgba(244, 240, 230, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-fast);
  z-index: 5;
}

.ecosystem-details-overlay.active {
  opacity: 1;
  transform: translateY(0);
}

.ecosystem-detail-cat {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.ecosystem-detail-list {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ecosystem-detail-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-beige);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ecosystem-instructions {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ecosystem-instructions::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse 1.5s infinite;
}

/* HORIZONTAL JOURNEY (SECTION 4) */
.journey-sec-outer {
  background: #F8F6F1;
}

.journey-sec-sticky {
  position: relative;
}

.journey-sec-pin {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 180px;
}

.journey-header-static {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

.journey-title-sub {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.journey-title-main {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-track-container {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.journey-track {
  display: flex;
  gap: 6vw;
  padding: 0 10vw;
  will-change: transform;
}

.journey-step {
  flex-shrink: 0;
  width: clamp(280px, 35vw, 450px);
  border: 1px solid var(--color-border);
  background: transparent;
  padding: 2rem 2.5rem;
  border-radius: 4px;
  position: relative;
  transition: var(--transition-smooth);
}

.journey-step.active {
  background: rgba(223, 201, 128, 0.03);
  border-color: var(--color-gold);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-gold);
  font-style: italic;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-beige);
  margin-bottom: 1rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.journey-connector-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
  z-index: 0;
  pointer-events: none;
}

/* COMMODITY SHOWCASE (SECTION 5) */
.showcase-sec {
  background: var(--color-bg);
  padding-bottom: 10rem;
}

.showcase-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.showcase-item {
  position: relative;
  text-decoration: none;
  color: var(--color-beige);
  cursor: pointer;
  /* Stagger placement to make it editorial, non-grid */
}

.showcase-item:nth-child(3n+1) {
  transform: translateY(0);
}
.showcase-item:nth-child(3n+2) {
  transform: translateY(4rem);
}
.showcase-item:nth-child(3n+3) {
  transform: translateY(8rem);
}

.showcase-frame {
  width: 100%;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
  margin-bottom: 1.5rem;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(20%);
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 6, 5, 0) 60%, rgba(5, 6, 5, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.showcase-item:hover .showcase-img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

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

.showcase-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.showcase-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-beige);
  transition: var(--transition-fast);
}

.showcase-item:hover .showcase-name {
  color: var(--color-gold);
}

.showcase-cat {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Product Quick View Modal */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 252, 247, 0.95);
  backdrop-filter: blur(10px);
}

.modal-wrapper {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 950px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: zoomIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-img-container {
  height: 500px;
  border-right: 1px solid var(--color-border);
}

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

.modal-info {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-header-top {
  margin-bottom: 2rem;
}

.modal-cat {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-beige);
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.modal-specs {
  border-top: 1px solid var(--color-border-light);
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.spec-title {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.25rem;
}

.spec-val {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-beige);
}

.modal-cta-btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-bg);
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 0.8rem 1.8rem;
  border-radius: 2px;
  text-align: center;
  text-transform: uppercase;
  transition: var(--transition-fast);
  margin-top: 2rem;
}

.modal-cta-btn:hover {
  background: transparent;
  color: var(--color-gold);
}

/* GLOBAL PRESENCE (SECTION 6) */
.presence-sec {
  background: var(--color-bg-secondary);
  padding-bottom: 8rem;
}

.presence-map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 600px;
  position: relative;
  background: rgba(5, 6, 5, 0.3);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.map-facility-tooltip {
  position: absolute;
  background: rgba(10, 14, 11, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-gold);
  padding: 1rem;
  border-radius: 4px;
  pointer-events: none;
  display: none;
  font-size: 0.8rem;
  z-index: 10;
  max-width: 250px;
}

.tooltip-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.tooltip-desc {
  color: var(--color-text-secondary);
}

/* TRUST & EXPERTISE (SECTION 7) */
.trust-sec {
  background: var(--color-bg);
  padding-bottom: 8rem;
}

.trust-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.trust-item {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
}

.trust-index {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-gold);
  font-style: italic;
}

.trust-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-beige);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.trust-info-desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* TRADE EXCELLENCE (SECTION 8 - FOURMULA STYLE) */
.trade-excellence-sec {
  background-color: #ffffff; /* Page bg before cards start */
  color: #000000;
  position: relative;
  margin-top: -1px;
  z-index: 10;
}
.trade-pin-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.trade-section-header {
  padding: 8rem 2rem 6rem 2rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
  background: #ffffff;
}
.trade-main-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.trade-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
}

.trade-cards-stack {
  position: relative;
  height: 100%;
  width: 100%;
}
.trade-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  will-change: transform, opacity;
  color: #FFF;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
}

/* Card Themes */
#trade-card-1 { background: #ea580c; z-index: 1; transform: translateY(0); }
#trade-card-2 { background: linear-gradient(180deg, #38bdf8 0%, #ea580c 100%); z-index: 2; }
#trade-card-3 { background: linear-gradient(180deg, #4f46e5 0%, #ea580c 100%); z-index: 3; }
#trade-card-4 { background: linear-gradient(180deg, #991b1b 0%, #ea580c 100%); z-index: 4; }

/* Zone 1: Top Header */
.tc-zone-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.tc-top-left { flex: 1; }
.tc-title {
  font-family: var(--font-display);
  font-size: 55px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 400px;
}
.tc-top-center {
  flex: 1;
  text-align: center;
}
.tc-label {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 1px;
}
.tc-top-right {
  flex: 1;
  text-align: right;
}
.tc-number-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

/* Zone 2: Middle Grid */
.tc-zone-mid {
  display: flex;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.tc-mid-left, .tc-mid-right {
  flex: 1;
  padding: 2rem 4rem;
}
.tc-mid-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.tc-mid-left {
  border-right: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px; /* Ensure there is height to separate top and bottom */
}
.tc-bullet-point {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.tc-bullet-dot {
  width: 6px;
  height: 6px;
  background: #FFF;
  border-radius: 50%;
  margin-right: 10px;
}
.tc-desc {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 300px;
}
.tc-btn-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.tc-btn {
  background: #FFF;
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
  display: inline-block;
}
.tc-btn:hover { transform: scale(1.05); }

/* Zone 3: Bottom Visual Grid */
.tc-zone-bottom {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 2rem 2rem 0 2rem;
  min-height: 200px;
}
.tc-app-window {
  width: 100%;
  max-width: 1000px;
  height: 80%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tc-app-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  font-weight: 500;
}
.tc-img-grid {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.5rem 0 1.5rem;
  width: 100%;
  flex: 1;
  justify-content: center;
}
.tc-img-box {
  background: rgba(255,255,255,0.05);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
  transition: opacity 0.3s;
  height: 100%;
  min-height: 150px;
}
.tc-box-ghost {
  opacity: 0.3;
}
.tc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Specific Grid Layouts per Card */
.tc-grid-1 .tc-img-box { flex: 1; }
.tc-grid-2 .tc-img-box:first-child { flex: 2; }
.tc-grid-2 .tc-img-box:not(:first-child) { flex: 1; }
.tc-grid-3 .tc-img-box { flex: 1; }
.tc-grid-4 .tc-img-box { flex: 1; }

@media (max-width: 991px) {
  .trade-section-header { padding: 8vh 2rem 2rem 2rem; }
  .tc-zone-top { padding: 2rem; flex-direction: column; gap: 1rem; }
  .tc-top-center { text-align: left; order: -1; }
  .tc-top-right { position: absolute; right: 2rem; top: 2rem; }
  .tc-zone-mid { flex-direction: column; }
  .tc-mid-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 2rem; }
  .tc-mid-right { padding: 2rem; }
  .tc-btn-wrap { top: 50%; left: auto; right: 2rem; transform: translateY(-50%); }
  .tc-btn:hover { transform: scale(1.05); }
  .tc-img-wrapper { width: 90%; }
}

/* CAPABILITIES STORYTELLING (SECTION 9) */
.capabilities-sec {
  background-color: #F8F6F1;
  position: relative;
  width: 100%;
}
.cap-pin-container {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.cap-text-wrapper {
  position: relative;
  width: 95%;
  max-width: 1600px;
  text-align: center;
  height: auto;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cap-statement {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 75px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #B8B8B8;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  will-change: opacity, transform;
}
.cap-word {
  display: inline-block;
  white-space: pre; /* Keeps the spacing intact */
  will-change: color;
}

/* CALL TO ACTION & CONTACT (SECTION 9) */
.cta-sec {
  background: radial-gradient(circle at bottom center, var(--color-forest) 0%, var(--color-bg) 70%);
  padding: 10rem 0 6rem 0;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.cta-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.cta-detail-item svg {
  color: var(--color-gold);
  width: 20px;
  height: 20px;
}

.cta-right {
  background: rgba(10, 14, 11, 0.6);
  border: 1px solid var(--color-border);
  padding: 4rem;
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.form-input, .form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-beige);
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
}

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

.form-textarea {
  resize: none;
  height: 100px;
}

.form-submit-btn, 
input[type="submit"], 
button[type="submit"], 
.wpforms-submit, 
.wpcf7-submit, 
.gform_button {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 1rem 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 12px;
  margin-top: 1rem;
}

.form-submit-btn:hover,
input[type="submit"]:hover, 
button[type="submit"]:hover, 
.wpforms-submit:hover, 
.wpcf7-submit:hover, 
.gform_button:hover {
  background: #b5853e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(206, 152, 71, 0.2);
}

/* FOOTER */
.luxury-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
  padding: 4rem 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  font-weight: 700;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

/* PRODUCT LANDING PAGE LAYOUT */
.product-landing {
  min-height: 100vh;
  padding-top: 8rem;
  background: var(--color-bg);
}

.product-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.prod-hero-left {
  display: flex;
  flex-direction: column;
}

.prod-hero-tag {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.prod-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--color-beige);
}

.prod-hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 600px;
}

.prod-hero-right {
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.prod-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Storytelling Layouts instead of grid cards */
.prod-story-sec {
  background: var(--color-bg-secondary);
  padding: 8rem 0;
  border-top: 1px solid var(--color-border-light);
}

.prod-story-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.story-row:nth-child(even) {
  direction: rtl;
}

.story-row:nth-child(even) .story-col-text {
  direction: ltr;
}

.story-col-img {
  height: 550px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.story-row:hover .story-img {
  transform: scale(1.05);
}

.story-col-text {
  padding: 2rem;
}

.story-meta {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-gold);
  font-style: italic;
  margin-bottom: 1rem;
  display: block;
}

.story-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-beige);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.story-desc {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.story-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--color-border-light);
  padding-top: 2rem;
}

.story-spec-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
}

.story-spec-val {
  font-size: 0.95rem;
  color: var(--color-beige-muted);
}

/* BACK TO HOME BUTTON */
.back-to-home {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  justify-content: flex-start;
}

.back-btn {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.back-btn:hover {
  transform: translateX(-5px);
}

/* KEYFRAMES & ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .menu-col-left {
    border-right: none;
    padding-right: 0;
  }

  .menu-col-right {
    display: none; /* Hide hover preview on tablet/mobile */
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 6rem 2rem 3rem 2rem;
  }

  .origins-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .origins-visual {
    height: 350px;
  }

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

  .showcase-item:nth-child(even) {
    transform: translateY(3rem);
  }
  .showcase-item:nth-child(odd) {
    transform: translateY(0);
  }

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

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

  .cta-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .product-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-hero .prod-hero-right {
    height: 350px;
  }

  .story-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .story-row:nth-child(even) {
    direction: ltr;
  }
  
  .story-col-img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .nav-link-desktop {
    display: none;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .showcase-gallery {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .showcase-item {
    transform: none !important;
  }

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

  .modal-wrapper {
    grid-template-columns: 1fr;
  }

  .modal-img-container {
    height: 250px;
  }

  .modal-info {
    padding: 2rem;
  }
  
  .cta-right {
    padding: 2rem;
  }
}
/* -- GLOBAL NETWORK SECTION ------------------------- */
.gn-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  color: #111111;
  overflow: hidden;
}

.gn-pin-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gn-map-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120vw;
  max-width: 1800px;
  height: auto;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .gn-map-wrapper {
    width: 250vw;
  }
}

.gn-base-map {
  width: 100%;
  height: auto;
  fill: #EAEAEA;
}

.gn-routes-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gn-route {
  fill: none;
  stroke: #C5A059;
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.4));
  opacity: 0; /* JS handles this */
}

.gn-node {
  fill: #C5A059;
  filter: drop-shadow(0 0 12px rgba(197, 160, 89, 0.6));
}

.gn-node-source {
  fill: #D4AF37;
}

.gn-node-hub {
  fill: #111111;
  stroke: #C5A059;
  stroke-width: 4;
}

.gn-text-wrapper {
  position: absolute;
  bottom: 10vh;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.gn-text-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  text-align: center;
  height: 80px; /* fixed height to avoid jump */
}

.gn-stage-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #111111;
  opacity: 0;
  margin: 0;
}


/* -- GLOBAL NETWORK SECTION 3D ----------------------- */
.gn-section-3d {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.gn-pin-container-3d {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gn-webgl-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  outline: none;
}

/* -- FLAT GLOBAL NETWORK SECTION --------------------- */
.gn-flat-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.gn-flat-pin {
  position: relative;
  width: 100vw;
  height: 100vh;
  left: 50%;
  margin-left: -50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
}

.gn-flat-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  opacity: 0.9;
}

.gn-flat-map {
  width: 100%;
  height: auto;
  fill: #f2f2f2;
}

.gn-flat-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gn-route {
  fill: none;
  stroke: #C5A059;
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0; /* JS handles this */
}

.gn-node {
  fill: #C5A059;
  opacity: 0; /* JS handles this */
}

.gn-particle {
  fill: #ffffff;
  stroke: #C5A059;
  stroke-width: 1;
  filter: drop-shadow(0 0 6px rgba(197, 160, 89, 0.8));
  opacity: 0; /* JS handles this */
}

@media (max-width: 768px) {
  .gn-flat-map-wrapper {
    width: 250vw; /* zoom in on mobile */
  }
}

/* -- FLAT GLOBAL NETWORK SECTION --------------------- */
.gn-flat-section {
  position: relative;
  width: 100%;
  background: radial-gradient(circle at top left, #fcfcfc 0%, #e8edf1 100%);
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.gn-flat-pin {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* We use a transform container to apply the zoom and pan via GSAP */
.gn-zoom-container {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  transform-origin: center center;
}

.gn-flat-map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 50.76%; /* maintain aspect ratio of 2754x1398 */
}

.gn-flat-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: #ffffff;
  /* Paper-cut drop shadow */
  filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.15));
}

.gn-flat-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gn-route {
  fill: none;
  stroke: #444444; /* Darker grey/black for premium contrast against white map */
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0;
}

.gn-node {
  fill: #111111;
  stroke: #ffffff;
  stroke-width: 2;
  opacity: 0;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.gn-particle {
  fill: #C5A059;
  filter: drop-shadow(0 0 6px rgba(197, 160, 89, 0.8));
  opacity: 0;
}

@media (max-width: 768px) {
  .gn-zoom-container {
    width: 200vw; /* Base zoom for mobile so it's not tiny */
  }
}

/* -- MINIMALIST GLOBAL NETWORK SECTION --------------------- */
.gn-minimal-section {
  position: relative;
  width: 100%;
  background: #faf8f4;
  overflow: hidden;
  padding: 100px 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.gn-minimal-container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  /* Opacity 1 by default so the map doesn't vanish into a blank space */
  opacity: 1;
}

.gn-minimal-map-wrapper { position: relative; width: 100%; padding-bottom: 45.68%; }

.gn-minimal-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: #f0f0f0;
}

.gn-minimal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gn-route {
  fill: none;
  stroke: #dddddd;
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0;
}

.gn-node {
  fill: #000000;
  opacity: 0;
}

.gn-particle {
  fill: #C5A059;
  opacity: 0;
}

/* Floating Stats */
.gn-stat-box {
  position: absolute;
  background: transparent;
  padding: 0;
  opacity: 0; /* JS handles fade */
}

.gn-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #111111;
  line-height: 1;
  margin-bottom: 5px;
}

.gn-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666666;
}

.gn-stat-top-left { top: 10%; left: 5%; }
.gn-stat-bottom-left { bottom: 10%; left: 5%; }
.gn-stat-top-right { top: 15%; right: 5%; text-align: right; }

/* SVG Text Labels */
.gn-map-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  fill: #888888;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
}

@media (max-width: 768px) {
  .gn-minimal-container {
    width: 200vw;
    margin-left: -50vw;
  }
  .gn-stat-box { display: none; }
  fill: #C5A059;
  opacity: 0;
}

.gn-particle { fill: #ffffff; filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 10px #ffffff); opacity: 0; }

@media (max-width: 768px) {
  .gn-minimal-container {
    width: 200vw;
    margin-left: -50vw;
  }
}


/* Glowing Nodes */
.gn-node {
  fill: #ffffff;
  filter: drop-shadow(0 0 5px rgba(0, 170, 255, 0.8)) drop-shadow(0 0 15px rgba(0, 170, 255, 0.6));
  opacity: 0; /* JS handles fade in */
  transform-origin: center center;
}

/* -- PAPERCUT GLOBAL NETWORK SECTION --------------------- */
.gn-minimal-section {
  position: relative;
  width: 100%;
  background: #f7f6f5;
  overflow: hidden;
  padding: 100px 0;
  margin: 0;
}

.gn-minimal-container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  /* Opacity 1 by default so the map doesn't vanish into a blank space */
  opacity: 1;
}

.gn-minimal-map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 45.68%;
  overflow: hidden;
}

.gn-minimal-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Paper-cut base map styles */
.gn-minimal-map .gn-base-map path {
  fill: #ffffff !important;
  stroke: none !important;
  filter: drop-shadow(15px 20px 12px rgba(0, 0, 0, 0.25));
}

/* Elevate overlays so they don't get caught under shadows */
.gn-routes, .gn-nodes, .gn-particles {
  transform: translateZ(10px); 
}

/* Animated lines */
  .gn-route {
    fill: none !important;
    stroke: #C5A059 !important;
    stroke-width: 2.5px !important;
    stroke-linecap: round;
    opacity: 0;
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.5));
  }

/* Glowing destination dots */
.gn-node {
  fill: #C5A059 !important;
  stroke: none !important;
  filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.8)) drop-shadow(0 0 15px rgba(197, 160, 89, 0.6)) !important;
  opacity: 0;
  transform-origin: center center;
}

/* Traveling plane/glow dots */
.gn-particle {
  fill: #ffffff !important;
  stroke: none !important;
  filter: drop-shadow(0 0 5px rgba(197, 160, 89, 1)) drop-shadow(0 0 10px rgba(197, 160, 89, 0.8)) !important;
  opacity: 0;
}

@media (max-width: 768px) {
  .gn-minimal-container {
    width: 200vw;
    margin-left: -50vw;
  }
}



/* Hover Tooltip */
.gn-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.9);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -150%);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  transition: opacity 0.2s ease;
}

.gn-node {
  cursor: pointer;
}


/* -- CONTACT CARD REVAMP --------------------- */
.ms-contact-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 80px;
  box-sizing: border-box;
}

.ms-contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.ms-contact-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0 0 20px 0;
}

.ms-contact-header .text-dark {
  color: #1a2b3c;
}

.ms-contact-header .text-gold {
  color: #C5A059;
}

.ms-contact-divider {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.ms-contact-divider span {
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 2px;
}

.ms-contact-divider span:first-child {
  background: #C5A059;
}

.ms-contact-divider span:last-child {
  background: #e2e8f0;
}

.ms-contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ms-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ms-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.ms-input-group input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  background: transparent;
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a2b3c;
  transition: border-color 0.3s ease;
  outline: none;
}

.ms-input-group input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.ms-input-group input:focus {
  border-bottom-color: #C5A059;
}

.ms-required {
  position: absolute;
  right: 0;
  color: #C5A059;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
}

.ms-form-footer {
  text-align: center;
  margin-top: 20px;
}

.ms-captcha-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #4a5568;
  margin-bottom: 30px;
}

.ms-captcha-text a {
  color: #C5A059;
  text-decoration: none;
}

.ms-submit-pill {
  background: #C5A059;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.ms-submit-pill:hover {
  background: #1a2b3c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 43, 60, 0.2);
}

@media (max-width: 768px) {
  .ms-contact-card {
    padding: 40px 30px;
  }
  .ms-input-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ms-contact-header h2 {
    font-size: 2rem;
  }
}




/* -- TRUST SECTION REVAMP --------------------- */
.light-trust {
  background: #fcfbf9; /* Soft cream background */
  padding: 100px 0;
}

.trust-editorial {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 3rem;
  align-items: flex-start;
}

.trust-editorial h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #C5A059;
  margin: 0;
  line-height: 1.3;
}

.trust-editorial p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #666666;
  margin: 0;
  line-height: 1.7;
}

.trust-editorial:nth-last-child(-n+2) {
  border-bottom: none;
}

@media (max-width: 768px) {
  .trust-editorial {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 2rem;
  }
  .trust-editorial:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .trust-editorial:last-child {
    border-bottom: none;
  }
}



/* Map Labels */
.gn-label {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  fill: #1a2b3c;
  font-weight: 500;
  text-anchor: middle;
  opacity: 0; /* JS handles this */
  filter: drop-shadow(0 2px 4px rgba(255,255,255,0.8));
}



/* -- LATEST INSIGHTS SECTION --------------------- */
.ms-insights-section {
  background-color: #ffffff;
  padding: 100px 2rem;
  color: #111111;
  position: relative;
  z-index: 10;
}

.ms-insights-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ms-insights-header {
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}

.ms-insights-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  color: #111111;
}

.ms-insights-grid {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 3rem;
  align-items: flex-start; /* Don't force them to stretch */
}

/* Card Basics */
.ms-insight-card {
  transition: opacity 0.3s ease;
}

.ms-insight-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.ms-insight-img-wrapper {
  overflow: hidden;
  border-radius: 4px;
  background-color: #f7f6f5;
  margin-bottom: 1.5rem;
}

.ms-insight-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

/* Featured Article */
.ms-insight-featured {
  display: flex;
  flex-direction: column;
  order: 1; /* Keep on left side */
}

.ms-insight-featured .ms-insight-img-wrapper {
  aspect-ratio: 16/9; /* Set a standard cinematic ratio */
}

.ms-insight-featured .ms-insight-headline {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  
  position: relative;
  display: block; /* Fix inline issue */
  transition: color 0.3s ease;
}

.ms-insight-featured .ms-insight-excerpt {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 2rem;
}

/* Secondary Articles */
.ms-insight-secondary-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  order: 2; /* Keep on right side */
}

.ms-insight-secondary {
  display: flex;
  flex-direction: column;
}

.ms-insight-secondary .ms-insight-img-wrapper {
  aspect-ratio: 16/9;
  margin-bottom: 1rem;
}

.ms-insight-secondary .ms-insight-headline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  
  display: block;
  transition: color 0.3s ease;
}

/* Shared Content Elements */
.ms-insight-category {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.ms-insight-read-more {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
  margin-top: auto;
  transition: color 0.3s ease;
}

.ms-insight-read-more svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  stroke: var(--color-gold);
}

/* Hover Effects */
.ms-insight-link:hover .ms-insight-img-wrapper img {
  transform: scale(1.05);
}

.ms-insight-link:hover .ms-insight-headline {
  color: var(--color-gold);
}

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

.ms-insight-link:hover .ms-insight-read-more svg {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .ms-insights-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ms-insight-featured {
    grid-column: span 2;
  }
  .ms-insight-secondary-col {
    grid-column: span 2;
    flex-direction: row;
    gap: 2rem;
  }
  .ms-insight-secondary {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .ms-insights-section {
    padding: 60px 1.5rem;
  }
  .ms-insight-secondary-col {
    flex-direction: column;
  }
  .ms-insight-featured .ms-insight-headline {
    font-size: 1.8rem;
  }
}



/* Title Row Layout */
.ms-insight-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  
}

.ms-insight-title-row .ms-insight-headline {
  margin: 0; /* Reset margins since wrapper handles it */
  flex-grow: 1; /* Allow title to take most space */
}

.ms-insight-title-row .ms-insight-read-more {
  margin-top: 0; /* Remove auto margin */
  flex-shrink: 0; /* Prevent button from squeezing */
}







.ms-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8rem;
}

.ms-footer-big-logo {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1;
}

.ms-footer-big-logo span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.back-to-top-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff473a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.back-to-top-link:hover {
    opacity: 0.8;
}

.ms-footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.ms-footer-heading {
    color: #ff473a;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.ms-footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ms-footer-info-col p {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.ms-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ms-footer-bottom-left a {
    color: #777777;
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.ms-footer-bottom-left a:hover {
    color: #ffffff;
}

.ms-footer-bottom-center {
    text-align: center;
}

.ms-footer-bottom-right {
    text-align: right;
}

@media (max-width: 768px) {
    .ms-footer-middle {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ms-footer-info-grid {
        grid-template-columns: 1fr;
    }
    .ms-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .ms-footer-bottom-left a {
        margin: 0 0.75rem;
    }
    .ms-footer-bottom-center,
    .ms-footer-bottom-right {
        text-align: center;
    }
}



.mef-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 150px; border-bottom: 1px solid #333333; margin-bottom: 40px;
}

.mef-logo {
    font-size: 80px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.mef-ot {
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

.mef-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: 0;
    opacity: 0.8;
}

.mef-ot {
    z-index: 1; /* Keep text above the crosshair SVG */
}

.mef-back {
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: opacity 0.2s;
}
.mef-back:hover {
    opacity: 0.8;
}

.mef-middle {
    display: flex;
    margin-bottom: 50px;
}

.mef-col-contact {
    width: 50%;
}
.mef-col-business {
    width: 50%;
}

.mef-heading {
    color: #ef4444;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.mef-address-grid {
    display: flex;
    gap: 150px;
}

.mef-text {
    font-size: 15px;
    line-height: 2;
    color: #a3a3a3;
    font-weight: 400;
}

.mef-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333333;
    padding-top: 30px;
    font-size: 12px;
    color: #737373;
}

.mef-bot-left a {
    color: #737373;
    text-decoration: none;
    margin-right: 25px;
    transition: color 0.2s;
}
.mef-bot-left a:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .mef-top {
        margin-bottom: 100px;
        flex-direction: column;
        gap: 30px;
    }
    .mef-logo {
        font-size: 50px;
    }
    .mef-crosshair {
        width: 100px;
        height: 100px;
    }
    .mef-middle {
        flex-direction: column;
        gap: 60px;
    }
    .mef-col-contact, .mef-col-business {
        width: 100%;
    }
    .mef-address-grid {
        flex-direction: column;
        gap: 30px;
    }
    .mef-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .mef-bot-left a {
        margin: 0 10px;
    }
}




.mef-grid {
    display: grid;
    grid-template-columns: 38% 62%;
}

/* Left Column Vertical Line */
.mef-top-left, .mef-mid-left, .mef-bot-left {
    border-right: 1px solid #333333;
}

/* Row 1 */
.mef-top-left {
    padding: 60px 40px 180px 40px;
}
.mef-top-right {
    padding: 60px 40px 180px 40px;
    display: flex;
    justify-content: flex-end;
}

.mef-logo {
    font-size: 80px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.mef-ot {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    z-index: 1;
}

.mef-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: -1;
    opacity: 0.8;
}

.mef-back {
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}
.mef-back:hover {
    opacity: 0.8;
}

/* Row 2 */
.mef-mid-left, .mef-mid-right {
    padding: 0 40px 15px 40px;
    border-bottom: 1px solid #333333; /* The horizontal border below the red headings! */
}

.mef-heading {
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Row 3 */
.mef-bot-left, .mef-bot-right {
    padding: 30px 40px 60px 40px;
}

.mef-address-grid {
    display: flex;
    gap: 150px;
}

.mef-text {
    font-size: 15px;
    line-height: 2;
    color: #a3a3a3;
    font-weight: 400;
}

/* Bottom Bar */
.mef-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333333;
    padding: 30px 40px;
    font-size: 12px;
    color: #737373;
}

.mef-fb-left a {
    color: #737373;
    text-decoration: none;
    margin-right: 25px;
    transition: color 0.2s;
}
.mef-fb-left a:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .mef-grid {
        grid-template-columns: 1fr;
    }
    .mef-top-left, .mef-mid-left, .mef-bot-left {
        border-right: none;
    }
    .mef-top-left, .mef-top-right {
        padding: 40px 20px;
    }
    .mef-top-right {
        justify-content: flex-start;
        padding-top: 0;
    }
    .mef-logo {
        font-size: 50px;
    }
    .mef-crosshair {
        width: 100px;
        height: 100px;
    }
    .mef-mid-left, .mef-mid-right {
        padding: 20px;
    }
    .mef-bot-left, .mef-bot-right {
        padding: 20px;
    }
    .mef-address-grid {
        flex-direction: column;
        gap: 20px;
    }
    .mef-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    .mef-fb-left a {
        margin: 0 10px;
    }
}

/* ==========================================================================
   EXACT MATCH FOOTER (TELKOM-OT STYLE)
   ========================================================================== */
.ms-exact-footer {
    background-color: #212121;
    color: #e5e5e5; /* whiter text like the original */
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    border-top: none !important;
}

.mef-grid {
    display: grid;
    grid-template-columns: 38% 20% 42%;
}

/* Left & Middle Column Vertical Lines */
.mef-top-left, .mef-mid-left, .mef-bot-left, .mef-verybot-left,
.mef-top-mid, .mef-mid-mid, .mef-bot-mid, .mef-verybot-mid {
    border-right: 1px solid #333333;
}

/* Row 1 */
.mef-top-left, .mef-top-mid {
    padding: 60px 40px 140px 40px;
}
.mef-top-right {
    padding: 60px 40px 180px 40px;
    display: flex;
    justify-content: flex-end;
}

.mef-logo {
    font-size: 80px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.mef-ot {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    z-index: 1;
}

.mef-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: -1;
    opacity: 0.8;
}

.mef-back {
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}
.mef-back:hover {
    opacity: 0.8;
}

/* Row 2 */
.mef-mid-left, .mef-mid-mid, .mef-mid-right {
    padding: 0 40px 15px 40px;
    border-bottom: 1px solid #333333;
}

.mef-heading {
    color: #ef4444;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Row 3 */
.mef-bot-left, .mef-bot-mid, .mef-bot-right {
    padding: 30px 40px 60px 40px;
}

.mef-address-grid {
    display: flex;
    gap: 150px;
}

.mef-text {
    font-size: 15px;
    line-height: 2;
    color: #f4f4f5; /* Bright white/light grey to match reference image exactly */
    font-weight: 400;
}

/* Row 4: Bottom Bar */
.mef-verybot-left, .mef-verybot-mid, .mef-verybot-right {
    padding: 30px 40px;
    border-top: 1px solid #333333;
    font-size: 12px;
    color: #737373;
}

.mef-verybot-left a {
    color: #737373;
    text-decoration: none;
    margin-right: 25px;
    transition: color 0.2s;
}
.mef-verybot-left a:hover {
    color: #ffffff;
}

.mef-verybot-right-inner {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .mef-grid {
        grid-template-columns: 1fr;
    }
    .mef-top-left, .mef-mid-left, .mef-bot-left, .mef-verybot-left,
    .mef-top-mid, .mef-mid-mid, .mef-bot-mid, .mef-verybot-mid {
        border-right: none;
    }
    .mef-top-left, .mef-top-mid, .mef-top-right {
        padding: 40px 20px;
    }
    .mef-top-right {
        justify-content: flex-start;
        padding-top: 0;
    }
    .mef-logo {
        font-size: 50px;
    }
    .mef-crosshair {
        width: 100px;
        height: 100px;
    }
    .mef-mid-left, .mef-mid-mid, .mef-mid-right {
        padding: 20px;
    }
    .mef-bot-left, .mef-bot-mid, .mef-bot-right {
        padding: 20px;
    }
    .mef-address-grid {
        flex-direction: column;
        gap: 20px;
    }
    .mef-verybot-left, .mef-verybot-mid, .mef-verybot-right {
        padding: 20px;
    }
    .mef-verybot-left, .mef-verybot-mid {
        text-align: center;
    }
    .mef-verybot-right-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}


/* ==========================================================================
   CONTACT SECTION (Premium 2-Column Redesign)
   ========================================================================== */

.ms-premium-contact {
  position: relative;
  background-color: #F8F6F1;
  padding: 8rem 0;
  overflow: hidden;
  border-top: none !important;
  border-bottom: none !important;
}

.ms-contact-bg-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.03; /* Extremely faint watermark */
  pointer-events: none;
  z-index: 1;
}

.ms-premium-contact .ms-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.ms-contact-success-msg {
  background: rgba(195,156,74,0.1);
  border: 1px solid var(--color-gold);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 3rem;
}

.ms-contact-success-msg p {
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-weight: 600;
  margin: 0;
}

.ms-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: flex-start;
}

/* Left Column */
.ms-contact-info-col {
  padding-right: 2rem;
}

.ms-contact-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.ms-contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #111111;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.ms-contact-desc {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 500px;
}

.ms-contact-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ms-contact-stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.ms-contact-stat .ms-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  min-width: 80px;
}

.ms-contact-stat .ms-stat-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Right Column (Form) */
.ms-premium-form {
  background: transparent;
}

.ms-premium-form .ms-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ms-premium-form .ms-form-group {
  margin-bottom: 1.5rem;
}

.ms-premium-form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: #444444;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ms-premium-form label .req {
  color: var(--color-gold);
}

.ms-premium-form input,
.ms-premium-form textarea {
  width: 100%;
  padding: 1rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #111111;
  background: transparent;
  border: none;
  border-bottom: 1px solid #cccccc;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.ms-premium-form input:focus,
.ms-premium-form textarea:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
}

.ms-premium-form textarea {
  resize: vertical;
  min-height: 80px;
}

.ms-form-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ms-privacy-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #888888;
  line-height: 1.5;
  margin: 0;
}

.ms-privacy-text a {
  color: var(--color-gold);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
  .ms-contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .ms-contact-info-col {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .ms-premium-form .ms-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ms-contact-stat {
    flex-direction: column;
    gap: 0.2rem;
  }
}





/* Archive Section padding override requested by user */
.elementor-11 .elementor-element.elementor-element-2d66f49 {
  padding-top: 0 !important;
  --padding-top: 0% !important;
}

/* Remove padding from Global Trade Excellence section */
.elementor-element:has(.elementor-widget-ms_trade_excellence) {
  --padding-block-start: 0% !important;
  --padding-block-end: 0% !important;
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.elementor-widget-ms_trade_excellence {
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove padding from specified Elementor sections (Trade Excellence, Journey, Map, Insights, Contact) */
.elementor-element:has(.elementor-widget-ms_trade_excellence),
.elementor-element:has(.elementor-widget-ms_journey),
.elementor-element:has(.elementor-widget-ms_global_network),
.elementor-element:has(.elementor-widget-ms_insights_section),
.elementor-element:has(.elementor-widget-ms_contact) {
  --padding-block-start: 0% !important;
  --padding-block-end: 0% !important;
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.elementor-widget-ms_trade_excellence,
.elementor-widget-ms_journey,
.elementor-widget-ms_global_network,
.elementor-widget-ms_insights_section,
.elementor-widget-ms_contact {
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}



/* ==========================================================================
   INITIAL HEADER NAV REDESIGN (Pill Style)
   ========================================================================== */
.luxury-header:not(.header-dark) .nav-actions {
    background-color: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 0.45rem 0.45rem 0.45rem 0.45rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    gap: 0.5rem;
}

.luxury-header .nav-links-wrapper {
    gap: 0.25rem;
}

.luxury-header .nav-separator {
    background: rgba(255, 255, 255, 0.2);
}

.luxury-header .nav-link-desktop {
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    margin: 2px 5px;
    color: #ffffff;
    transition: background 0.35s ease, color 0.35s ease;
}

.luxury-header .nav-link-desktop::after {
    display: none;
}

.luxury-header .nav-link-desktop:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.luxury-header .menu-toggle {
    background: rgb(255 255 255 / 86%);
    padding: 0.5rem 1.75rem;
    border-radius: 12px;
    gap: 0.75rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.luxury-header .menu-text {
 	color: #040404 !important;
}

.luxury-header .menu-icon-luxury .icon-line {
    background: #040404 !important;
}

.luxury-header .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.luxury-header .menu-toggle:hover .menu-text {
    color: #ffffff !important;
}

.luxury-header .menu-toggle:hover .menu-icon-luxury .icon-line {
    background: #ffffff !important;
}

.luxury-header .menu-accent-line {
    display: none;
}



