/* assets/css/style.css - Complete Updated Version */
@import url('https://fonts.googleapis.com/css2?family=Belleza&display=swap');

:root {
  --color-accent: #0087a5;
  --color-accent-light: #00a8cc;
  --color-accent-dark: #006d87;
  --color-accent-muted: rgba(0,135,165,0.10);
  --color-accent-glow: rgba(0,135,165,0.22);
  --color-brand-deep: #1e4b87;
  --color-bg: #0A0A0A;
  --color-surface: #111111;
  --color-surface-2: #161616;
  --color-surface-3: #222222;
  --color-text: #F0F0F0;
  --color-text-muted: #999999;
  --color-text-subtle: #555555;
  --font: 'Belleza', serif;
  --border: 1px solid rgba(255,255,255,0.08);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p, a, span, li, label, input, textarea, select, button {
  font-family: var(--font) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

p { color: var(--color-text-muted); margin: 0 0 1em; }
a { color: var(--color-accent); transition: color 0.2s; }
a:hover { color: var(--color-accent-light); text-decoration: none; }
img { max-width: 100%; display: block; }

.uk-navbar-nav > li > a,
.uk-nav > li > a,
.uk-button,
.uk-notification-message,
.uk-form-label,
.uk-input, .uk-textarea, .uk-select {
  font-family: var(--font) !important;
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
#navbar-wrap.scrolled {
  background: rgba(10,10,10,0.78) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.uk-navbar-container {
  background: transparent !important;
  border-bottom: none !important;
}

.uk-navbar-left {
  margin-right: 48px;
}

.uk-navbar-container .uk-navbar-nav > li > a {
  font-family: var(--font) !important;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  min-height: 70px;
  padding: 0 10px;
  transition: color 0.2s;
}
.uk-navbar-container .uk-navbar-nav > li > a:hover,
.uk-navbar-container .uk-navbar-nav > li.uk-active > a {
  color: var(--color-accent-light);
}
.uk-navbar-dropdown {
  background: rgba(12,12,12,0.95) !important;
  backdrop-filter: blur(10px);
  border: var(--border);
  border-top: 2px solid var(--color-accent);
  padding: 14px 0;
  min-width: 220px;
}
.uk-navbar-dropdown-nav > li > a {
  font-family: var(--font) !important;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted) !important;
  padding: 10px 22px;
}
.uk-navbar-dropdown-nav > li > a:hover { color: var(--color-accent-light) !important; }

.uk-offcanvas-bar {
  background: #0D0D0D;
  width: 280px;
}
.uk-offcanvas-bar .uk-nav-default > li > a {
  font-family: var(--font) !important;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 8px 0;
}
.uk-offcanvas-bar .uk-nav-default > li > a:hover { color: var(--color-accent-light); }
.uk-offcanvas-bar .uk-nav-sub { display: block !important; padding: 2px 0 4px 16px; }
.uk-offcanvas-bar .uk-nav-sub li a {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  padding: 5px 0;
}
.uk-offcanvas-bar .uk-nav-sub li a:hover { color: var(--color-accent-light); }
.uk-offcanvas-bar .uk-nav-default > li > a .uk-nav-parent-icon { display: none !important; }
.uk-offcanvas-close { color: var(--color-text-muted); top: 18px; right: 18px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  font-family: var(--font) !important;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: #fff !important;
  border: none;
  padding: 13px 34px;
  border-radius: var(--radius);
  transition: background 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--color-accent-light); color: #fff !important; }

.btn-outline {
  font-family: var(--font) !important;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-text) !important;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 12px 30px;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: inline-block;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent) !important;
  background: var(--color-accent-muted);
}

.btn-accent-outline {
  font-family: var(--font) !important;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-accent) !important;
  border: 1px solid var(--color-accent);
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background 0.2s;
  display: inline-block;
  cursor: pointer;
  width: auto !important;
}
.btn-accent-outline:hover { background: var(--color-accent-muted); }

/* =============================================
   HERO SLIDESHOW - Kenburns Effect
   ============================================= */
#hero-slider {
  overflow: hidden;
  position: relative;
}
#hero-slider .uk-position-center {
  z-index: 3;
}
#hero-slider .uk-slideshow-items {
  height: 100vh;
}
#hero-slider .uk-slideshow-items li {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
  pointer-events: none;
}
/* Hero Content */
.hero-body {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-body .hero-brand {
  font-family: var(--font) !important;
  font-size: clamp(40px, 8vw, 88px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 6px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  display: block;
  line-height: 1.2;
}
.hero-body .hero-tagline {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 28px;
}
.hero-body .hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 34px;
  letter-spacing: 0.04em;
}
/* Slideshow Navigation - Hidden */
.uk-slideshow-nav {
  display: none !important;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero .ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero .ph-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.page-hero .ph-body {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}
.page-hero .ph-body h1 {
  font-size: clamp(28px, 5vw, 58px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  text-shadow: 0 2px 28px rgba(0,0,0,0.65);
}
.page-hero .ph-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-heading {
  font-family: var(--font) !important;
  font-size: clamp(24px, 3.5vw, 42px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 12px;
}
.section-label {
  font-family: var(--font) !important;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 8px;
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  padding: 70px 0;
  background: var(--color-bg);
  text-align: center;
}
.stat-number {
  font-family: var(--font) !important;
  font-size: clamp(46px, 6vw, 68px);
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* =============================================
   VISION SECTION
   ============================================= */
.vision-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--color-bg);
}
.vision-section p { max-width: 700px; margin: 0 auto 32px; }

/* =============================================
   NETWORK SPLIT
   ============================================= */
.network-split {
  background: var(--color-bg);
  overflow: hidden;
}
.network-split-text {
  padding: 80px 48px;
}
.network-split-text h2 { text-transform: uppercase; margin-bottom: 16px; }
.network-split-text p { font-size: 13px; margin-bottom: 28px; }
.network-split-img {
  min-height: 500px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* =============================================
   INDUSTRIES SLIDER
   ============================================= */
.industries-section {
  padding: 60px 0;
  background: var(--color-bg);
  text-align: center;
  overflow: hidden;
}
.industries-section .uk-slider-container {
  overflow: visible;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}
.industry-icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}
.industry-label {
  font-family: var(--font) !important;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* =============================================
   CXO PARALLAX STACK
   ============================================= */
.cxo-section { padding: 60px 0 0; background: var(--color-bg); }
.cxo-parallax-wrap {
  position: relative;
}
.cxo-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cxo-panel .cxo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cxo-panel .cxo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.cxo-panel .cxo-content {
  position: relative;
  z-index: 2;
  width: 44%;
  padding: 0 0 0 80px;
}
.cxo-panel.cxo-right {
  justify-content: flex-end;
}
.cxo-panel.cxo-right .cxo-content {
  padding: 0 80px 0 0;
  text-align: right;
}
.cxo-panel .cxo-tag {
  font-family: var(--font) !important;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 10px;
}
.cxo-panel h3 {
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.cxo-panel p {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 24px;
  line-height: 1.8;
}

/* =============================================
   DELIVERING EXCELLENCE SECTION
   ============================================= */
.delivering-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.delivering-section .db-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.delivering-section .db-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.delivering-section .uk-container { position: relative; z-index: 2; }
.del-card {
  background: rgba(255,255,255,0.05);
  border: var(--border);
  border-left: 3px solid var(--color-accent);
  padding: 32px 28px;
  height: 100%;
}
.del-card p { font-size: 13px; color: rgba(255,255,255,0.65); margin: 0; }

/* =============================================
   TRUSTED PARTNER SECTION
   ============================================= */
.trusted-section { padding: 80px 0; text-align: center; background: var(--color-bg); }

/* =============================================
   CTA BAND - Shared Background
   ============================================= */
.spark-band {
  padding: 80px 0;
  text-align: center;
  background-image: url('../img/footer-cta-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.spark-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.spark-band .uk-container {
  position: relative;
  z-index: 2;
}
.spark-band p { max-width: 580px; margin: 0 auto 32px; color: rgba(255,255,255,0.7); }
.spark-band h2 { color: #fff; }

/* =============================================
   FORM STYLES
   ============================================= */
.uk-input, .uk-textarea, .uk-select {
  background: var(--color-surface-2, #161616) !important;
  border: var(--border) !important;
  border-radius: var(--radius) !important;
  color: var(--color-text) !important;
  font-family: var(--font) !important;
  font-size: 13px !important;
  padding: 10px 14px !important;
  height: auto !important;
  min-height: 40px;
  transition: border-color 0.2s !important;
}
.uk-input:focus, .uk-textarea:focus, .uk-select:focus {
  border-color: var(--color-accent) !important;
  outline: none !important;
}
.uk-input::placeholder, .uk-textarea::placeholder { color: var(--color-text-subtle) !important; }
.uk-form-label {
  font-family: var(--font) !important;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 5px;
  display: block;
}
.form-consent {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--color-text-subtle);
  margin: 10px 0 16px;
  cursor: pointer;
  line-height: 1.4;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  accent-color: var(--color-accent);
  width: 14px;
  height: 14px;
  cursor: pointer;
  margin: 0;
}
.form-consent span {
  line-height: 1.4;
}
.form-consent a { color: var(--color-accent); font-size: inherit; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--color-bg);
  padding: 60px 0 0;
}
.footer-brand { display: block; margin-bottom: 10px; }
.footer-tagline {
  font-family: var(--font) !important;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: #0A0A0A;
  transition: fill 0.2s;
}
.footer-social-icon:hover { background: var(--color-accent); }
.footer-social-icon:hover svg { fill: #fff; }
.footer-col-title {
  font-family: var(--font) !important;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-contact-item .fc-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}
.footer-contact-item a,
.footer-contact-item span {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--color-accent); }
.footer-subscribe-input { margin-bottom: 8px; }
.footer-sub-btn {
  width: 100%;
  font-family: var(--font) !important;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-text) !important;
  border: var(--border) !important;
  padding: 11px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  border-radius: var(--radius);
  display: block;
  text-align: center;
}
.footer-sub-btn:hover {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
}
.footer-bottom {
  padding: 18px 0;
  border-top: var(--border);
  margin-top: 40px;
  text-align: center;
}
.footer-copyright { font-size: 11px; color: var(--color-text-subtle); letter-spacing: 0.04em; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.spark-ideas-section { padding: 80px 0; text-align: center; background: var(--color-bg); }
.why-works-section { padding: 80px 0; background: var(--color-bg); }
.why-list {
  columns: 2;
  column-gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-list li {
  padding: 11px 0;
  font-size: 13px;
  color: var(--color-text-muted);
  break-inside: avoid;
}
.why-list li::before { display: none; }

/* =============================================
   BOARDROOM EXPERIENCE PAGE
   ============================================= */
.feature-cards-section { padding: 80px 0; background: var(--color-bg); }
.feat-card {
  background: #fff;
  padding: 36px 24px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.2s;
}
.feat-card:hover { box-shadow: 0 8px 32px rgba(0,135,165,0.18); }
.feat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-accent);
}
.feat-card h3 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 12px;
}
.feat-card p { font-size: 13px; color: #555; margin: 0; }

.journey-section { padding: 80px 0; background: var(--color-bg); }
.journey-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.journey-timeline::before { display: none; }
.j-step {
  position: relative;
  margin-bottom: 44px;
  display: flex;
  align-items: flex-start;
}
.j-step:nth-child(odd) { flex-direction: row; padding-right: calc(50% + 28px); text-align: right; }
.j-step:nth-child(even) { flex-direction: row-reverse; padding-left: calc(50% + 28px); }
.j-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: var(--color-bg);
  top: 3px;
  z-index: 2;
}
.j-text h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 6px;
}
.j-text p { font-size: 12px; color: var(--color-text-muted); margin: 0; line-height: 1.6; }

.partner-with-section { padding: 0; background: var(--color-bg); }
/* .pw-wrap { padding: 0 24px; } */
.pw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  gap: 2px;
}
.pw-img { overflow: hidden; }
.pw-img img { width: 100%; height: 100%; object-fit: cover; }
.pw-text {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-bg);
}
.pw-text h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pw-text p { font-size: 13px; line-height: 1.8; margin-bottom: 22px; }
.pw-text .btn-accent-outline {
  display: inline-block !important;
  width: auto !important;
  align-self: flex-start;
}

/* =============================================
   HOST AN EVENT PAGE
   ============================================= */
.event-type-grid { padding: 0 0 60px; background: var(--color-bg); }
.et-card {
  position: relative;
  overflow: hidden;
  height: 380px;
  display: flex;
  align-items: stretch;
  text-decoration: none;
}
.et-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.et-card:hover img { transform: scale(1.04); }
.et-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.et-card .et-body {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 28px;
  text-align: left;
}
.et-card h3 {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.et-card p { font-size: 12px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.7; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 80px 0; background: var(--color-bg); }
.contact-info-col h2 { text-transform: uppercase; margin-bottom: 14px; }
.contact-tagline { margin-bottom: 28px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-item .ci-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}
.contact-item a,
.contact-item span {
  font-size: 14px;
  color: var(--color-text-muted);
}
.contact-item a:hover { color: var(--color-accent); }

/* =============================================
   EVENTS PAGE
   ============================================= */
.events-grid-section { padding: 60px 0 80px; background: var(--color-bg); }
.event-card {
  background: var(--color-surface);
  border: var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.event-card:hover { border-color: var(--color-accent); }
.event-img { height: 200px; overflow: hidden; }
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.event-card:hover .event-img img { transform: scale(1.05); }
.event-body { padding: 24px; }
.event-type-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
}
.event-card h3 { font-size: 17px; text-transform: uppercase; color: var(--color-text); margin-bottom: 8px; }
.event-meta { font-size: 11px; color: var(--color-text-subtle); letter-spacing: 0.06em; margin-bottom: 10px; }
.event-card p { font-size: 13px; margin: 0; }

/* =============================================
   VIRTUAL WINDOW PAGE
   ============================================= */
.virtual-types-section { padding: 60px 0; background: var(--color-bg); }
.vt-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.vt-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vt-card::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.68); }
.vt-card .vt-body { position: relative; z-index: 2; padding: 40px 32px; }
.vt-card h3 { font-size: 17px; letter-spacing: 0.10em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.vt-card p { font-size: 13px; color: rgba(255,255,255,0.60); margin: 0; }

.why-virtual-section { padding: 80px 0; background: var(--color-bg); }
.wv-card {
  background: #fff;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.2s;
}
.wv-card:hover { box-shadow: 0 8px 32px rgba(0,135,165,0.18); }
.wv-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-accent);
}
.wv-card h3 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 10px;
}
.wv-card p { font-size: 13px; color: #555; margin: 0; }

/* =============================================
   PARTNER RETREAT PAGE
   ============================================= */
.retreat-journey-section { padding: 80px 0; background: var(--color-bg); }
.retreat-package-section { padding: 80px 0; background: var(--color-bg); }
.rp-card {
  border: var(--border);
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  transition: border-color 0.2s;
}
.rp-card:hover { border-color: var(--color-accent); }
.rp-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--color-accent);
}
.rp-card h3 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.rp-card p { font-size: 12px; color: var(--color-text-muted); margin: 0; }

/* =============================================
   CUSTOMISE ROADSHOW PAGE
   ============================================= */
.roadshow-intro-section { padding: 80px 0 40px; text-align: center; background: var(--color-bg); }
.roadshow-map-section { padding: 0 0 80px; background: var(--color-bg); }
.roadshow-map-img { width: 100%; display: block; }

/* =============================================
   EVENT HIGHLIGHT PAGE
   ============================================= */
.highlight-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.highlight-item { overflow: hidden; aspect-ratio: 4/3; }
.highlight-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.highlight-item:hover img { transform: scale(1.05); }

/* =============================================
   NETWORK PAGE
   ============================================= */
.net-profile-section { padding: 60px 0 80px; background: var(--color-bg); }

/* =============================================
   DELIVERABLES PARALLAX
   ============================================= */
#delParallax {
  position: relative;
  height: 400vh;
}
#delStage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.del-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
#delLayer1 { z-index: 1; }
#delLayer2 { z-index: 2; transform: translateX(100%); transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
#delLayer3 { z-index: 3; transform: translateX(100%); transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
#delLayer4 { z-index: 4; transform: translateX(100%); transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.del-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.del-bg-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  pointer-events: none;
  z-index: 2;
}
.del-layer-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  color: #fff;
}
.del-layer-content.del-center {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.del-center .section-heading { color: #fff; margin-bottom: 16px; }
.del-center p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 28px; }
.del-layer-content.del-left {
  justify-content: flex-start;
  padding: 0;
}
.del-inner {
  max-width: 660px;
  padding: 0 6% 0 8%;
  overflow-y: auto;
  max-height: 100vh;
  scrollbar-width: none;
}
.del-inner::-webkit-scrollbar { display: none; }
.del-step {
  font-family: var(--font) !important;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 12px;
}
.del-inner .section-heading {
  color: #fff;
  text-align: left;
  margin-bottom: 28px;
}
.del-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.del-list li {
  font-family: var(--font) !important;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
  margin-bottom: 10px;
}
.del-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-top: 7px;
}
.del-list li strong {
  color: #fff;
  font-weight: 600;
}

/* =============================================
   HOME CONTACT FORM
   ============================================= */
.home-contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.home-contact-section .hc-image {
  overflow: hidden;
  position: relative;
}
.home-contact-section .hc-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-contact-section .hc-form {
  background: var(--color-bg);
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =============================================
   PRIVACY POLICY PAGE
   ============================================= */
.privacy-section {
  padding: 80px 0 100px;
  background: var(--color-bg);
}
.privacy-body {
  max-width: 780px;
  margin: 0 auto;
}
.privacy-meta {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: var(--border);
}
.privacy-body h2 {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 44px 0 14px;
}
.privacy-body h3 {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 24px 0 10px;
}
.privacy-body p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.privacy-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.privacy-body ul li {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.85;
  padding: 6px 0 6px 20px;
  position: relative;
}
.privacy-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}
.privacy-body a {
  color: var(--color-accent);
}
.privacy-body strong {
  color: var(--color-text);
  font-weight: 600;
}
.privacy-contact {
  background: var(--color-surface);
  border: var(--border);
  border-left: 3px solid var(--color-accent);
  padding: 28px 32px;
  margin-top: 8px;
}
.privacy-contact p {
  margin: 0;
  line-height: 2;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.scroll-mouse {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.scroll-mouse:hover { opacity: 1; }
.scroll-mouse-body {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  box-sizing: border-box;
}
.scroll-mouse-wheel {
  width: 3px;
  height: 7px;
  background: #fff;
  border-radius: 2px;
  animation: scrollWheel 1.4s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0);   opacity: 1; }
  60%  { transform: translateY(10px); opacity: 0; }
  61%  { transform: translateY(0);   opacity: 0; }
  100% { transform: translateY(0);   opacity: 1; }
}
.scroll-mouse-label {
  font-family: var(--font) !important;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.journey-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255,255,255,0.12);
  pointer-events: none;
  z-index: 1;
}

.no-content-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  color: var(--color-text-subtle);
}
.no-content-notice svg {
  color: var(--color-text-subtle);
  margin-bottom: 20px;
  opacity: 0.5;
}
.no-content-notice h3 {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.no-content-notice p {
  font-size: 13px;
  color: var(--color-text-subtle);
  max-width: 400px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

/* =============================================
   NO CONTENT NOTICE - Animated SVG
   ============================================= */
.no-content-notice svg {
  animation: floatAndPulse 3s ease-in-out infinite;
  transform-origin: center;
  display: inline-block;
}

@keyframes floatAndPulse {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.4;
    stroke: var(--color-accent);
  }
  50% {
    transform: translateY(-12px) scale(1.08);
    opacity: 1;
    stroke: var(--color-accent-light);
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.4;
    stroke: var(--color-accent);
  }
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 959px) {
  .uk-navbar-left {
    margin-right: 24px;
  }
  .uk-navbar-container .uk-navbar-nav > li > a {
    padding: 0 8px;
  }
  .network-split-text { padding: 40px 20px; }
  .pw-row {
    grid-template-columns: 1fr;
    margin: 0 16px;
    gap: 0;
  }
  .pw-img { order: 1; min-height: 260px; }
  .pw-text { order: 2; padding: 36px 24px; }
  .highlight-gallery { grid-template-columns: 1fr 1fr; }
  .home-contact-section {
    grid-template-columns: 1fr;
  }
  .home-contact-section .hc-image {
    min-height: 300px;
    position: relative;
  }
  .home-contact-section .hc-image img {
    position: absolute;
    inset: 0;
  }
  .home-contact-section .hc-form {
    padding: 40px 24px;
  }
}

@media (max-width: 767px) {
  .uk-navbar-left {
    margin-right: 16px;
  }
  .uk-navbar-container .uk-navbar-nav > li > a {
    padding: 0 6px;
    font-size: 10px;
  }
  .cxo-panel { height: 80vh; }
  .cxo-panel .cxo-content { width: 90%; padding: 0 20px; }
  .cxo-panel.cxo-right .cxo-content { padding: 0 20px; text-align: left; }
  .cxo-panel.cxo-right { justify-content: flex-start; }
  .hero-body .hero-brand {
    font-size: clamp(32px, 10vw, 60px);
  }
  .hero-body .hero-tagline {
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
  }
  .hero-body .hero-sub {
    font-size: 13px;
    margin-bottom: 28px;
  }
  .btn-outline {
    padding: 10px 24px;
    font-size: 10px;
  }
}

@media (max-width: 639px) {
  .j-step:nth-child(odd),
  .j-step:nth-child(even) {
    flex-direction: column;
    padding: 0 0 0 36px;
    text-align: left;
  }
  .j-dot {
    left: 0;
    transform: none;
    top: 4px;
  }
  .journey-line { display: none; }
  .journey-timeline::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 54px;
    width: 1px;
    background: rgba(255,255,255,0.14);
    display: block;
    z-index: 1;
  }
  .highlight-gallery { grid-template-columns: 1fr; }
  .why-list { columns: 1; }
}