/* ============================================================
   VaultEdge — Custom Override CSS
   Completely new visual identity: dark navy + gold accent
   Fonts: Nunito (headings) + DM Sans (body)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ---- CSS VARIABLES ---- */
:root {
  --ve-dark:     #463E21;
  --ve-dark2:    #5A4F2A;
  --ve-navy:     #6B5E33;
  --ve-gold:     #A5774E;
  --ve-gold2:    #B98751;
  --ve-brand-reka: #5C461A;   /* logo wordmark: reka (dark bronze) */
  --ve-brand-harmoni: #C49673; /* logo wordmark: harmoni (warm tan) */
  --ve-light:    #f4f7fb;
  --ve-white:    #ffffff;
  --ve-text:     #2D2818; /* Warna teks lebih gelap agar jelas */
  --ve-border:   #e2e8f0;
  --ve-radius:   12px;
  --ve-shadow:   0 8px 30px rgba(70,62,33,0.15);
  --ve-trans:    all 0.3s ease;
}

/* ---- RESET BODY FONTS ---- */
body { font-family: 'DM Sans', sans-serif; color: var(--ve-text); }
h1,h2,h3,h4,h5,h6 { font-family: 'Nunito', sans-serif; color: var(--ve-dark); }

/* ============================================================
   NAVBAR — polished precision header
   ============================================================ */
.ve-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid rgba(70,62,33,0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, height 0.3s ease;
}
.ve-header::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(165,119,78,0.55), transparent);
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.35s ease, left 0.35s ease, right 0.35s ease;
}
.ve-header.scrolled {
  background: #ffffff;
  box-shadow: 0 10px 32px rgba(70,62,33,0.08);
  border-bottom-color: rgba(70,62,33,0.08);
}
.ve-header.scrolled::after {
  opacity: 0.9;
  left: 0;
  right: 0;
  border-radius: 0;
}
.ve-nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 20px;
  padding: 0 clamp(16px, 3.5vw, 48px);
  height: 110px;
  max-width: 1400px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  border-bottom: 0;
  transition: height 0.3s ease;
}
.ve-header.scrolled .ve-nav-wrap {
  height: 90px;
}

/* Logo — base (laptop / desktop) */
.ve-logo {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.ve-logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
  background: transparent;
  border-radius: 0;
  padding: 0;
  line-height: 0;
  overflow: visible;
  box-shadow: none;
}
.ve-logo a:hover { transform: translateY(-1px); box-shadow: none; }
.ve-logo-r-aura,
.ve-logo-r-glyph {
  display: none !important;
}
.ve-logo-svg {
  position: relative;
  z-index: 2;
  height: 90px;
  width: auto;
  max-width: min(360px, 42vw);
  object-fit: contain;
  display: block;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  mix-blend-mode: normal;
  filter: none;
  transition: height 0.3s ease, max-width 0.3s ease;
}
.ve-logo a:hover .ve-logo-svg {
  filter: none;
  opacity: 0.92;
}
.ve-header.scrolled .ve-logo-svg {
  height: 72px;
}
.ve-logo-icon {
  width:38px; height:38px;
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Nunito',sans-serif; font-weight:900; font-size:20px;
}
.ve-logo-text { font-family:'Nunito',sans-serif; font-size:20px; color:var(--ve-brand-reka); font-weight:600; }
.ve-logo-text strong { color: var(--ve-brand-harmoni); font-weight:900; }

/* Nav links — centered */
.ve-nav {
  justify-self: center;
  min-width: 0;
}
.ve-nav ul {
  list-style: none;
  margin: 0;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(70,62,33,0.035);
  border: 1px solid rgba(70,62,33,0.06);
  border-radius: 999px;
}
.ve-nav ul li { position: relative; }
.ve-nav ul li a {
  position: relative;
  display: block;
  padding: 9px 16px;
  color: var(--ve-dark);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.ve-nav ul li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
  transform: translateX(-50%);
  transition: width 0.28s ease;
}
.ve-nav ul li a:hover {
  color: var(--ve-gold);
  background: rgba(165, 119, 78, 0.1);
  transform: translateY(-1px);
}
.ve-nav ul li a:hover::after,
.ve-nav ul li a.active::after {
  width: 18px;
}
.ve-nav ul li a.active {
  color: var(--ve-gold);
  background: rgba(165, 119, 78, 0.14);
  font-weight: 800;
}

/* Dropdown */
.ve-nav .has-drop:hover .ve-dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.ve-dropdown {
  position:absolute; top:100%; left:0; min-width:200px;
  background: var(--ve-dark2); border-radius:10px;
  padding:10px 0; opacity:0; visibility:hidden;
  transform:translateY(10px); transition:var(--ve-trans);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border:1px solid rgba(255,255,255,0.08);
}
.ve-dropdown li a { padding:10px 20px; border-radius:0; color:rgba(255,255,255,0.7); font-size:13px; }
.ve-dropdown li a:hover { color:#fff; background:rgba(212,160,23,0.12); }

/* Actions / CTA */
.ve-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  z-index: 2;
}
.ve-nav-cta .ve-cta-btn,
.ve-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--ve-gold) 0%, #c4924a 100%);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(165,119,78,0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.ve-cta-btn i {
  transition: transform 0.25s ease;
  font-size: 12px;
}
.ve-cta-btn:hover {
  background: linear-gradient(135deg, var(--ve-gold2) 0%, var(--ve-gold) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(165,119,78,0.38);
}
.ve-cta-btn:hover i { transform: translateX(3px); }

/* Language switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(70, 62, 33, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(70, 62, 33, 0.06);
}
.lang-btn {
  border: none;
  border-radius: 999px;
  padding: 7px 11px;
  background: transparent;
  color: var(--ve-text);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
}
.lang-btn:hover {
  color: var(--ve-dark);
  background: rgba(165,119,78,0.1);
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--ve-gold), #c4924a);
  color: #fff;
  box-shadow: 0 6px 14px rgba(165, 119, 78, 0.28);
}
.mobile-lang-switcher {
  margin: 0 0 14px 0;
  justify-content: center;
  width: 100%;
}

/* Mobile toggle */
.ve-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(70,62,33,0.04);
  border: 1px solid rgba(70,62,33,0.08);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.ve-toggler:hover {
  background: rgba(165,119,78,0.12);
  border-color: rgba(165,119,78,0.25);
}
.ve-toggler span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ve-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.ve-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ve-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.ve-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.ve-mobile-menu {
  display: none;
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
  padding: 0 16px;
  border-top: 1px solid rgba(70,62,33,0.06);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.ve-mobile-menu.open {
  display: block;
  padding: 14px 16px 18px;
  max-height: min(70vh, 640px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 18px 36px rgba(70,62,33,0.1);
}
.ve-mobile-menu ul { list-style: none; margin: 0; padding: 4px 0 0; }
.ve-mobile-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  color: var(--ve-dark);
  text-decoration: none;
  border-radius: 12px;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 15px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(70,62,33,0.05);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ve-mobile-menu ul li a:focus,
.ve-mobile-menu ul li a:hover {
  background: rgba(165,119,78,0.1);
  color: var(--ve-gold);
  outline: none;
  transform: translateX(2px);
}
.ve-mobile-menu ul li a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--ve-gold), #c4924a);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(165,119,78,0.25);
}

/* Focus visible for keyboard users */
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(165,119,78,0.18);
  outline-offset: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.ve-hero {
  display:flex; min-height:100vh;
  padding-top:72px; background:var(--ve-dark);
  overflow:hidden;
}
.ve-hero-left {
  flex:0 0 55%; padding:80px 60px 80px 80px;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; z-index:2;
}
.ve-hero-badge {
  display:inline-block; background:rgba(212,160,23,0.15);
  color:var(--ve-gold); border:1px solid rgba(212,160,23,0.3);
  border-radius:50px; padding:6px 18px; font-size:13px; font-weight:600;
  margin-bottom:28px; letter-spacing:0.5px;
}
.ve-hero-left h1 {
  font-size:62px; line-height:1.1; color:#fff; font-weight:900;
  margin-bottom:22px;
}
.ve-hero-left h1 .ve-highlight { color:var(--ve-gold); }
.ve-hero-left p { font-size:17px; color:rgba(255,255,255,0.85); line-height:1.7; margin-bottom:40px; max-width:480px; }

/* Hero buttons */
.ve-hero-btns { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:50px; }
.ve-btn-primary {
  display:inline-block; background:var(--ve-gold); color:var(--ve-dark);
  padding:14px 32px; border-radius:8px; font-weight:700; font-size:15px;
  text-decoration:none; transition:var(--ve-trans);
}
.ve-btn-primary:hover { background:var(--ve-gold2); transform:translateY(-2px); box-shadow:0 8px 25px rgba(212,160,23,0.4); color:var(--ve-dark); }
.ve-btn-ghost {
  display:inline-block; border:2px solid rgba(255,255,255,0.25);
  color:#fff; padding:12px 30px; border-radius:8px;
  font-weight:600; font-size:15px; text-decoration:none; transition:var(--ve-trans);
}
.ve-btn-ghost:hover { border-color:var(--ve-gold); color:var(--ve-gold); background:rgba(212,160,23,0.08); }

/* Hero stats */
.ve-hero-stats { display:flex; align-items:center; gap:24px; }
.ve-stat strong { display:block; font-size:28px; color:#fff; font-family:'Nunito',sans-serif; font-weight:900; }
.ve-stat span { font-size:12px; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1px; }
.ve-stat-divider { width:1px; height:40px; background:rgba(255,255,255,0.15); }

/* Hero right */
.ve-hero-right {
  flex:0 0 45%; position:relative; overflow:hidden;
}
.ve-hero-img-main {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.ve-hero-img-main::after { content:''; position:absolute; inset:0; background:linear-gradient(120deg, var(--ve-dark) 0%, transparent 40%); }
.ve-hero-img-accent {
  position:absolute; bottom:40px; right:40px;
  width:200px; height:140px; border-radius:14px;
  background-size:cover; background-position:center;
  border:3px solid var(--ve-gold); box-shadow:0 20px 50px rgba(0,0,0,0.4);
  z-index:3;
}
.ve-float-card {
  position:absolute; top:60px; right:60px; z-index:4;
  background:rgba(255,255,255,0.95); border-radius:14px;
  padding:16px 20px; display:flex; align-items:center; gap:14px;
  box-shadow:0 20px 50px rgba(0,0,0,0.35); backdrop-filter:blur(10px);
}
.ve-float-card i { font-size:28px; color:var(--ve-gold); }
.ve-float-card strong { display:block; font-size:22px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--ve-dark); }
.ve-float-card span { font-size:12px; color:var(--ve-text); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.ve-trust-bar {
  background: var(--ve-gold);
  padding: 14px 0;
  overflow:hidden;
  white-space:nowrap;
}
.ve-trust-inner {
  display:inline-flex; gap:60px;
  animation: ve-marquee 25s linear infinite;
}
.ve-trust-inner span { font-size:13px; font-weight:700; color:var(--ve-dark); display:inline-flex; align-items:center; gap:8px; }
.ve-trust-inner span i { font-size:14px; }
@keyframes ve-marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.ve-section { padding: 100px 0; }
.ve-section-header { margin-bottom:60px; }
.ve-section-tag {
  display:inline-block; background:rgba(212,160,23,0.1);
  color:var(--ve-gold); border:1px solid rgba(212,160,23,0.25);
  border-radius:50px; padding:5px 16px; font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:1.5px; margin-bottom:14px;
}
.ve-section-header h2 { font-size:42px; font-weight:900; color:var(--ve-dark); margin-bottom:14px; line-height:1.2; }
.ve-section-header h2 span { color:var(--ve-gold); }
.ve-section-header p { font-size:16px; color:var(--ve-text); max-width:580px; margin:0 auto; }

/* ===== RESPONSIVE: Mobile header/logo adjustments ===== */
@media (max-width: 767.98px) {
  .ve-nav-wrap {
    grid-template-columns: 1fr auto;
    padding: 0 14px;
    height: 78px;
    column-gap: 10px;
  }
  .ve-header.scrolled .ve-nav-wrap { height: 70px; }
  .ve-logo-svg { height: 58px; max-width: min(220px, 58vw); }
  .ve-header.scrolled .ve-logo-svg { height: 50px; }
  .ve-logo-text { font-size: 16px; color: var(--ve-dark); }
  .ve-hero-left h1 { font-size: 34px; }
  .ve-hero-left { padding: 40px 20px; }
  .ve-hero { padding-top: 72px; min-height: auto; }
  .ve-nav { display: none; }
  .ve-toggler { display: flex; }
  .ve-nav-cta { display: none; }
  .ve-mobile-menu { display: block; }
  .ve-nav-actions { gap: 8px; }
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.ve-services-section { background: var(--ve-light); }
.ve-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.ve-service-card {
  background:#fff; border-radius:var(--ve-radius);
  padding:28px 18px; transition:var(--ve-trans);
  border:1px solid var(--ve-border);
  position:relative; overflow:hidden;
  min-width: 0;
}
.ve-service-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
  transform:scaleX(0); transform-origin:left; transition:var(--ve-trans);
}
.ve-service-card:hover { transform:translateY(-6px); box-shadow:var(--ve-shadow); }
.ve-service-card:hover::before { transform:scaleX(1); }
.ve-service-icon {
  width:52px; height:52px; background:linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius:12px; display:flex; align-items:center; justify-content:center;
  margin-bottom:18px; font-size:22px; color:var(--ve-gold);
}
.ve-service-card h4 { font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:10px; line-height:1.35; }
.ve-service-card p { font-size:13px; line-height:1.65; margin-bottom:16px; color:var(--ve-text); }
.ve-service-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  cursor: default;
  user-select: none;
  transition: color 0.2s ease;
}
.ve-service-desc.is-truncatable {
  cursor: pointer;
}
.ve-service-desc.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}
/* Laptop / mouse: full text on hover (no click needed) */
@media (hover: hover) and (pointer: fine) {
  .ve-service-desc.is-truncatable:hover,
  .ve-service-desc.is-truncatable:focus-visible {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
    color: var(--ve-dark);
    cursor: default;
  }
}
.ve-card-link { font-size:14px; font-weight:700; color:var(--ve-gold); text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:var(--ve-trans); }
.ve-card-link:hover { gap:10px; color:var(--ve-dark); }

/* ============================================================
   JOB SERVICE CATEGORIES (Kategori Layanan Pekerjaan)
   ============================================================ */
.ve-job-categories-section {
  background: #55441E;
  padding: 90px 0;
}
.ve-job-categories-section .ve-section-tag {
  color: var(--ve-gold2);
  border-color: rgba(185, 135, 81, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.ve-job-categories-section .ve-section-header h2 {
  color: #fff;
}
.ve-job-categories-section .ve-section-header p {
  color: rgba(255, 255, 255, 0.7);
}
.ve-job-categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 48px 28px;
  max-width: 980px;
  margin: 56px auto 0;
}
.ve-job-category {
  grid-column: span 2;
  text-align: center;
  padding: 8px 12px;
}
.ve-job-category:nth-child(4) { grid-column: 2 / 4; }
.ve-job-category:nth-child(5) { grid-column: 4 / 6; }
.ve-job-category-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  line-height: 1;
  transition: var(--ve-trans);
}
.ve-job-category:hover .ve-job-category-icon {
  transform: translateY(-4px);
  color: var(--ve-gold2);
}
.ve-job-category h4 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C49A6C;
  margin: 0 0 12px;
}
.ve-job-category p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .ve-job-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }
  .ve-job-category,
  .ve-job-category:nth-child(4),
  .ve-job-category:nth-child(5) {
    grid-column: auto;
  }
}
@media (max-width: 575px) {
  .ve-job-categories-section { padding: 70px 0; }
  .ve-job-categories-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   WHY US
   ============================================================ */
.ve-whyus-section { background:#fff; }
.ve-whyus-img-wrap { position:relative; padding-bottom:40px; padding-right:40px; }
.ve-whyus-img-main { height:480px; border-radius:16px; background-size:cover; background-position:center; }
.ve-whyus-badge {
  position:absolute; bottom:0; right:0;
  background: var(--ve-gold); border-radius:14px; padding:22px 28px;
  text-align:center; min-width:160px;
}
.ve-whyus-badge strong { display:block; font-size:40px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--ve-dark); }
.ve-whyus-badge span { font-size:12px; font-weight:600; color:var(--ve-dark); opacity:0.7; text-transform:uppercase; letter-spacing:0.8px; }

.ve-whyus-content { padding-left:40px; }
.ve-whyus-content h2 { font-size:40px; font-weight:900; line-height:1.2; margin-bottom:16px; }
.ve-whyus-content h2 span { color:var(--ve-gold); }
.ve-whyus-content > p { font-size:15px; line-height:1.8; margin-bottom:32px; }

.ve-checklist { display:flex; flex-direction:column; gap:22px; }
.ve-check-item { display:flex; align-items:flex-start; gap:16px; }
.ve-check-item > i { font-size:22px; color:var(--ve-gold); margin-top:2px; flex-shrink:0; }
.ve-check-item strong { display:block; font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:4px; }
.ve-check-item p { font-size:14px; color:var(--ve-text); margin:0; line-height:1.6; }
.mt-30 { margin-top:30px; }

/* ============================================================
   COUNTERS
   ============================================================ */
.ve-counter-section {
  background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
  padding:70px 0;
}
.ve-counter-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.ve-counter-item { text-align:center; padding:30px 20px; border-right:1px solid rgba(255,255,255,0.1); }
.ve-counter-item:last-child { border-right:none; }
.ve-counter-item i { font-size:36px; color:var(--ve-gold); margin-bottom:14px; display:block; }
.ve-counter-item strong { font-size:46px; font-family:'Nunito',sans-serif; font-weight:900; color:#fff; line-height:1; }
.ve-counter-item span { font-size:24px; color:var(--ve-gold); font-weight:700; }
.ve-counter-item p { font-size:14px; color:rgba(255,255,255,0.85); margin-top:6px; text-transform:uppercase; letter-spacing:1px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ve-testimonials-section { background:var(--ve-light); }
.ve-testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.ve-testi-card {
  background:#fff; border-radius:var(--ve-radius); padding:32px 28px;
  box-shadow:var(--ve-shadow); border:1px solid var(--ve-border); transition:var(--ve-trans);
}
.ve-testi-card:hover { transform:translateY(-4px); }
.ve-testi-stars { font-size:18px; color:var(--ve-gold); margin-bottom:16px; letter-spacing:2px; }
.ve-testi-card > p { font-size:15px; line-height:1.8; color:var(--ve-text); margin-bottom:24px; font-style:italic; }
.ve-testi-author { display:flex; align-items:center; gap:14px; }
.ve-testi-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-testi-author strong { display:block; font-size:15px; font-weight:800; color:var(--ve-dark); }
.ve-testi-author span { font-size:13px; color:var(--ve-text); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.ve-cta-banner { position:relative; padding:90px 0; background-size:cover; background-position:center; }
.ve-cta-overlay { position:absolute; inset:0; background:linear-gradient(90deg, rgba(13,27,42,0.92) 60%, rgba(13,27,42,0.6)); }
.ve-cta-content { position:relative; z-index:2; }
.ve-cta-content h2 { font-size:38px; font-weight:900; color:#fff; margin-bottom:14px; }
.ve-cta-content h2 span { color:var(--ve-gold); }
.ve-cta-content p { font-size:16px; color:rgba(255,255,255,0.7); }
.ve-btn-white {
  display:inline-block; background:#fff; color:var(--ve-dark);
  padding:16px 34px; border-radius:8px; font-weight:800; font-size:15px;
  text-decoration:none; transition:var(--ve-trans);
}
.ve-btn-white:hover { background:var(--ve-gold); color:var(--ve-dark); transform:translateY(-2px); }
.text-lg-right { text-align:right; }

/* ============================================================
   INSIGHTS
   ============================================================ */
.ve-insights-section { background:#fff; }
.ve-insight-card { border-radius:var(--ve-radius); overflow:hidden; border:1px solid var(--ve-border); transition:var(--ve-trans); background:#fff; }
.ve-insight-card:hover { transform:translateY(-5px); box-shadow:var(--ve-shadow); }
.ve-insight-img { height:220px; background-size:cover; background-position:center; }
.ve-insight-body { padding:26px; }
.ve-insight-cat { display:inline-block; background:rgba(212,160,23,0.1); color:var(--ve-gold); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; border-radius:4px; padding:4px 10px; margin-bottom:12px; }
.ve-insight-body h5 a { font-size:17px; font-weight:800; color:var(--ve-dark); text-decoration:none; line-height:1.4; display:block; margin-bottom:10px; }
.ve-insight-body h5 a:hover { color:var(--ve-gold); }
.ve-insight-body > p { font-size:14px; color:var(--ve-text); line-height:1.7; margin-bottom:16px; }
.ve-insight-meta { display:flex; justify-content:space-between; align-items:center; }
.ve-insight-meta span { font-size:13px; color:#aaa; display:inline-flex; align-items:center; gap:6px; }
.ve-insight-meta a { font-size:13px; font-weight:700; color:var(--ve-gold); text-decoration:none; display:inline-flex; align-items:center; gap:5px; transition:var(--ve-trans); }
.ve-insight-meta a:hover { gap:10px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.ve-newsletter-section { background:linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%); padding:60px 0; }
.ve-newsletter-wrap { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.ve-nl-left { display:flex; align-items:center; gap:20px; }
.ve-nl-left i { font-size:42px; color:var(--ve-gold); flex-shrink:0; }
.ve-nl-left h3 { font-size:22px; color:#fff; font-weight:900; margin-bottom:4px; }
.ve-nl-left p { font-size:14px; color:rgba(255,255,255,0.55); margin:0; }
.ve-nl-form { display:flex; gap:0; border-radius:8px; overflow:hidden; border:2px solid rgba(212,160,23,0.3); }
.ve-nl-form input { background:rgba(255,255,255,0.08); border:none; padding:14px 20px; color:#fff; font-size:14px; width:300px; outline:none; }
.ve-nl-form input::placeholder { color:rgba(255,255,255,0.4); }
.ve-nl-form button { background:var(--ve-gold); color:var(--ve-dark); border:none; padding:14px 28px; font-weight:800; font-size:14px; cursor:pointer; transition:var(--ve-trans); }
.ve-nl-form button:hover { background:var(--ve-gold2); }

/* ============================================================
   FOOTER — pure white + clear footer identity
   ============================================================ */
.ve-footer {
  position: relative;
  background: #ffffff;
  padding: 0 0 0;
  border-top: 0;
  color: var(--ve-text);
  overflow: hidden;
  box-shadow: 0 -18px 48px rgba(70,62,33,0.06);
}
.ve-footer::before,
.ve-footer::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
/* soft corner ornaments */
.ve-footer::before {
  top: 72px;
  left: -40px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(165,119,78,0.14);
  border-radius: 50%;
}
.ve-footer::after {
  right: -50px;
  bottom: 80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(70,62,33,0.08);
  border-radius: 50%;
}
.ve-footer-topband {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 16px 0;
  background: #ffffff;
}
.ve-footer-topband-line {
  display: block;
  width: min(140px, 22vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(165,119,78,0.55), transparent);
}
.ve-footer-topband-diamond {
  width: 9px;
  height: 9px;
  background: var(--ve-gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 6px rgba(165,119,78,0.1);
  flex-shrink: 0;
}
.ve-footer-mark {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  z-index: 0;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(72px, 16vw, 160px);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(70, 62, 33, 0.035);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.ve-footer > .container {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: 8px;
}
.ve-footer-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 24px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(70,62,33,0.08);
}
.ve-footer-eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ve-gold);
}
.ve-footer-eyebrow span::before {
  content: '';
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ve-gold);
}
.ve-footer-eyebrow strong {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 800;
  color: var(--ve-brand-reka);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.ve-footer-eyebrow strong em {
  font-style: normal;
  color: var(--ve-brand-harmoni);
  font-weight: 800;
}
.mb-50 { margin-bottom: 44px; }

.ve-footer-brand p {
  font-size: 14px;
  color: rgba(45, 40, 24, 0.72);
  line-height: 1.8;
  margin: 16px 0 22px;
  max-width: 340px;
}
.ve-footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 10px;
  line-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
  transition: transform 0.25s ease;
}
.ve-footer-logo::before {
  display: none !important;
  content: none;
}
.ve-footer-logo:hover {
  transform: translateY(-2px);
}
.ve-footer-logo-img {
  position: relative;
  z-index: 2;
  display: block;
  height: 78px;
  width: auto;
  max-width: min(300px, 100%);
  object-fit: contain;
  background: transparent !important;
  background-color: transparent !important;
  border: 0;
  filter: none;
}

.ve-social { display: flex; flex-wrap: wrap; gap: 10px; }
.ve-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--ve-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  border: 0;
  box-shadow: 0 6px 16px rgba(70,62,33,0.08);
}
.ve-social a i { color: inherit; }
.ve-social a:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 12px 24px rgba(70,62,33,0.18);
}

/* Brand-colored social icons (not B/W) */
.ve-social a.ve-social-facebook {
  background: #1877f2;
  color: #fff;
}
.ve-social a.ve-social-instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
  color: #fff;
}
.ve-social a.ve-social-twitter {
  background: #1d9bf0;
  color: #fff;
}
.ve-social a.ve-social-linkedin {
  background: #0a66c2;
  color: #fff;
}
.ve-social a.ve-social-youtube {
  background: #ff0000;
  color: #fff;
}
.ve-social a.ve-social-tiktok {
  background: #010101;
  color: #fff;
}

.ve-footer-title {
  position: relative;
  font-size: 13px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 22px;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.ve-footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ve-gold), rgba(165,119,78,0.15));
}

.ve-footer-links { list-style: none; margin: 0; padding: 0; }
.ve-footer-links li { margin-bottom: 11px; }
.ve-footer-links li a {
  font-size: 14px;
  color: rgba(45, 40, 24, 0.72);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.ve-footer-links li a::before {
  content: '›';
  color: var(--ve-gold);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.ve-footer-links li a:hover {
  color: var(--ve-gold);
  padding-left: 4px;
}

.ve-footer-contact { list-style: none; margin: 0; padding: 0; }
.ve-footer-contact li {
  font-size: 14px;
  color: rgba(45, 40, 24, 0.72);
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.65;
}
.ve-footer-contact li i {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(165,119,78,0.1);
  color: var(--ve-gold);
  margin-top: 0;
  flex-shrink: 0;
  font-size: 13px;
}

.ve-footer-bottom {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-top: 1px solid rgba(70,62,33,0.08);
  margin-top: 8px;
  padding: 18px 0 22px;
}
.ve-footer-bottom::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--ve-gold) 50%, transparent 95%);
  opacity: 0.75;
}
.ve-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.ve-footer-bottom-inner p {
  font-size: 13px;
  color: rgba(45, 40, 24, 0.55);
  margin: 0;
  font-weight: 500;
}
.ve-footer-bottom-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ve-footer-bottom-inner ul li a {
  font-size: 13px;
  color: rgba(45, 40, 24, 0.55);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}
.ve-footer-bottom-inner ul li a:hover { color: var(--ve-gold); }

@media (max-width: 767.98px) {
  .ve-footer-eyebrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 26px;
  }
  .ve-footer-mark {
    top: 48%;
    letter-spacing: 0.1em;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1199px) {
  .ve-hero-left { padding:70px 40px; }
  .ve-hero-left h1 { font-size:50px; }
  .ve-services-grid { grid-template-columns:repeat(5, minmax(0, 1fr)); gap:14px; }
  .ve-service-card { padding:22px 14px; }
  .ve-service-card h4 { font-size:14px; }
  .ve-service-card p { font-size:12px; }
  .ve-counter-grid { grid-template-columns:repeat(2,1fr); }
  .ve-testi-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:991px) {
  .ve-services-grid { grid-template-columns:repeat(5, minmax(0, 1fr)); gap:12px; }
  .ve-service-card { padding:18px 12px; }
  .ve-service-card h4 { font-size:13px; }
  .ve-service-card p { font-size:12px; }
  .ve-service-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
  }
  .ve-service-desc.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
  }
  .ve-service-icon { width:44px; height:44px; font-size:18px; margin-bottom:12px; }
  .ve-hero:not(.ve-hero-cinematic) { flex-direction:column; min-height:auto; }
  .ve-hero:not(.ve-hero-cinematic) .ve-hero-left { flex:none; padding:100px 30px 60px; }
  .ve-hero:not(.ve-hero-cinematic) .ve-hero-right { flex:none; height:350px; }
  .ve-nav, .ve-nav-cta { display:none; }
  .ve-toggler { display:flex; }
  .ve-whyus-content { padding-left:0; margin-top:40px; }
  .ve-newsletter-wrap { flex-direction:column; align-items:flex-start; }
  .ve-nl-form { width:100%; }
  .ve-nl-form input { flex:1; width:auto; min-width:0; }
  .ve-nav-wrap {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
    height: 92px;
  }
  .ve-header.scrolled .ve-nav-wrap { height: 78px; }
  .ve-logo-svg { height: 72px; max-width: min(280px, 48vw); object-fit: contain; }
  .ve-header.scrolled .ve-logo-svg { height: 60px; }
}
@media (max-width:767px) {
  .ve-hero-left h1 { font-size:38px; }
  .ve-services-grid { grid-template-columns:1fr; gap:16px; }
  .ve-service-card { padding:24px 20px; }
  .ve-service-card h4 { font-size:16px; }
  .ve-service-card p { font-size:14px; }
  .ve-service-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
  }
  .ve-service-desc.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
  }
  .ve-service-icon { width:52px; height:52px; font-size:22px; margin-bottom:16px; }
  .ve-testi-grid, .ve-counter-grid { grid-template-columns:1fr; }
  .ve-hero-stats { flex-wrap:wrap; gap:16px; }
  .ve-footer-bottom-inner { flex-direction:column; text-align:center; }
  .ve-cta-content h2 { font-size:28px; }
  .text-lg-right { text-align:left; margin-top:20px; }
  .ve-counter-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); }
  .ve-counter-item:last-child { border-bottom:none; }
}

/* ============================================================
   HIDE OLD HEADER (replaced by ve-header)
   ============================================================ */
.header-area { display:none !important; }

/* Ensure body offset for fixed navbar */
body { padding-top:0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.ve-page-hero {
  position:relative; padding:160px 0 90px;
  background-size:cover; background-position:center;
  overflow:hidden;
}
.ve-page-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.6) 100%); }
.ve-page-hero-content { position:relative; z-index:2; }
.ve-page-hero-content h1 { font-size:50px; font-weight:900; color:#fff; margin:12px 0 20px; line-height:1.15; }
.ve-page-hero-content h1 span { color:var(--ve-gold); }
.ve-breadcrumb { list-style:none; margin:0; padding:0; display:flex; gap:10px; align-items:center; }
.ve-breadcrumb li { font-size:14px; color:rgba(255,255,255,0.55); }
.ve-breadcrumb li::after { content:'/'; margin-left:10px; }
.ve-breadcrumb li:last-child::after { display:none; }
.ve-breadcrumb li a { color:var(--ve-gold); text-decoration:none; }
.ve-breadcrumb li.active { color:rgba(255,255,255,0.8); }
.ve-post-meta-hero { display:flex; gap:24px; flex-wrap:wrap; margin-top:10px; }
.ve-post-meta-hero span { font-size:14px; color:rgba(255,255,255,0.6); display:inline-flex; align-items:center; gap:7px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ve-about-img-stack { position:relative; padding-bottom:60px; padding-right:60px; }
.ve-about-img-1 { height:420px; border-radius:16px; background-size:cover; background-position:center; }
.ve-about-img-2 {
  position:absolute; bottom:0; right:0; width:220px; height:180px;
  border-radius:14px; background-size:cover; background-position:center;
  border:4px solid var(--ve-gold); box-shadow:0 15px 40px rgba(0,0,0,0.25);
}
.ve-about-ribbon {
  position:absolute; top:30px; left:-20px;
  background:var(--ve-gold); border-radius:12px; padding:20px 24px;
  text-align:center; box-shadow:0 10px 30px rgba(212,160,23,0.35);
}
.ve-about-ribbon strong { display:block; font-size:36px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--ve-dark); }
.ve-about-ribbon span { font-size:11px; font-weight:700; color:var(--ve-dark); text-transform:uppercase; letter-spacing:0.8px; }

.ve-about-text { padding-left:50px; }
.ve-about-text h2 { font-size:38px; font-weight:900; line-height:1.2; margin-bottom:16px; }
.ve-about-text h2 span { color:var(--ve-gold); }
.ve-lead { font-size:17px; color:var(--ve-dark); font-weight:500; margin-bottom:16px; line-height:1.7; }

.ve-about-section .ve-about-img-wrap,
.ve-about-img-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px 36px 0;
}
.ve-about-section .ve-about-img-main,
.ve-about-img-main {
  width: 100%;
  min-height: 420px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(26, 22, 16, 0.14);
}
.ve-about-img-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46%, 220px);
  height: 160px;
  border-radius: 14px;
  background-size: cover !important;
  background-position: center !important;
  border: 4px solid #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  z-index: 2;
}
.ve-about-badge {
  position: absolute;
  top: 28px;
  left: -8px;
  z-index: 3;
  background: linear-gradient(135deg, #c48a5a 0%, #7a3e2b 100%);
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  min-width: 104px;
  box-shadow: 0 12px 28px rgba(122, 62, 43, 0.35);
}
.ve-about-badge strong {
  display: block;
  font-size: 30px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.ve-about-badge span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 90px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}
.ve-about-content {
  padding-left: clamp(0px, 3vw, 36px);
}
.ve-about-content .ve-checklist {
  margin-top: 22px;
}
.ve-about-content .ve-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.ve-about-content .ve-check-item i {
  color: var(--ve-gold);
  margin-top: 3px;
}

@media (max-width: 992px) {
  .ve-about-section .ve-about-img-main,
  .ve-about-img-main {
    min-height: 300px;
  }
  .ve-about-img-wrap {
    padding: 0 16px 28px 0;
    margin-bottom: 28px;
  }
  .ve-about-img-accent {
    width: min(42%, 160px);
    height: 120px;
  }
  .ve-about-content {
    padding-left: 0;
  }
}

@media (max-width: 575.98px) {
  .ve-about-img-accent {
    display: none;
  }
  .ve-about-img-wrap {
    padding: 0 0 12px;
  }
  .ve-about-badge {
    left: 12px;
    top: 16px;
    padding: 12px 14px;
  }
  .ve-about-badge strong {
    font-size: 24px;
  }
}

.ve-about-features { margin:24px 0; display:flex; flex-direction:column; gap:10px; }
.ve-af-item { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--ve-text); }
.ve-af-item i { color:var(--ve-gold); font-size:14px; }

/* MVV Cards */
.ve-mvv-section { background:var(--ve-dark); padding:80px 0; }
.ve-mvv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.ve-mvv-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:var(--ve-radius); padding:40px 30px; text-align:center; transition:var(--ve-trans); }
.ve-mvv-card:hover { background:rgba(212,160,23,0.08); border-color:rgba(212,160,23,0.3); }
.ve-mvv-icon { width:64px; height:64px; background:linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.05)); border:1px solid rgba(212,160,23,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; font-size:26px; color:var(--ve-gold); }
.ve-mvv-card h4 { font-size:20px; font-weight:800; color:#fff; margin-bottom:12px; }
.ve-mvv-card p { font-size:14px; color:rgba(255,255,255,0.55); line-height:1.8; }

/* Team */
.ve-team-section { background:var(--ve-light); }
.ve-team-card { background:#fff; border-radius:var(--ve-radius); overflow:hidden; box-shadow:var(--ve-shadow); transition:var(--ve-trans); margin-bottom:30px; }
.ve-team-card:hover { transform:translateY(-5px); }
.ve-team-img { height:280px; background-size:cover; background-position:center top; }
.ve-team-info { padding:22px 24px; }
.ve-team-info h5 { font-size:18px; font-weight:800; color:var(--ve-dark); margin-bottom:4px; }
.ve-team-info span { font-size:13px; color:var(--ve-text); display:block; margin-bottom:14px; }
.ve-team-social { display:flex; gap:8px; }
.ve-team-social a { width:32px; height:32px; border-radius:6px; background:var(--ve-light); color:var(--ve-text); display:flex; align-items:center; justify-content:center; font-size:12px; text-decoration:none; transition:var(--ve-trans); }
.ve-team-social a:hover { background:var(--ve-gold); color:var(--ve-dark); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.ve-process-section { background:var(--ve-dark); padding:90px 0; }
.ve-process-grid { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:50px; }
.ve-process-step { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:var(--ve-radius); padding:36px 28px; text-align:center; flex:1; min-width:180px; max-width:220px; transition:var(--ve-trans); }
.ve-process-step:hover { background:rgba(212,160,23,0.08); border-color:rgba(212,160,23,0.3); }
.ve-process-num { font-size:40px; font-family:'Nunito',sans-serif; font-weight:900; color:rgba(212,160,23,0.3); margin-bottom:12px; line-height:1; }
.ve-process-step h5 { font-size:16px; font-weight:800; color:#fff; margin-bottom:10px; }
.ve-process-step p { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.7; margin:0; }
.ve-process-arrow { font-size:24px; color:rgba(212,160,23,0.4); flex-shrink:0; }

/* FAQ */
.ve-faq-section { background:var(--ve-light); }
.ve-faq-list { display:flex; flex-direction:column; gap:12px; }
.ve-faq-item { background:#fff; border-radius:10px; border:1px solid var(--ve-border); overflow:hidden; }
.ve-faq-q {
  display:flex; justify-content:space-between; align-items:center;
  width:100%; padding:18px 22px; cursor:pointer; gap:16px;
  background:transparent; border:0; text-align:left; font:inherit;
}
.ve-faq-q span { font-size:15px; font-weight:700; color:var(--ve-dark); }
.ve-faq-q i { color:var(--ve-gold); font-size:14px; flex-shrink:0; }
.ve-faq-a { padding:0 22px 18px; font-size:14px; color:var(--ve-text); line-height:1.8; display:none; }
.ve-faq-item.open .ve-faq-a { display:block; }
.ve-faq-item.open .ve-faq-q { border-bottom:1px solid var(--ve-border); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ve-contact-cards-section { background:var(--ve-dark); padding:0; margin-top:-1px; }
.ve-contact-cards-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.ve-contact-info-card { padding:50px 40px; text-align:center; border-right:1px solid rgba(255,255,255,0.08); }
.ve-contact-info-card:last-child { border-right:none; }
.ve-ci-icon { width:60px; height:60px; background:rgba(212,160,23,0.15); border:1px solid rgba(212,160,23,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; font-size:22px; color:var(--ve-gold); }
.ve-contact-info-card h5 { font-size:17px; font-weight:800; color:#fff; margin-bottom:10px; }
.ve-contact-info-card p { font-size:14px; color:rgba(255,255,255,0.55); margin:0; line-height:1.7; }
.ve-contact-info-card small { font-size:12px; opacity:0.6; }

.ve-contact-form-wrap { background:#fff; border-radius:16px; padding:50px; box-shadow:var(--ve-shadow); }
.ve-contact-form-wrap h2 { font-size:34px; font-weight:900; margin-bottom:10px; }
.ve-contact-form-wrap h2 span { color:var(--ve-gold); }
.ve-contact-form-wrap > p { font-size:15px; color:var(--ve-text); margin-bottom:30px; }

.ve-contact-form .ve-form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.ve-form-group { display:flex; flex-direction:column; margin-bottom:20px; }
.ve-form-group label { font-size:13px; font-weight:700; color:var(--ve-dark); margin-bottom:7px; text-transform:uppercase; letter-spacing:0.5px; }
.ve-form-group input, .ve-form-group select, .ve-form-group textarea {
  border:1px solid var(--ve-border); border-radius:8px; padding:12px 16px;
  font-size:14px; color:var(--ve-dark); outline:none; transition:var(--ve-trans);
  font-family:'DM Sans',sans-serif; background:#fff;
}
.ve-form-group input:focus, .ve-form-group select:focus, .ve-form-group textarea:focus { border-color:var(--ve-gold); box-shadow:0 0 0 3px rgba(212,160,23,0.12); }
.ve-form-group textarea { resize:vertical; }

.ve-contact-aside { display:flex; flex-direction:column; gap:24px; padding-left:20px; }
.ve-ca-box { background:var(--ve-dark); border-radius:14px; padding:32px; }
.ve-ca-box h4 { font-size:18px; font-weight:800; color:#fff; margin-bottom:20px; }
.ve-ca-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.ve-ca-list li { font-size:14px; color:rgba(255,255,255,0.7); display:flex; align-items:center; gap:10px; }
.ve-ca-list li i { color:var(--ve-gold); }
.ve-ca-hours { background:var(--ve-light); border-radius:14px; padding:28px; }
.ve-ca-hours h5 { font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.ve-ca-hours h5 i { color:var(--ve-gold); }
.ve-ca-hours ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.ve-ca-hours ul li { display:flex; justify-content:space-between; font-size:14px; color:var(--ve-text); padding-bottom:10px; border-bottom:1px solid var(--ve-border); }
.ve-ca-hours ul li:last-child { border-bottom:none; padding-bottom:0; }
.ve-ca-hours ul li strong { color:var(--ve-dark); font-weight:700; }
.ve-ca-social { background:#fff; border-radius:14px; padding:24px; border:1px solid var(--ve-border); }
.ve-ca-social h5 { font-size:15px; font-weight:800; color:var(--ve-dark); margin-bottom:16px; }

/* ============================================================
   BLOG / POST
   ============================================================ */
.ve-pagination { display:flex; gap:8px; margin-top:40px; }
.ve-pagination a { width:40px; height:40px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; text-decoration:none; background:var(--ve-light); color:var(--ve-dark); transition:var(--ve-trans); border:1px solid var(--ve-border); }
.ve-pagination a:hover, .ve-pagination a.active { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

.ve-sidebar { position:sticky; top:90px; }
.ve-sidebar-widget { background:#fff; border-radius:var(--ve-radius); padding:28px; margin-bottom:24px; border:1px solid var(--ve-border); }
.ve-sidebar-title { font-size:16px; font-weight:900; color:var(--ve-dark); margin-bottom:20px; padding-bottom:12px; border-bottom:2px solid var(--ve-gold); display:inline-block; }
.ve-search-box { display:flex; border:1px solid var(--ve-border); border-radius:8px; overflow:hidden; }
.ve-search-box input { flex:1; border:none; padding:12px 14px; font-size:14px; outline:none; font-family:'DM Sans',sans-serif; }
.ve-search-box button { background:var(--ve-gold); border:none; padding:0 18px; cursor:pointer; color:var(--ve-dark); font-size:14px; }
.ve-cat-list { list-style:none; margin:0; padding:0; }
.ve-cat-list li { border-bottom:1px solid var(--ve-border); }
.ve-cat-list li:last-child { border-bottom:none; }
.ve-cat-list li a { display:flex; justify-content:space-between; padding:10px 0; font-size:14px; color:var(--ve-text); text-decoration:none; transition:var(--ve-trans); }
.ve-cat-list li a:hover { color:var(--ve-gold); }
.ve-cat-list li a span { background:var(--ve-light); border-radius:4px; padding:2px 8px; font-size:12px; font-weight:700; color:var(--ve-dark); }
.ve-recent-post { display:flex; gap:14px; margin-bottom:16px; padding-bottom:16px; border-bottom:1px solid var(--ve-border); }
.ve-recent-post:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.ve-rp-img { width:64px; height:54px; border-radius:8px; background-size:cover; background-position:center; flex-shrink:0; }
.ve-recent-post a { font-size:13px; font-weight:700; color:var(--ve-dark); text-decoration:none; display:block; margin-bottom:4px; line-height:1.4; transition:var(--ve-trans); }
.ve-recent-post a:hover { color:var(--ve-gold); }
.ve-recent-post span { font-size:12px; color:#aaa; display:flex; align-items:center; gap:5px; }
.ve-tags { display:flex; flex-wrap:wrap; gap:8px; }
.ve-tags a { background:var(--ve-light); color:var(--ve-text); border-radius:6px; padding:6px 12px; font-size:12px; font-weight:600; text-decoration:none; transition:var(--ve-trans); border:1px solid var(--ve-border); }
.ve-tags a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* WhatsApp Container */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    padding: 8px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--ve-dark);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.whatsapp-menu a:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.whatsapp-menu a i {
    font-size: 18px;
}

/* Single post */
.ve-article { background:#fff; border-radius:16px; padding:0; overflow:hidden; box-shadow:var(--ve-shadow); margin-bottom:40px; }
.ve-article-featured { height:380px; background-size:cover; background-position:center; }
.ve-article-body { padding:40px; }
.ve-article-body h3 { font-size:22px; font-weight:800; color:var(--ve-dark); margin:28px 0 12px; }
.ve-article-body p { font-size:15px; line-height:1.85; color:var(--ve-text); margin-bottom:16px; }
.ve-article-lead { font-size:17px; font-weight:500; color:var(--ve-dark); line-height:1.7; border-left:4px solid var(--ve-gold); padding-left:20px; margin-bottom:28px; }
.ve-blockquote { background:var(--ve-light); border-left:4px solid var(--ve-gold); border-radius:0 10px 10px 0; padding:24px 28px; margin:30px 0; }
.ve-blockquote p { font-size:18px; font-style:italic; font-weight:600; color:var(--ve-dark); margin-bottom:8px; }
.ve-blockquote cite { font-size:13px; color:var(--ve-text); font-style:normal; }
.ve-article-tags { margin-top:30px; padding-top:20px; border-top:1px solid var(--ve-border); display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.ve-article-tags strong { font-size:13px; color:var(--ve-dark); font-weight:700; }
.ve-article-share { display:flex; align-items:center; gap:10px; margin-top:16px; }
.ve-article-share strong { font-size:13px; color:var(--ve-dark); font-weight:700; }
.ve-article-share a { width:36px; height:36px; border-radius:8px; background:var(--ve-light); color:var(--ve-text); display:flex; align-items:center; justify-content:center; text-decoration:none; transition:var(--ve-trans); }
.ve-article-share a:hover { background:var(--ve-gold); color:var(--ve-dark); }

/* Comments */
.ve-comments-section { margin-bottom:40px; }
.ve-comments-section h4, .ve-comment-form-wrap h4 { font-size:22px; font-weight:800; color:var(--ve-dark); margin-bottom:24px; }
.ve-comment { display:flex; gap:16px; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--ve-border); }
.ve-comment.ve-comment-reply { margin-left:60px; }
.ve-comment:last-child { border-bottom:none; }
.ve-comment-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-comment-body { flex:1; }
.ve-comment-meta { display:flex; gap:16px; align-items:center; margin-bottom:8px; }
.ve-comment-meta strong { font-size:15px; font-weight:800; color:var(--ve-dark); }
.ve-comment-meta span { font-size:12px; color:#aaa; }
.ve-comment-body p { font-size:14px; color:var(--ve-text); line-height:1.7; margin-bottom:10px; }
.ve-reply-btn { font-size:12px; font-weight:700; color:var(--ve-gold); text-decoration:none; text-transform:uppercase; letter-spacing:0.5px; }
.ve-comment-form-wrap { background:#fff; border-radius:16px; padding:40px; box-shadow:var(--ve-shadow); }

/* Responsive additions */
@media(max-width:991px) {
  .ve-about-text { padding-left:0; margin-top:40px; }
  .ve-contact-cards-grid { grid-template-columns:1fr; }
  .ve-contact-info-card { border-right:none; border-bottom:1px solid rgba(255,255,255,0.08); }
  .ve-mvv-grid { grid-template-columns:1fr; }
  .ve-contact-aside { padding-left:0; margin-top:30px; }
  .ve-process-grid { flex-direction:column; }
  .ve-process-arrow { transform:rotate(90deg); }
  .ve-page-hero-content h1 { font-size:36px; }
}
@media(max-width:767px) {
  .ve-contact-form .ve-form-row { grid-template-columns:1fr; }
  .ve-contact-form-wrap { padding:28px; }
  .ve-article-body { padding:24px; }
  .ve-about-img-stack { padding-bottom:30px; padding-right:30px; }
  .ve-about-img-2 { width:150px; height:120px; }
}

/* ============================================================
   PAGE-SPECIFIC COMPONENTS (all inner pages)
   ============================================================ */

/* Page Hero */
.ve-page-hero {
  min-height: 380px; background-size:cover; background-position:center;
  position:relative; display:flex; align-items:flex-end; padding-bottom:60px;
  margin-top:72px;
}
.ve-page-hero-sm { min-height:460px; }
.ve-page-hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(13,27,42,0.5) 0%, rgba(13,27,42,0.85) 100%); }
.ve-page-hero-content { position:relative; z-index:2; }
.ve-page-hero-content h1 { font-size:46px; font-weight:900; color:#fff; margin:10px 0 18px; line-height:1.15; }
.ve-page-hero-content h1 span { color:var(--ve-gold); }
.ve-post-meta-hero { display:flex; gap:24px; flex-wrap:wrap; }
.ve-post-meta-hero span { font-size:14px; color:rgba(255,255,255,0.7); display:inline-flex; align-items:center; gap:6px; }

/* Breadcrumb */
.ve-breadcrumb { list-style:none; margin:0; padding:0; display:flex; gap:10px; }
.ve-breadcrumb li { font-size:14px; color:rgba(255,255,255,0.6); }
.ve-breadcrumb li a { color:var(--ve-gold); text-decoration:none; }
.ve-breadcrumb li a:hover { color:#fff; }
.ve-breadcrumb li.active { color:rgba(255,255,255,0.5); }
.ve-breadcrumb li:not(:last-child)::after { content:'/'; margin-left:10px; color:rgba(255,255,255,0.3); }

/* About Page */
.ve-about-img-stack { position:relative; padding:0 40px 40px 0; }
.ve-about-img-1 { height:400px; border-radius:16px; background-size:cover; background-position:center; }
.ve-about-img-2 { position:absolute; bottom:0; right:0; width:55%; height:230px; border-radius:14px; background-size:cover; background-position:center; border:4px solid #fff; box-shadow:0 20px 50px rgba(0,0,0,0.2); }
.ve-about-ribbon { position:absolute; top:30px; left:-20px; background:var(--ve-gold); border-radius:12px; padding:18px 22px; text-align:center; }
.ve-about-ribbon strong { display:block; font-size:36px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--ve-dark); }
.ve-about-ribbon span { font-size:11px; font-weight:700; color:var(--ve-dark); text-transform:uppercase; letter-spacing:0.8px; }
.ve-about-text { padding-left:40px; }
.ve-about-text h2 { font-size:38px; font-weight:900; margin-bottom:16px; }
.ve-about-text h2 span { color:var(--ve-gold); }
.ve-lead { font-size:17px; font-weight:500; color:var(--ve-dark); margin-bottom:14px; line-height:1.7; }
.ve-about-text > p { font-size:15px; line-height:1.8; margin-bottom:24px; }
.ve-about-features { display:flex; flex-direction:column; gap:10px; margin-bottom:10px; }
.ve-af-item { display:flex; align-items:center; gap:12px; font-size:14px; color:var(--ve-dark); font-weight:500; }
.ve-af-item i { color:var(--ve-gold); font-size:14px; }

/* MVV Section */
.ve-mvv-section { background:linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%); padding:80px 0; }
.ve-mvv-section .ve-section-header h2 { color:#fff; }
.ve-mvv-section .ve-section-header p { color:rgba(255,255,255,0.6); }
.ve-mvv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:50px; }
.ve-mvv-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:var(--ve-radius); padding:36px 28px; text-align:center; transition:var(--ve-trans); }
.ve-mvv-card:hover { background:rgba(255,255,255,0.1); transform:translateY(-4px); }
.ve-mvv-icon { width:64px; height:64px; background:linear-gradient(135deg, var(--ve-gold), var(--ve-gold2)); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:26px; color:var(--ve-dark); margin:0 auto 20px; }
.ve-mvv-card h4 { font-size:20px; font-weight:800; color:#fff; margin-bottom:12px; }
.ve-mvv-card p { font-size:14px; color:rgba(255,255,255,0.6); line-height:1.8; margin:0; }

/* Team Cards */
.ve-team-section { background:var(--ve-light); }
.ve-team-card { background:#fff; border-radius:var(--ve-radius); overflow:hidden; border:1px solid var(--ve-border); transition:var(--ve-trans); margin-bottom:28px; }
.ve-team-card:hover { transform:translateY(-5px); box-shadow:var(--ve-shadow); }
.ve-team-img { height:260px; background-size:cover; background-position:center top; }
.ve-team-info { padding:22px; text-align:center; }
.ve-team-info h5 { font-size:17px; font-weight:800; color:var(--ve-dark); margin-bottom:4px; }
.ve-team-info span { font-size:13px; color:var(--ve-text); display:block; margin-bottom:14px; }
.ve-team-social { display:flex; justify-content:center; gap:8px; }
.ve-team-social a { width:34px; height:34px; border-radius:6px; background:var(--ve-light); color:var(--ve-navy); display:flex; align-items:center; justify-content:center; font-size:13px; text-decoration:none; transition:var(--ve-trans); }
.ve-team-social a:hover { background:var(--ve-gold); color:var(--ve-dark); }

/* Process Steps */
.ve-process-section { background:var(--ve-light); padding:80px 0; }
.ve-process-grid { display:flex; align-items:center; gap:0; margin-top:50px; flex-wrap:wrap; }
.ve-process-step { flex:1; min-width:200px; background:#fff; border-radius:var(--ve-radius); padding:32px 24px; text-align:center; border:1px solid var(--ve-border); }
.ve-process-num { font-size:42px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--ve-gold); line-height:1; margin-bottom:14px; }
.ve-process-step h5 { font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:8px; }
.ve-process-step p { font-size:13px; color:var(--ve-text); line-height:1.7; margin:0; }
.ve-process-arrow { font-size:24px; color:var(--ve-gold); padding:0 16px; flex-shrink:0; }

/* FAQ */
.ve-faq-section { background:#fff; }
.ve-faq-list { display:flex; flex-direction:column; gap:0; }
.ve-faq-item { border-bottom:1px solid var(--ve-border); }
.ve-faq-q {
  display:flex; justify-content:space-between; align-items:center;
  width:100%; padding:18px 0; cursor:pointer; gap:16px;
  background:transparent; border:0; text-align:left; font:inherit;
}
.ve-faq-q span { font-size:15px; font-weight:700; color:var(--ve-dark); }
.ve-faq-q i { font-size:14px; color:var(--ve-gold); flex-shrink:0; transition:var(--ve-trans); }
.ve-faq-item.open .ve-faq-q i { transform:rotate(45deg); }
.ve-faq-a {
  font-size:14px; color:var(--ve-text); line-height:1.8;
  padding:0 0 16px; display:none;
}
.ve-faq-item.open .ve-faq-a { display:block; }

/* Contact Cards */
.ve-contact-cards-section { background:var(--ve-light); padding:60px 0; }
.ve-contact-cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.ve-contact-info-card { background:#fff; border-radius:var(--ve-radius); padding:36px 28px; text-align:center; border:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-contact-info-card:hover { transform:translateY(-4px); box-shadow:var(--ve-shadow); }
.ve-ci-icon { width:60px; height:60px; background:linear-gradient(135deg, var(--ve-dark), var(--ve-navy)); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; color:var(--ve-gold); margin:0 auto 18px; }
.ve-contact-info-card h5 { font-size:17px; font-weight:800; color:var(--ve-dark); margin-bottom:8px; }
.ve-contact-info-card p { font-size:14px; color:var(--ve-text); line-height:1.7; margin:0; }

/* Contact Form Wrap */
.ve-contact-form-wrap h2 { font-size:36px; font-weight:900; margin-bottom:10px; }
.ve-contact-form-wrap h2 span { color:var(--ve-gold); }
.ve-contact-form-wrap > p { font-size:15px; color:var(--ve-text); margin-bottom:28px; }
.ve-contact-form { display:flex; flex-direction:column; gap:18px; }
.ve-form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.ve-form-group { display:flex; flex-direction:column; gap:6px; }
.ve-form-group label { font-size:13px; font-weight:700; color:var(--ve-dark); text-transform:uppercase; letter-spacing:0.5px; }
.ve-form-group input,
.ve-form-group select,
.ve-form-group textarea { border:2px solid var(--ve-border); border-radius:8px; padding:12px 16px; font-size:14px; font-family:'DM Sans',sans-serif; color:var(--ve-dark); background:#fff; outline:none; transition:var(--ve-trans); }
.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus { border-color:var(--ve-gold); box-shadow:0 0 0 3px rgba(212,160,23,0.1); }
.ve-form-group textarea { resize:vertical; }

/* Contact Aside */
.ve-contact-aside { display:flex; flex-direction:column; gap:24px; padding-left:30px; }
.ve-ca-box { background:var(--ve-light); border-radius:var(--ve-radius); padding:28px; border:1px solid var(--ve-border); }
.ve-ca-box h4 { font-size:18px; font-weight:800; color:var(--ve-dark); margin-bottom:18px; }
.ve-ca-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.ve-ca-list li { font-size:14px; color:var(--ve-text); display:flex; align-items:center; gap:10px; }
.ve-ca-list li i { color:var(--ve-gold); }
.ve-ca-hours { background:var(--ve-dark); border-radius:var(--ve-radius); padding:24px; }
.ve-ca-hours h5 { font-size:15px; font-weight:700; color:var(--ve-gold); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.ve-ca-hours ul { list-style:none; margin:0; padding:0; }
.ve-ca-hours ul li { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.07); font-size:14px; }
.ve-ca-hours ul li:last-child { border-bottom:none; }
.ve-ca-hours ul li span { color:rgba(255,255,255,0.5); }
.ve-ca-hours ul li strong { color:#fff; }
.ve-ca-social h5 { font-size:15px; font-weight:700; color:var(--ve-dark); margin-bottom:12px; }

/* Blog / Sidebar */
.ve-sidebar { display:flex; flex-direction:column; gap:30px; padding-left:20px; }
.ve-sidebar-widget { background:#fff; border-radius:var(--ve-radius); padding:28px; border:1px solid var(--ve-border); }
.ve-sidebar-title { font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:18px; padding-bottom:12px; border-bottom:2px solid var(--ve-gold); display:inline-block; }
.ve-search-box { display:flex; border:2px solid var(--ve-border); border-radius:8px; overflow:hidden; }
.ve-search-box input { flex:1; border:none; padding:10px 14px; font-size:14px; outline:none; font-family:'DM Sans',sans-serif; }
.ve-search-box button { background:var(--ve-gold); border:none; padding:0 16px; color:var(--ve-dark); cursor:pointer; font-size:14px; transition:var(--ve-trans); }
.ve-search-box button:hover { background:var(--ve-dark); color:#fff; }
.ve-cat-list { list-style:none; margin:0; padding:0; }
.ve-cat-list li a { display:flex; justify-content:space-between; padding:10px 0; font-size:14px; color:var(--ve-text); text-decoration:none; border-bottom:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-cat-list li:last-child a { border-bottom:none; }
.ve-cat-list li a span { background:var(--ve-light); color:var(--ve-dark); font-size:12px; font-weight:700; padding:2px 8px; border-radius:20px; }
.ve-cat-list li a:hover { color:var(--ve-gold); }
.ve-recent-post { display:flex; gap:12px; align-items:flex-start; margin-bottom:16px; }
.ve-recent-post:last-child { margin-bottom:0; }
.ve-rp-img { width:65px; height:50px; border-radius:8px; background-size:cover; background-position:center; flex-shrink:0; }
.ve-recent-post div a { display:block; font-size:13px; font-weight:700; color:var(--ve-dark); text-decoration:none; margin-bottom:4px; line-height:1.4; }
.ve-recent-post div a:hover { color:var(--ve-gold); }
.ve-recent-post div span { font-size:12px; color:var(--ve-text); display:inline-flex; align-items:center; gap:4px; }
.ve-tags { display:flex; flex-wrap:wrap; gap:8px; }
.ve-tags a { background:var(--ve-light); color:var(--ve-text); font-size:13px; padding:6px 14px; border-radius:20px; text-decoration:none; border:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-tags a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Pagination */
.ve-pagination { display:flex; gap:8px; margin-top:40px; flex-wrap:wrap; }
.ve-pagination a { width:40px; height:40px; border-radius:8px; background:var(--ve-light); border:1px solid var(--ve-border); display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:600; color:var(--ve-text); text-decoration:none; transition:var(--ve-trans); }
.ve-pagination a.active, .ve-pagination a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Article */
.ve-article { background:#fff; border-radius:var(--ve-radius); overflow:hidden; border:1px solid var(--ve-border); margin-bottom:40px; }
.ve-article-featured { height:380px; background-size:cover; background-position:center; }
.ve-article-body { padding:36px; }
.ve-article-lead { font-size:17px; font-weight:500; color:var(--ve-dark); line-height:1.8; margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid var(--ve-border); }

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: transform 0.3s ease;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
}
.whatsapp-btn i {
    font-size: 32px;
    color: #fff;
}

/* Portfolio Filter & Grid */
.ve-portfolio-section { background: #fff; }
.ve-filter-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.ve-filter-btn {
    padding: 10px 24px;
    background: var(--ve-light);
    border: 1px solid var(--ve-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ve-text);
    cursor: pointer;
    transition: var(--ve-trans);
}
.ve-filter-btn:hover, .ve-filter-btn.active {
    background: var(--ve-gold);
    border-color: var(--ve-gold);
    color: var(--ve-dark);
}
.ve-portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ve-portfolio-item {
    border-radius: var(--ve-radius);
    overflow: hidden;
    border: 1px solid var(--ve-border);
    transition: var(--ve-trans);
}
.ve-portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--ve-shadow); }
.ve-portfolio-img { height: 260px; background-size: cover; background-position: center; position: relative; }
.ve-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13,27,42,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--ve-trans);
}
.ve-portfolio-item:hover .ve-portfolio-overlay { opacity: 1; }
.ve-portfolio-overlay h5 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.ve-portfolio-overlay span { font-size: 13px; color: var(--ve-gold); text-transform: uppercase; letter-spacing: 1px; }
.ve-portfolio-meta {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ve-portfolio-meta span { font-size: 13px; color: var(--ve-text); display: flex; align-items: center; gap: 6px; }
.ve-portfolio-meta span i { color: var(--ve-gold); }

.ve-article-body h3 { font-size:22px; font-weight:800; color:var(--ve-dark); margin:28px 0 12px; }
.ve-article-body p { font-size:15px; line-height:1.8; color:var(--ve-text); margin-bottom:16px; }
.ve-blockquote { background:var(--ve-light); border-left:4px solid var(--ve-gold); border-radius:0 10px 10px 0; padding:24px 28px; margin:28px 0; }
.ve-blockquote p { font-size:17px; font-style:italic; color:var(--ve-dark); font-weight:500; margin:0 0 8px; }
.ve-blockquote cite { font-size:13px; color:var(--ve-gold); font-weight:700; font-style:normal; }
.ve-article-tags { display:flex; align-items:center; gap:10px; margin-top:28px; flex-wrap:wrap; }
.ve-article-tags strong { font-size:14px; color:var(--ve-dark); }
.ve-article-tags a { background:var(--ve-light); color:var(--ve-text); font-size:13px; padding:5px 12px; border-radius:20px; text-decoration:none; border:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-article-tags a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }
.ve-article-share { display:flex; align-items:center; gap:10px; margin-top:16px; }
.ve-article-share strong { font-size:14px; color:var(--ve-dark); }
.ve-article-share a { width:34px; height:34px; border-radius:8px; background:var(--ve-light); color:var(--ve-navy); display:flex; align-items:center; justify-content:center; font-size:14px; text-decoration:none; transition:var(--ve-trans); border:1px solid var(--ve-border); }
.ve-article-share a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Comments */
.ve-comments-section { margin-bottom:40px; }
.ve-comments-section h4 { font-size:22px; font-weight:800; color:var(--ve-dark); margin-bottom:24px; }
.ve-comment { display:flex; gap:16px; margin-bottom:24px; }
.ve-comment-reply { margin-left:50px; }
.ve-comment-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-comment-body { flex:1; background:var(--ve-light); border-radius:10px; padding:18px; }
.ve-comment-meta { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; flex-wrap:wrap; gap:6px; }
.ve-comment-meta strong { font-size:15px; font-weight:800; color:var(--ve-dark); }
.ve-comment-meta span { font-size:13px; color:var(--ve-text); }
.ve-comment-body p { font-size:14px; color:var(--ve-text); line-height:1.7; margin-bottom:10px; }
.ve-reply-btn { font-size:13px; font-weight:700; color:var(--ve-gold); text-decoration:none; }
.ve-reply-btn:hover { color:var(--ve-dark); }

/* Comment form */
.ve-comment-form-wrap h4 { font-size:22px; font-weight:800; color:var(--ve-dark); margin-bottom:24px; }

/* Elements page */
.ve-elements-section { background:#fff; }
.ve-el-block { margin-bottom:70px; }
.ve-el-title { font-size:22px; font-weight:900; color:var(--ve-dark); margin-bottom:28px; padding-bottom:14px; border-bottom:2px solid var(--ve-border); display:flex; align-items:center; gap:14px; }
.ve-el-title span { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; background:var(--ve-gold); color:var(--ve-dark); border-radius:8px; font-size:14px; font-weight:900; flex-shrink:0; }
.ve-el-demo { display:flex; flex-wrap:wrap; gap:14px; align-items:center; }

/* Why us section */
.ve-whyus-section { background:#fff; }
.ve-whyus-img-wrap { position:relative; padding-bottom:40px; padding-right:40px; }
.ve-whyus-img-main { height:480px; border-radius:16px; background-size:cover; background-position:center; }
.ve-whyus-badge { position:absolute; bottom:0; right:0; background:var(--ve-gold); border-radius:14px; padding:22px 28px; text-align:center; min-width:160px; }
.ve-whyus-badge strong { display:block; font-size:40px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--ve-dark); }
.ve-whyus-badge span { font-size:12px; font-weight:600; color:var(--ve-dark); opacity:0.7; text-transform:uppercase; letter-spacing:0.8px; }
.ve-whyus-content { padding-left:40px; }
.ve-whyus-content h2 { font-size:40px; font-weight:900; line-height:1.2; margin-bottom:16px; }
.ve-whyus-content h2 span { color:var(--ve-gold); }

/* Responsive extras */
@media(max-width:991px) {
  .ve-mvv-grid { grid-template-columns:1fr; }
  .ve-contact-cards-grid { grid-template-columns:1fr; }
  .ve-process-grid { flex-direction:column; }
  .ve-process-arrow { transform:rotate(90deg); }
  .ve-about-text, .ve-whyus-content { padding-left:0; margin-top:30px; }
  .ve-contact-aside { padding-left:0; margin-top:30px; }
  .ve-sidebar { padding-left:0; margin-top:40px; }
  .ve-form-row { grid-template-columns:1fr; }
}
@media(max-width:767px) {
  .ve-page-hero-content h1 { font-size:30px; }
  .ve-testi-grid { grid-template-columns:1fr; }
  .ve-nl-form { flex-direction:column; border-radius:8px; }
  .ve-nl-form input, .ve-nl-form button { width:100%; border-radius:8px !important; }
  .ve-about-img-2 { display:none; }
}

/* Hero Section Responsive Fix (legacy split hero only) */
.ve-hero:not(.ve-hero-cinematic) {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    .ve-hero:not(.ve-hero-cinematic) {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .ve-hero-badge {
        padding: 5px 14px;
        font-size: 11px;
        margin-bottom: 16px;
    }
    .ve-hero-left h1 {
        font-size: 28px !important;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .ve-hero-left p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    .ve-hero-btns a {
        padding: 12px 22px;
        font-size: 14px;
    }
}

/* Homepage/Portfolio shared grid base — detailed rules below */

/* ===== ADVANCED ANIMATIONS & INTERACTIVE EFFECTS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(165, 119, 78, 0.3); }
  50% { box-shadow: 0 0 40px rgba(165, 119, 78, 0.6); }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.animate-slide-up { animation: slide-up 0.8s ease-out forwards; }
.animate-scale-in { animation: scale-in 0.6s ease-out forwards; }

/* ===== PORTFOLIO GRID STYLING (mobile-first, no 350px overflow) ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 100%;
}
.portfolio-item {
  border-radius: var(--ve-radius);
  overflow: hidden;
  box-shadow: var(--ve-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.portfolio-img {
  height: clamp(200px, 52vw, 260px);
  background-size: cover;
  background-position: center;
  position: relative;
}
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.45) 55%, transparent 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.portfolio-info {
  color: white;
  transform: none;
  transition: transform 0.4s ease;
  width: 100%;
  min-width: 0;
}
.portfolio-category {
  display: inline-block;
  background: var(--ve-gold);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  max-width: 100%;
  word-break: break-word;
}
.portfolio-info h4,
.portfolio-overlay h4 {
  color: white;
  font-size: clamp(16px, 4.2vw, 20px);
  font-weight: 800;
  margin: 0;
  font-family: 'Nunito', sans-serif;
  line-height: 1.25;
  word-break: break-word;
}
@media (hover: hover) and (pointer: fine) {
  .portfolio-overlay { opacity: 0; }
  .portfolio-info { transform: translateY(20px); }
  .portfolio-item:hover .portfolio-overlay { opacity: 1; }
  .portfolio-item:hover .portfolio-info { transform: translateY(0); }
  .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(70,62,33,0.25);
  }
}
@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .portfolio-overlay { padding: 20px; }
}
@media (min-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .portfolio-img { height: 260px; }
}

/* ===== HERO SECTION FLOATING ELEMENTS ===== */
.ve-hero-cinematic .ve-hero-title-cinematic {
  animation: none;
}
.ve-hero:not(.ve-hero-cinematic) .ve-hero-title {
  animation: slide-up 1s ease-out;
}
.ve-hero:not(.ve-hero-cinematic) .ve-hero-subtitle {
  animation: slide-up 1s ease-out 0.2s backwards;
}
.ve-hero:not(.ve-hero-cinematic) .ve-hero-cta {
  animation: pulse-glow 2s ease-in-out infinite;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  /* Failsafe: never leave sections invisible if JS observer fails */
  animation: veRevealFailsafe 0.01s linear 2.8s forwards;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@keyframes veRevealFailsafe {
  to { opacity: 1; transform: translateY(0); }
}
.ve-service-card,
.portfolio-item,
.ve-contact-info-card,
.social-logo-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ve-service-card:hover,
.ve-contact-info-card:hover,
.social-logo-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 35px rgba(70,62,33,0.12);
}
@media (hover: hover) and (pointer: fine) {
  .portfolio-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 35px rgba(70,62,33,0.12);
  }
}

/* ===== BUTTON INTERACTIVE EFFECTS ===== */
.ve-btn-primary {
  position: relative;
  overflow: hidden;
}
.ve-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.ve-btn-primary:hover::before { left: 100%; }

/* ===== NAVBAR SCROLL EFFECT ===== */
/* (handled in primary NAVBAR block — keep this lightweight) */
.ve-header.scrolled {
  box-shadow: 0 10px 32px rgba(70,62,33,0.08);
}

/* ===== SERVICE CARD HOVER EFFECTS ===== */
.ve-service-card {
  position: relative;
  overflow: hidden;
}
.ve-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.ve-service-card:hover::after {
  transform: scaleX(1);
}
.ve-service-card:hover .ve-service-icon {
  transform: rotateY(360deg) scale(1.1);
}
.ve-service-icon {
  transition: transform 0.6s ease;
}

/* ===== FORM INPUT FOCUS EFFECT ===== */
.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(165,119,78,0.2) !important;
}

/* ===== FLOATING ANIMATION FOR HERO BADGE ===== */
.ve-hero-badge {
  animation: none;
}

/* ============================================================
   CINEMATIC HERO INTRO — Architectural light preloader (7s)
   Then: header first → hero section effects
   ============================================================ */

/* --- Preloader stage --- */
.ve-cinematic-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  transition: opacity 0.35s ease 0.08s, visibility 0.35s ease 0.08s;
}
.ve-cinematic-preloader::before {
  display: none;
}
.ve-cine-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.ve-cine-atmosphere::before,
.ve-cine-atmosphere::after {
  content: none;
  display: none;
}

/* Legacy cosmos chrome off (kept in markup-safe hide) */
.ve-cine-milkyway,
.ve-cine-horizon,
.ve-cine-nebula,
.ve-cine-orb-glow,
.ve-cine-planet,
.ve-cine-ring-planet,
.ve-cine-starfield,
.ve-cine-css-meteor,
.ve-cine-meteor-canvas,
.ve-cine-orbit,
.ve-cine-core-halo,
.ve-cine-r-aura,
.ve-cine-r-glyph {
  display: none !important;
}

/* Soft gold washes */
.ve-cine-wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  z-index: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.ve-cine-wash-a {
  width: min(72vw, 620px);
  height: min(50vw, 420px);
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(232, 192, 106, 0.22) 0%, rgba(196, 150, 115, 0.08) 48%, transparent 74%);
  animation: cineWashPulse 7.5s ease-in-out infinite;
}
.ve-cine-wash-b {
  width: min(48vw, 380px);
  height: min(36vw, 280px);
  right: 8%;
  bottom: 12%;
  background: radial-gradient(ellipse, rgba(165, 119, 78, 0.12) 0%, transparent 70%);
  animation: cineWashPulse 9s ease-in-out 1.4s infinite reverse;
  opacity: 0.65;
}

/* Blueprint grid */
.ve-cine-blueprint {
  position: absolute;
  inset: -10%;
  z-index: 1;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(165, 119, 78, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 119, 78, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 72%);
  animation: cineGridDrift 18s linear infinite;
}

/* Cross axes */
.ve-cine-axis {
  position: absolute;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(196, 150, 115, 0.35), transparent);
  animation: cineAxisBreathe 4.5s ease-in-out infinite;
}
.ve-cine-axis-h {
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}
.ve-cine-axis-v {
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(196, 150, 115, 0.4), transparent);
  transform: translateX(-50%);
  animation-delay: 0.6s;
}

/* Light beams */
.ve-cine-beam {
  position: absolute;
  z-index: 2;
  width: 140%;
  height: 1px;
  left: -20%;
  background: linear-gradient(90deg, transparent, rgba(232, 192, 106, 0.55), transparent);
  transform-origin: center;
  opacity: 0;
}
.ve-cine-beam-a {
  top: 28%;
  animation: cineBeamSweep 6.2s ease-in-out 1s infinite;
}
.ve-cine-beam-b {
  top: 68%;
  animation: cineBeamSweep 7s ease-in-out 2.8s infinite reverse;
}

/* Dust field */
.ve-cine-dustfield {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.55;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 24%, rgba(196, 138, 90, 0.45) 50%, transparent 51%),
    radial-gradient(1px 1px at 42% 18%, rgba(232, 192, 106, 0.4) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 68% 30%, rgba(165, 119, 78, 0.38) 50%, transparent 51%),
    radial-gradient(1px 1px at 82% 58%, rgba(196, 150, 115, 0.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 72%, rgba(232, 192, 106, 0.32) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 55% 78%, rgba(165, 119, 78, 0.32) 50%, transparent 51%),
    radial-gradient(1px 1px at 12% 48%, rgba(232, 192, 106, 0.28) 50%, transparent 51%),
    radial-gradient(1px 1px at 90% 22%, rgba(196, 150, 115, 0.3) 50%, transparent 51%);
  animation: cineDustDrift 12s ease-in-out infinite alternate;
}

.ve-cine-preloader-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  animation: cineStageIn 1.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.ve-cine-logo-stage {
  position: relative;
  width: min(280px, 68vw);
  height: auto;
  min-height: 180px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Architectural frames around logo */
.ve-cine-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(165, 119, 78, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}
.ve-cine-frame-a {
  width: min(240px, 72vw);
  height: min(240px, 72vw);
  margin: calc(min(240px, 72vw) / -2) 0 0 calc(min(240px, 72vw) / -2);
  animation: cineFramePulse 5.5s ease-in-out infinite;
}
.ve-cine-frame-b {
  width: min(196px, 58vw);
  height: min(196px, 58vw);
  margin: calc(min(196px, 58vw) / -2) 0 0 calc(min(196px, 58vw) / -2);
  border-color: rgba(196, 150, 115, 0.28);
  animation: cineFramePulse 5.5s ease-in-out 1s infinite reverse;
}

.ve-cine-logo {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  animation: cineLogoIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.ve-cine-logo-image {
  position: relative;
  z-index: 2;
  width: min(210px, 50vw);
  max-height: 168px;
  object-fit: contain;
  background: transparent !important;
  filter: contrast(1.06) saturate(1.04);
  animation: cineLogoFloat 5.5s ease-in-out infinite;
}
.ve-cine-brand {
  margin: 2px 0 8px;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 5.5vw, 36px);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: lowercase;
  white-space: nowrap;
  text-align: center;
  animation: cineBrandIn 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}
.ve-cine-brand-cv,
.ve-cine-brand-reka {
  color: #5C461A;
  text-shadow: none;
  filter: none;
}
.ve-cine-brand-harmoni {
  color: #C49673;
  text-shadow: none;
  filter: none;
}
.ve-cine-brand-space {
  display: inline-block;
  width: 0.28em;
}
.ve-cine-brand-tagline {
  margin: 0 0 22px;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(10px, 2.2vw, 13px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: lowercase;
  text-align: center;
  color: #3a3a3a;
  white-space: nowrap;
  animation: cineBrandIn 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.ve-cine-logo-mark {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ve-gold) 0%, #c9924a 100%);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(165, 119, 78, 0.25);
  animation: cineLogoBreathe 2.8s ease-in-out infinite;
}
.ve-cine-logo-name {
  color: rgba(70, 62, 33, 0.85);
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.ve-cine-logo-name strong { color: var(--ve-brand-harmoni); font-weight: 900; }

.ve-cine-progress-wrap {
  position: relative;
  width: min(280px, 74vw);
  margin: 0 auto 20px;
  animation: cineBrandIn 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}
.ve-cine-progress-track {
  width: 100%;
  height: 2px;
  background: rgba(92, 70, 26, 0.1);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
  box-shadow: none;
}
.ve-cine-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #8a6238, #c49673, #e0c39a, #c49673);
  background-size: 200% 100%;
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(196, 150, 115, 0.28);
  animation: cineBarShimmer 3.2s linear infinite;
  transition: width 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}
.ve-cine-progress-glow {
  display: none;
}
.ve-cine-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 2px;
}
.ve-cine-pct {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5C461A;
  font-variant-numeric: tabular-nums;
}
.ve-cine-tagline-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0;
  animation: cineBrandIn 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}
.ve-cine-tagline {
  color: rgba(70, 62, 33, 0.72);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.45;
  text-align: center;
  max-width: min(420px, 90vw);
  text-shadow: none;
  filter: none;
}
.ve-cine-tagline-id {
  color: #5C461A;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.ve-cine-tagline-en {
  color: #C49673;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.ve-cine-load-label {
  margin: 0;
  color: rgba(92, 70, 26, 0.45);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}
.ve-cine-dots::after {
  content: '...';
  display: inline-block;
  min-width: 1.4em;
  letter-spacing: 0.08em;
  animation: cineDotsPulse 1.2s ease-in-out infinite;
}

/* Soft curtain exit + gentle fade */
.ve-cine-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
  background: #ffffff;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: none;
  border: 0;
  pointer-events: none;
  will-change: transform;
}
.ve-cine-curtain-left {
  left: 0;
}
.ve-cine-curtain-right {
  right: 0;
}
.ve-cinematic-preloader.ve-cine-exiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ve-cinematic-preloader.ve-cine-exiting .ve-cine-curtain {
  z-index: 6;
}
.ve-cinematic-preloader.ve-cine-exiting .ve-cine-curtain-left {
  transform: translateX(-105%);
}
.ve-cinematic-preloader.ve-cine-exiting .ve-cine-curtain-right {
  transform: translateX(105%);
}
.ve-cinematic-preloader.ve-cine-exiting .ve-cine-preloader-inner {
  opacity: 0;
  transform: scale(0.985) translateY(-6px);
  filter: blur(4px);
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.35s ease;
}
.ve-cinematic-preloader.ve-cine-exiting .ve-cine-atmosphere {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ve-cinematic-preloader.ve-cine-exiting .ve-cine-frame {
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* --- Navbar: soft reveal after preloader --- */
.page-home.hero-intro-pending .ve-header {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}
.page-home.hero-intro-active .ve-header,
.page-home.hero-intro-complete .ve-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Hero cinematic base --- */
.ve-hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2414 0%, var(--ve-dark) 40%, #1a1610 100%);
  padding: 130px 0 72px;
  text-align: center;
}
.ve-hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.ve-hero-bg-parallax {
  position: absolute;
  inset: -8%;
  will-change: transform;
}
.ve-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.12);
  transition: none;
}
.ve-hero-bg-slides {
  position: absolute;
  inset: 0;
}
.ve-hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.25s ease;
  will-change: opacity;
}
.ve-hero-bg-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.ve-hero-bg-kenburns {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(165,119,78,0.08) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.ve-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(26,22,16,0.75) 0%, rgba(70,62,33,0.55) 45%, rgba(26,22,16,0.88) 100%),
    radial-gradient(circle at 70% 25%, rgba(165,119,78,0.12) 0%, transparent 50%);
  opacity: 0;
}
.ve-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.ve-hero-light-sweep {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  transform: translateX(-120%);
  pointer-events: none;
}
.ve-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  box-shadow: inset 0 0 120px rgba(0,0,0,0.5);
  pointer-events: none;
}
.ve-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.ve-hero-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(232, 190, 130, 0.85);
  box-shadow: 0 0 12px rgba(196, 138, 90, 0.65), 0 0 22px rgba(165, 119, 78, 0.35);
  opacity: 0;
  left: calc(3% + var(--p-i) * 5.2%);
  top: calc(8% + (var(--p-i) * 7.1%) % 82%);
  animation: heroParticleFloat 5.5s ease-in-out infinite;
  animation-delay: calc(var(--p-i) * 0.2s);
}
.ve-hero-particle:nth-child(3n) {
  width: 3px;
  height: 3px;
  background: rgba(255, 245, 230, 0.75);
}
.ve-hero-particle:nth-child(4n) {
  width: 7px;
  height: 7px;
}

/* Moving geometric / spark graphics */
.ve-hero-gfx {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}
.ve-hero-intro-complete .ve-hero-gfx {
  opacity: 1;
  transition: opacity 0.8s ease;
}
.ve-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(226, 176, 137, 0.28);
  box-shadow: 0 0 24px rgba(165, 119, 78, 0.12), inset 0 0 24px rgba(165, 119, 78, 0.08);
}
.ve-hero-ring::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 220, 170, 0.9);
  box-shadow: 0 0 14px rgba(255, 200, 120, 0.8);
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
}
.ve-hero-ring-a {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  left: -8%;
  top: 12%;
  animation: heroRingSpin 28s linear infinite;
}
.ve-hero-ring-b {
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  right: -4%;
  bottom: 18%;
  border-color: rgba(255, 245, 230, 0.18);
  animation: heroRingSpinRev 36s linear infinite;
}
.ve-hero-ring-c {
  width: min(160px, 28vw);
  height: min(160px, 28vw);
  left: 62%;
  top: 22%;
  border-style: dashed;
  border-color: rgba(196, 138, 90, 0.35);
  animation: heroRingSpin 18s linear infinite;
  opacity: 0.7;
}
.ve-hero-float-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 220, 170, 0.55), transparent);
  transform-origin: center;
}
.ve-hero-float-line-a {
  width: min(220px, 40vw);
  left: 10%;
  top: 28%;
  transform: rotate(-18deg);
  animation: heroLineDriftA 9s ease-in-out infinite alternate;
}
.ve-hero-float-line-b {
  width: min(160px, 32vw);
  right: 12%;
  top: 42%;
  transform: rotate(24deg);
  animation: heroLineDriftB 11s ease-in-out infinite alternate;
}
.ve-hero-float-line-c {
  width: min(120px, 26vw);
  left: 48%;
  bottom: 26%;
  transform: rotate(-8deg);
  animation: heroLineDriftA 7s ease-in-out infinite alternate-reverse;
}
.ve-hero-diamond {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 230, 190, 0.55);
  transform: rotate(45deg);
  box-shadow: 0 0 16px rgba(196, 138, 90, 0.55);
}
.ve-hero-diamond-a {
  left: 18%;
  bottom: 30%;
  animation: heroDiamondFloat 8s ease-in-out infinite;
}
.ve-hero-diamond-b {
  right: 20%;
  top: 24%;
  width: 7px;
  height: 7px;
  animation: heroDiamondFloat 10s ease-in-out infinite reverse;
}
.ve-hero-spark {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff8ee;
  box-shadow: 0 0 10px rgba(255, 220, 170, 0.9), 0 0 18px rgba(165, 119, 78, 0.5);
  left: calc(6% + var(--s-i) * 7.5%);
  top: calc(12% + (var(--s-i) * 9.3%) % 70%);
  animation: heroSparkTwinkle 2.8s ease-in-out infinite;
  animation-delay: calc(var(--s-i) * 0.22s);
}
.ve-hero-spark[style*="--s-i:0;"],
.ve-hero-spark[style*="--s-i:3;"],
.ve-hero-spark[style*="--s-i:6;"],
.ve-hero-spark[style*="--s-i:9;"] {
  width: 3px;
  height: 3px;
}
.ve-hero-scan {
  position: absolute;
  left: -10%;
  right: -10%;
  height: 18%;
  top: -20%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 220, 170, 0.045) 45%,
    rgba(255, 245, 230, 0.08) 50%,
    rgba(255, 220, 170, 0.045) 55%,
    transparent 100%
  );
  animation: heroScanSweep 7.5s ease-in-out infinite;
  mix-blend-mode: screen;
}
.ve-hero-accent-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ve-gold), transparent);
  z-index: 4;
  opacity: 0;
}
.ve-hero-accent-line-top { top: 18%; width: min(400px, 60vw); }
.ve-hero-accent-line-bottom { bottom: 22%; width: min(280px, 45vw); }

.ve-hero-inner {
  position: relative;
  z-index: 5;
}
.ve-hero-content-cinematic {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

/* Content hidden until AFTER meteor atmosphere phase — no blur (GPU-friendly) */
.ve-hero-cinematic [data-intro] {
  opacity: 0;
  transform: translateY(18px);
  filter: none;
}
.ve-hero-cinematic .ve-hero-title-cinematic {
  opacity: 0;
  filter: none;
  transform: none;
}
.ve-hero-cinematic .ve-hero-title-cinematic .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  filter: none;
}
.ve-hero-cinematic .ve-hero-scroll-cinematic {
  opacity: 0;
}

/* --- Phase 1: atmosphere (BG + meteors) — NO headline yet --- */
.ve-hero-intro-started .ve-hero-bg {
  animation: heroKenBurns 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ve-hero-intro-started .ve-hero-overlay {
  animation: heroOverlayIn 0.7s ease forwards;
}
.ve-hero-intro-started .ve-hero-grid {
  animation: heroGridIn 0.8s ease 0.08s forwards;
}
.ve-hero-intro-started .ve-hero-light-sweep {
  animation: heroLightSweep 1s ease 0.12s forwards;
}
.ve-hero-intro-started .ve-hero-particle {
  animation: heroParticleIn 0.5s ease forwards;
}
.ve-hero-intro-started .ve-hero-accent-line {
  animation: heroAccentDraw 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

/* --- Phase 2: full beranda content (after meteors) --- */
.ve-hero-intro-content .ve-hero-title-cinematic {
  opacity: 1;
}
.ve-hero-intro-content [data-intro="badge"] {
  animation: heroBadgeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}
.ve-hero-intro-content .hero-word {
  animation: heroWordIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.12s + var(--word-i) * 0.05s);
}
.ve-hero-intro-content [data-intro="subtitle"] {
  animation: heroSubtitleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.ve-hero-intro-content [data-intro="cta"] {
  animation: heroCtaIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
.ve-hero-intro-content [data-intro="stats"] {
  animation: heroStatsIn 0.45s ease 0.7s forwards;
}
.ve-hero-intro-content [data-intro="scroll"] {
  animation: heroScrollIn 0.4s ease 0.85s forwards;
}
.ve-hero-intro-content .ve-hero-title-shimmer {
  animation: none;
}

/* --- Badge --- */
.ve-hero-badge-cinematic {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(165,119,78,0.45);
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.ve-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ve-gold);
  box-shadow: 0 0 10px var(--ve-gold);
  animation: heroDotPulse 1.5s ease-in-out infinite;
}

/* --- Title --- */
.ve-hero-title-cinematic {
  color: #fff;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(34px, 7.5vw, 62px);
  line-height: 1.12;
  margin: 0 0 22px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.ve-hero-title-cinematic .hero-word-accent {
  background: linear-gradient(135deg, #fff 30%, var(--ve-gold2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ve-hero-title-shimmer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(165,119,78,0.8), transparent);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

/* --- Subtitle --- */
.ve-hero-subtitle-cinematic {
  color: rgba(255,255,255,0.82);
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

/* --- CTA --- */
.ve-hero-cta-wrap { margin-bottom: 36px; }
.ve-hero-cta-cinematic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ve-gold) 0%, #c9924a 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 17px 42px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(165, 119, 78, 0.4);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.ve-hero-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ve-hero-cta-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.ve-hero-cta-cinematic:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(165, 119, 78, 0.55);
  color: #fff;
}
.ve-hero-cta-cinematic:hover .ve-hero-cta-glow { opacity: 1; }
.ve-hero-ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: heroRipple 0.6s ease-out forwards;
}

/* --- Stats strip --- */
.ve-hero-stats-strip {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 32px;
  backdrop-filter: blur(10px);
}
.ve-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.ve-hero-stat strong {
  color: var(--ve-gold2);
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.ve-hero-stat span {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.ve-hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* --- Scroll indicator --- */
.ve-hero-scroll-cinematic {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.ve-scroll-text {
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.ve-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 11px;
  position: relative;
}
.ve-scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  animation: heroScrollWheel 2s ease-in-out infinite;
}

/* --- Keyframes (cinematic opening) --- */
@keyframes cineStageIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes cineLogoIn {
  from { opacity: 0; transform: scale(0.92) translateY(10px); filter: blur(4px); }
  to { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
@keyframes cineLogoBreathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.45)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 20px 48px rgba(165, 119, 78, 0.35)); }
}
@keyframes veLogoRGlow {
  0%, 100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}
@keyframes veLogoRGlowCine {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}
@keyframes veLogoRGlyphPulse {
  0%, 100% { opacity: 0.72; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.15); }
}
@keyframes veLogoRPulse {
  0%, 100% {
    transform: scale(1);
    filter: contrast(1.18) saturate(1.12) brightness(1.05);
  }
  50% {
    transform: scale(1.03);
    filter: contrast(1.22) saturate(1.16) brightness(1.1);
  }
}
@keyframes cineBrandIn {
  from { opacity: 0; transform: translateY(10px); letter-spacing: 0.28em; filter: blur(3px); }
  to { opacity: 1; transform: translateY(0); letter-spacing: 0.14em; filter: blur(0); }
}
@keyframes cineBrandBreathe {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.035); opacity: 1; }
}
@keyframes cineLogoPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(165, 119, 78, 0.45); }
  50% { box-shadow: 0 12px 50px rgba(165, 119, 78, 0.7); transform: scale(1.03); }
}
@keyframes cineTaglineFade {
  from { opacity: 0; letter-spacing: 0.55em; transform: translateY(10px); }
  to { opacity: 1; letter-spacing: 0.32em; transform: translateY(0); }
}
@keyframes cineAuraSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes cineRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes cineRingSpinRev {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes cineRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}
@keyframes cineOrbFloatA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(36px, 24px, 0) scale(1.12); }
}
@keyframes cineOrbFloatB {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-28px, -18px, 0) scale(1.16); }
}
@keyframes cineOrbFloatC {
  from { transform: translate3d(0, 0, 0); opacity: 0.4; }
  to { transform: translate3d(18px, -22px, 0); opacity: 0.75; }
}
@keyframes cineRaySweep {
  0% { opacity: 0; transform: translateX(-18%) rotate(-18deg); }
  35% { opacity: 0.7; }
  70%, 100% { opacity: 0; transform: translateX(18%) rotate(-18deg); }
}
@keyframes cineDustDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -18px, 0); }
}
@keyframes cineBarShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes cineGlowPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.9); }
  50% { opacity: 0.85; transform: scale(1.08); }
}
@keyframes cineStarTwinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.95; }
}
@keyframes cineHorizonPulse {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50% { opacity: 0.85; transform: translateY(-6px); }
}
@keyframes cinePlanetDriftA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(14px, 18px, 0) scale(1.06); }
}
@keyframes cinePlanetDriftB {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-12px, 10px, 0); }
}
@keyframes cinePlanetDriftC {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(8px, -14px, 0) scale(1.08); }
}
@keyframes cineCometFly {
  0% { opacity: 0; left: -25%; }
  8% { opacity: 1; }
  42% { opacity: 0.85; left: 55%; }
  55%, 100% { opacity: 0; left: 110%; }
}
@keyframes cineGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 48px, 48px 0; }
}
@keyframes cineCoreHalo {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.08); }
}
@keyframes cineLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.015); }
}
@keyframes cineMilkyPulse {
  0%, 100% { opacity: 0.65; transform: rotate(-12deg) translateY(0); }
  50% { opacity: 0.95; transform: rotate(-12deg) translateY(-8px); }
}
@keyframes cineMeteorStreak {
  0% { opacity: 0; transform: translate3d(0, 0, 0) rotate(-34deg); }
  6% { opacity: 1; }
  70% { opacity: 0.95; transform: translate3d(95vw, 58vh, 0) rotate(-34deg); }
  85%, 100% { opacity: 0; transform: translate3d(115vw, 72vh, 0) rotate(-34deg); }
}
@keyframes cineWashPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}
@keyframes cineAxisBreathe {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.7; }
}
@keyframes cineBeamSweep {
  0% { opacity: 0; transform: translateX(-10%) rotate(-14deg); }
  35% { opacity: 0.55; }
  70%, 100% { opacity: 0; transform: translateX(10%) rotate(-14deg); }
}
@keyframes cineFramePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.02); }
}
@keyframes cineDotsPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}
@keyframes heroKenBurns {
  from { opacity: 0; transform: scale(1.12); }
  to { opacity: 0.42; transform: scale(1.05); }
}
@keyframes heroOverlayIn {
  to { opacity: 1; }
}
@keyframes heroGridIn {
  to { opacity: 0.55; }
}
@keyframes heroLightSweep {
  to { transform: translateX(120%); }
}
@keyframes heroParticleIn {
  to { opacity: 0.65; }
}
@keyframes heroParticleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-10px) scale(1.1); opacity: 0.8; }
}
@keyframes heroAccentDraw {
  to { opacity: 1; transform: translateX(-50%) scaleX(1); }
}
@keyframes heroBadgeIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroWordIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSubtitleIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroCtaIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroStatsIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroScrollIn {
  to { opacity: 1; }
}
@keyframes heroDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes heroShimmerPass {
  0% { opacity: 0; transform: translate(-150%, -50%); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(150%, -50%); }
}
@keyframes heroScrollWheel {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}
@keyframes heroRipple {
  to { transform: translate(-50%, -50%) scale(12); opacity: 0; }
}

/* --- Continuous ambient after intro (home) --- */
.ve-hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.ve-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: none;
  opacity: 0;
  mix-blend-mode: normal;
  background: radial-gradient(circle, rgba(165, 119, 78, 0.22) 0%, transparent 70%);
}
.ve-hero-orb-a {
  width: 280px; height: 280px;
  left: 8%; top: 18%;
}
.ve-hero-orb-b {
  width: 220px; height: 220px;
  right: 12%; top: 30%;
}
.ve-hero-orb-c {
  width: 340px; height: 340px;
  left: 40%; bottom: -8%;
}
/* After intro: keep soft static glow — no heavy infinite loops (smooth like other pages) */
.ve-hero-intro-complete .ve-hero-orb-a,
.ve-hero-intro-complete .ve-hero-orb-b,
.ve-hero-intro-complete .ve-hero-orb-c {
  opacity: 0.55;
  animation: none;
}
.ve-hero-light-sweep-delayed {
  opacity: 0.7;
}
.ve-hero-intro-complete .ve-hero-bg {
  animation: none;
  opacity: 0.42;
  transform: scale(1.05);
}
.ve-hero-intro-complete .ve-hero-light-sweep,
.ve-hero-intro-complete .ve-hero-light-sweep-delayed {
  animation: none;
  opacity: 0;
}
.ve-hero-intro-complete .ve-hero-grid {
  animation: none;
  opacity: 0.45;
}
.ve-hero-intro-complete .ve-hero-particle {
  animation: none;
  opacity: 0.45;
}
.ve-hero-intro-complete .ve-hero-gfx {
  opacity: 0.55;
}
/* Keep all intro content visible after loading — replacing animations
   must not drop elements back to the hidden [data-intro] opacity:0 state. */
.ve-hero-intro-complete .ve-hero-title-cinematic,
.ve-hero-intro-complete [data-intro],
.ve-hero-intro-complete .hero-word {
  opacity: 1;
  filter: none;
}
.ve-hero-intro-complete [data-intro="badge"],
.ve-hero-intro-complete [data-intro="subtitle"],
.ve-hero-intro-complete [data-intro="cta"],
.ve-hero-intro-complete [data-intro="stats"],
.ve-hero-intro-complete [data-intro="scroll"],
.ve-hero-intro-complete .hero-word {
  transform: none;
}
.ve-hero-intro-complete .ve-hero-badge-cinematic {
  opacity: 1;
  animation: none;
}
.ve-hero-intro-complete .ve-hero-cta-cinematic {
  opacity: 1;
  animation: none;
}
.ve-hero-ambient-on .ve-hero-bg-parallax,
.ve-hero-ambient-on .ve-page-hero-bg-parallax {
  transition: none;
}
.ve-hero-ambient-on:not(.ve-hero-cinematic) .ve-hero-bg-parallax,
.ve-hero-ambient-on:not(.ve-hero-cinematic) .ve-page-hero-bg-parallax {
  will-change: transform;
}
.ve-hero-ambient-on:not(.ve-hero-cinematic) [data-hero-content],
.ve-hero-ambient-on:not(.ve-hero-cinematic) .ve-page-hero-content {
  will-change: transform;
  transition: transform 0.12s linear;
}
.ve-hero-cinematic.ve-hero-ambient-on .ve-hero-content-cinematic {
  will-change: auto;
  transition: none;
}

/* --- Interactive / cinematic page heroes --- */
.ve-page-hero-live,
.ve-page-hero-cinematic {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 58vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  margin-top: 72px;
  background: linear-gradient(135deg, #2a2414 0%, #1a1610 40%, #14110d 100%);
  text-align: center;
}
.ve-page-hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ve-page-hero-bg-parallax {
  position: absolute;
  inset: -10%;
  will-change: transform;
}
.ve-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.14);
  opacity: 0.48;
  animation: pageHeroKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}
.ve-page-hero-kenburns {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(165,119,78,0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.ve-page-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(165,119,78,0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(255,220,170,0.12) 0%, transparent 40%);
  animation: pageHeroGlowShift 10s ease-in-out infinite alternate;
  pointer-events: none;
}
.ve-page-hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.ve-page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  mix-blend-mode: screen;
  opacity: 0.95;
}
.ve-page-hero-orb-a {
  width: 280px; height: 280px;
  left: 6%; top: 14%;
  background: rgba(165,119,78,0.32);
  animation: heroOrbDriftA 13s ease-in-out infinite alternate;
}
.ve-page-hero-orb-b {
  width: 220px; height: 220px;
  right: 8%; top: 22%;
  background: rgba(255,220,170,0.18);
  animation: heroOrbDriftB 17s ease-in-out infinite alternate;
}
.ve-page-hero-orb-c {
  width: 320px; height: 320px;
  left: 42%; bottom: -18%;
  background: rgba(165,119,78,0.2);
  animation: heroOrbDriftC 15s ease-in-out infinite alternate;
}
.ve-page-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.ve-page-hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(232, 190, 130, 0.85);
  box-shadow: 0 0 12px rgba(196, 138, 90, 0.55), 0 0 20px rgba(165, 119, 78, 0.3);
  left: calc(4% + var(--p-i) * 5.4%);
  top: calc(10% + (var(--p-i) * 7.2%) % 78%);
  animation: heroParticleFloat 5.5s ease-in-out infinite;
  animation-delay: calc(var(--p-i) * 0.18s);
  opacity: 0.75;
}
.ve-page-hero-particle:nth-child(3n) {
  width: 3px;
  height: 3px;
  background: rgba(255, 245, 230, 0.8);
}
.ve-page-hero-particle:nth-child(5n) {
  width: 6px;
  height: 6px;
}
.ve-page-hero-sweep {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.08) 50%, transparent 62%);
  animation: heroLightSweepLoop 9s ease-in-out infinite;
  pointer-events: none;
}
.ve-page-hero-sweep-delayed {
  animation-delay: 4s;
  opacity: 0.7;
}
.ve-page-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 18%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 18%, transparent 78%);
  animation: heroGridPulse 8s ease-in-out infinite;
  pointer-events: none;
}
.ve-page-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  box-shadow: inset 0 0 120px rgba(0,0,0,0.5);
  pointer-events: none;
}
.ve-page-hero-gfx {
  z-index: 3;
  opacity: 1 !important;
}
.ve-page-hero-accent {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ve-gold), transparent);
  z-index: 4;
  opacity: 0.85;
  pointer-events: none;
}
.ve-page-hero-accent-top {
  top: 22%;
  width: min(360px, 55vw);
  animation: pageHeroLinePulse 3.6s ease-in-out infinite;
}
.ve-page-hero-accent-bottom {
  bottom: 18%;
  width: min(240px, 40vw);
  animation: pageHeroLinePulse 4.2s ease-in-out infinite reverse;
}
.ve-page-hero-live .ve-page-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26,22,16,0.72) 0%, rgba(70,62,33,0.48) 45%, rgba(26,22,16,0.9) 100%),
    radial-gradient(circle at 70% 25%, rgba(165,119,78,0.18) 0%, transparent 50%);
}
.ve-page-hero-live .ve-page-hero-content {
  z-index: 5;
  position: relative;
  width: 100%;
}
.ve-page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.ve-page-hero-breadcrumb {
  justify-content: center;
  margin-bottom: 18px;
}
.ve-page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(165,119,78,0.45);
  border-radius: 50px;
  padding: 9px 20px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  backdrop-filter: blur(12px);
  margin-bottom: 22px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  animation: heroBadgeFloat 4.5s ease-in-out infinite;
}
.ve-page-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ve-gold);
  box-shadow: 0 0 10px rgba(212,160,23,0.8);
  animation: heroDotPulse 1.8s ease-in-out infinite;
}
.ve-page-hero-cinematic .ve-page-hero-content h1,
.ve-page-hero-live .ve-page-hero-content h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.ve-page-hero-subtitle {
  color: rgba(255,247,238,0.84);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 640px;
  line-height: 1.7;
  margin: 0 auto 10px;
}
.ve-page-hero-line {
  width: 88px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--ve-gold), transparent);
  transform-origin: center;
  animation: pageHeroLinePulse 3.2s ease-in-out infinite;
}
.ve-page-hero-reveal .ve-breadcrumb,
.ve-page-hero-reveal .ve-page-hero-badge {
  animation: heroBadgeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.ve-page-hero-reveal h1 .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  filter: none;
  animation: heroWordIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.08s + var(--word-i) * 0.05s);
}
.ve-page-hero-reveal .ve-page-hero-subtitle {
  animation: heroSubtitleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* Pastikan judul halaman (Layanan, Portfolio, dll.) selalu tajam — tanpa blur */
.ve-page-hero-live .ve-page-hero-content h1,
.ve-page-hero-cinematic .ve-page-hero-content h1,
.ve-page-hero-reveal h1,
.ve-page-hero-reveal h1 .hero-word {
  filter: none !important;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 767.98px) {
  .ve-page-hero-live,
  .ve-page-hero-cinematic {
    min-height: auto;
    padding: 120px 0 56px;
  }
  .ve-page-hero-accent,
  .ve-page-hero-sweep-delayed,
  .ve-hero-ring-c,
  .ve-hero-scan {
    display: none;
  }
  .ve-page-hero-gfx .ve-hero-spark[style*="--s-i:7;"],
  .ve-page-hero-gfx .ve-hero-spark[style*="--s-i:8;"],
  .ve-page-hero-gfx .ve-hero-spark[style*="--s-i:9;"] {
    display: none;
  }
}

@keyframes heroKenBurnsLoop {
  0% { transform: scale(1.05) translate3d(0, 0, 0); }
  50% { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
  100% { transform: scale(1.1) translate3d(1.2%, 0.8%, 0); }
}
@keyframes heroLightSweepLoop {
  0% { transform: translateX(-130%); }
  45%, 100% { transform: translateX(130%); }
}
@keyframes heroGridPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.7; }
}
@keyframes heroOrbDriftA {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(40px, 28px, 0) scale(1.15); }
}
@keyframes heroOrbDriftB {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-36px, 22px, 0) scale(1.2); }
}
@keyframes heroOrbDriftC {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(24px, -30px, 0) scale(1.1); }
}
@keyframes heroRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes heroRingSpinRev {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes heroLineDriftA {
  0% { opacity: 0.35; transform: translate3d(0, 0, 0) rotate(-18deg); }
  100% { opacity: 0.85; transform: translate3d(28px, -16px, 0) rotate(-12deg); }
}
@keyframes heroLineDriftB {
  0% { opacity: 0.3; transform: translate3d(0, 0, 0) rotate(24deg); }
  100% { opacity: 0.8; transform: translate3d(-22px, 18px, 0) rotate(18deg); }
}
@keyframes heroDiamondFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(45deg); opacity: 0.45; }
  50% { transform: translate3d(12px, -22px, 0) rotate(45deg); opacity: 0.95; }
}
@keyframes heroSparkTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  40% { opacity: 1; transform: scale(1.35); }
  70% { opacity: 0.4; transform: scale(0.9); }
}
@keyframes heroScanSweep {
  0% { top: -22%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { top: 105%; opacity: 0; }
}
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-4px); opacity: 1; }
}
@keyframes heroCtaPulse {
  0%, 100% { box-shadow: 0 10px 36px rgba(165, 119, 78, 0.4); opacity: 1; }
  50% { box-shadow: 0 14px 44px rgba(165, 119, 78, 0.62); opacity: 1; }
}
@keyframes pageHeroKenBurns {
  0% { transform: scale(1.1) translate3d(0, 0, 0); }
  100% { transform: scale(1.22) translate3d(-2%, -1.5%, 0); }
}
@keyframes pageHeroGlowShift {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
@keyframes pageHeroLinePulse {
  0%, 100% { transform: scaleX(1); opacity: 0.85; }
  50% { transform: scaleX(1.35); opacity: 1; }
}

/* ============================================================
   METEOR / LIGHT-STREAK FIELD (architecture cinematic accent)
   ============================================================ */
.ve-meteor-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: normal;
}
.ve-hero-cinematic .ve-meteor-canvas {
  z-index: 4;
  opacity: 0;
  transition: opacity 0.9s ease;
  mix-blend-mode: normal;
}
.ve-hero-cinematic.ve-hero-meteors-on .ve-meteor-canvas {
  opacity: 1;
}
.ve-page-hero-live .ve-meteor-canvas {
  z-index: 4;
  opacity: 1;
}
.ve-page-hero-live .ve-page-hero-content {
  z-index: 5;
}
.ve-page-hero-live .ve-page-hero-overlay {
  z-index: 1;
}
.ve-cta-banner .ve-meteor-canvas {
  z-index: 1;
  opacity: 0.7;
}
.ve-cta-banner .ve-cta-content,
.ve-cta-banner .container {
  position: relative;
  z-index: 2;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .ve-cinematic-preloader,
  .ve-cinematic-preloader *,
  .ve-hero-cinematic *,
  .ve-hero-particle,
  .ve-page-hero-live *,
  .ve-page-hero-particle {
    animation: none !important;
    transition: none !important;
  }
  .ve-cine-atmosphere,
  .ve-cine-orbit,
  .ve-cine-ring,
  .ve-meteor-canvas,
  .ve-hero-gfx,
  .ve-page-hero-gfx {
    display: none !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .ve-hero-bg { opacity: 0.42; transform: scale(1.05); }
  .ve-page-hero-bg { transform: scale(1.05); }
  .ve-hero-cinematic [data-intro],
  .ve-hero-cinematic .hero-word,
  .ve-page-hero-reveal h1 .hero-word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .page-home.hero-intro-pending .ve-header {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

/* --- Mobile --- */
@media (max-width: 767.98px) {
  .ve-hero-cinematic {
    min-height: auto;
    padding: 120px 0 56px;
  }
  .ve-hero-stats-strip {
    gap: 16px;
    padding: 12px 20px;
  }
  .ve-hero-stat strong { font-size: 18px; }
  .ve-hero-stat span { font-size: 9px; }
  .ve-hero-scroll-cinematic { display: none; }
  .ve-hero-accent-line { display: none; }
  .ve-hero-ring-c,
  .ve-hero-scan {
    display: none;
  }
  .ve-hero-ring-a,
  .ve-hero-ring-b {
    opacity: 0.55;
  }
  .ve-hero-spark[style*="--s-i:8;"],
  .ve-hero-spark[style*="--s-i:9;"],
  .ve-hero-spark[style*="--s-i:10;"],
  .ve-hero-spark[style*="--s-i:11;"] {
    display: none;
  }
  .ve-footer-logo-img {
    height: 64px;
  }
  .ve-footer-brand p {
    max-width: 100%;
  }
  .ve-cine-logo-stage {
    width: min(280px, 78vw);
    height: auto;
    margin-bottom: 14px;
  }
  .ve-cine-logo-image { width: min(170px, 48vw); max-height: 140px; }
  .ve-cine-frame-a { width: min(200px, 68vw); height: min(200px, 68vw); margin: calc(min(200px, 68vw) / -2) 0 0 calc(min(200px, 68vw) / -2); }
  .ve-cine-frame-b { width: min(164px, 56vw); height: min(164px, 56vw); margin: calc(min(164px, 56vw) / -2) 0 0 calc(min(164px, 56vw) / -2); }
  .ve-cine-blueprint { opacity: 0.55; }
  .ve-cine-logo-mark { width: 60px; height: 60px; font-size: 24px; }
  .ve-cine-tagline-stack { gap: 5px; margin-bottom: 0; }
  .ve-cine-tagline-id { font-size: 10px; letter-spacing: 0.12em; }
  .ve-cine-tagline-en { font-size: 9px; letter-spacing: 0.12em; }
  .ve-cine-progress-wrap { width: min(240px, 78vw); }
}

/* ============================================================
   VIEWPORT PRECISION — no horizontal scroll / no clipping
   ============================================================ */
html {
  overflow-x: hidden;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
img,
video,
iframe,
canvas,
svg {
  max-width: 100%;
  height: auto;
}
.ve-meteor-canvas,
.ve-hero-bg,
.ve-page-hero-bg {
  height: 100%;
  max-width: none;
}
.container,
.container-fluid {
  max-width: 100%;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row > [class*="col-"] {
  min-width: 0;
}
.ve-header,
.ve-nav-wrap {
  max-width: 100%;
}
.ve-logo {
  flex-shrink: 1;
  min-width: 0;
}
.ve-logo-svg {
  object-fit: contain;
}
.ve-nav-actions {
  flex-shrink: 0;
}
.ve-mobile-menu.open {
  max-height: min(70vh, 640px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ve-hero-cinematic,
.ve-page-hero,
.ve-cta-banner,
.ve-hero-bg-wrap,
.ve-page-hero-bg-wrap {
  overflow: hidden;
  max-width: 100%;
}
.ve-hero-content-cinematic,
.ve-hero-inner {
  width: 100%;
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
.ve-hero-stats-strip {
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
}
.ve-hero-cta-cinematic {
  max-width: 100%;
  box-sizing: border-box;
  padding-left: clamp(18px, 4vw, 42px);
  padding-right: clamp(18px, 4vw, 42px);
}
.ve-section-header h2 {
  font-size: clamp(26px, 4.5vw, 42px);
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.ve-page-hero {
  padding: clamp(110px, 18vw, 160px) 0 clamp(56px, 10vw, 90px);
}
.ve-page-hero-live,
.ve-page-hero-cinematic {
  padding: clamp(120px, 16vw, 150px) 0 clamp(56px, 9vw, 80px);
}
.ve-page-hero-content h1 {
  font-size: clamp(28px, 6vw, 50px);
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.ve-page-hero-cinematic .ve-page-hero-content h1,
.ve-page-hero-live .ve-page-hero-content h1 {
  font-size: clamp(1.85rem, 5.5vw, 3.35rem);
}
.ve-page-hero-subtitle {
  max-width: 640px;
  font-size: clamp(14px, 2.2vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,0.84);
  margin: 0 auto 8px;
}
.ve-breadcrumb {
  flex-wrap: wrap;
  row-gap: 4px;
}
.ve-footer .row > [class*="col-"] {
  min-width: 0;
}
.ve-footer-bottom-inner ul {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}
.ve-footer-contact li {
  word-break: break-word;
}
.whatsapp-container {
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
}
.whatsapp-menu {
  right: 0;
  left: auto;
  width: min(280px, calc(100vw - 28px));
  min-width: 0;
  max-width: calc(100vw - 28px);
  box-sizing: border-box;
}
.whatsapp-menu a {
  word-break: break-word;
}
#projectModal {
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  align-items: flex-start !important;
  padding: 16px !important;
}
#projectModal > div {
  max-width: min(1000px, 100%) !important;
  width: 100% !important;
  margin: auto;
}
#projectModal img,
#modalMainImage {
  max-width: 100% !important;
  height: auto !important;
  max-height: min(60vh, 520px);
  object-fit: contain;
}
.portfolio-filter-bar,
.filter-bar,
.ve-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 100%;
}
iframe.map-iframe,
.ve-contact-map iframe,
.contact-map iframe {
  width: 100% !important;
  max-width: 100%;
  display: block;
}

@media (max-width: 1199.98px) {
  /* Small laptop */
  .ve-nav-wrap { padding: 0 24px; height: 100px; }
  .ve-header.scrolled .ve-nav-wrap { height: 84px; }
  .ve-logo-svg { height: 80px; max-width: min(320px, 40vw); }
  .ve-header.scrolled .ve-logo-svg { height: 66px; }
  .ve-nav ul li a { padding: 8px 12px; font-size: 13px; }
}

@media (max-width: 991.98px) {
  /* Tablet */
  .ve-nav-wrap { height: 92px; }
  .ve-header.scrolled .ve-nav-wrap { height: 78px; }
  .ve-logo-svg { height: 72px; max-width: min(280px, 46vw); }
  .ve-header.scrolled .ve-logo-svg { height: 60px; }
  .ve-section { padding: 72px 0; }
  .ve-mvv-section { padding: 64px 0; }
  .ve-whyus-img-main { height: min(420px, 55vw); min-height: 260px; }
  .ve-about-img-stack { padding-right: 24px; padding-bottom: 40px; }
  .ve-about-ribbon { left: 0; }
  .ve-hero-badge-cinematic {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    max-width: 100%;
  }
  .ve-cta-content h2 {
    font-size: clamp(24px, 5vw, 36px);
  }
}

@media (max-width: 767.98px) {
  /* Phone */
  .ve-nav-wrap {
    padding: 0 14px;
    height: 78px;
  }
  .ve-header.scrolled .ve-nav-wrap { height: 70px; }
  .ve-logo-svg {
    height: 58px;
    max-width: min(220px, 58vw);
  }
  .ve-header.scrolled .ve-logo-svg { height: 50px; }
  .ve-hero-cinematic {
    padding: 96px 12px 48px;
  }
  .ve-hero-content-cinematic {
    padding-left: 4px;
    padding-right: 4px;
  }
  .ve-hero-title-cinematic {
    font-size: clamp(26px, 8.2vw, 36px);
  }
  .ve-hero-subtitle-cinematic {
    font-size: 14px;
    margin-bottom: 28px;
    padding: 0 4px;
  }
  .ve-hero-stats-strip {
    gap: 10px 14px;
    padding: 12px 14px;
    width: 100%;
  }
  .ve-hero-stat-divider { display: none; }
  .ve-hero-stat {
    flex: 1 1 28%;
    min-width: 72px;
  }
  .ve-hero-cta-cinematic {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 20px;
  }
  .ve-section { padding: 56px 0; }
  .ve-section-header { margin-bottom: 36px; padding: 0 4px; }
  .ve-whyus-img-wrap,
  .ve-about-img-stack {
    padding-right: 0;
    padding-bottom: 0;
  }
  .ve-whyus-badge {
    position: static;
    margin-top: 14px;
    display: inline-flex;
    flex-direction: column;
    min-width: 0;
  }
  .ve-about-ribbon {
    position: static;
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 14px;
  }
  .ve-footer-bottom-inner {
    text-align: center;
  }
  .ve-footer-bottom-inner ul {
    justify-content: center;
  }
  .whatsapp-btn {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
  .ve-nl-form {
    width: 100%;
    max-width: 100%;
  }
  .ve-nl-form input {
    width: 100% !important;
    min-width: 0;
  }
  .social-logo-card {
    min-width: 150px !important;
    min-height: 100px !important;
    padding: 12px !important;
  }
}

@media (max-width: 479.98px) {
  /* Small phone */
  .ve-nav-wrap { padding: 0 10px; height: 72px; }
  .ve-header.scrolled .ve-nav-wrap { height: 64px; }
  .ve-logo-svg { height: 52px; max-width: min(200px, 62vw); }
  .ve-header.scrolled .ve-logo-svg { height: 46px; }
  .lang-btn { padding: 5px 8px; font-size: 11px; }
  .ve-hero-stat { flex: 1 1 100%; }
  .ve-hero-stats-strip { flex-direction: column; }
  .ve-page-hero-content h1 { font-size: 26px; }
  .mb-50 { margin-bottom: 32px; }
}

@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

/* ============================================================
   PORTFOLIO — mobile precision
   ============================================================ */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 0 2px;
}
.filter-btn {
  max-width: 100%;
  white-space: nowrap;
  line-height: 1.2;
}
.portfolio-item .portfolio-img > div[style*="position: absolute"] {
  z-index: 2;
}
#projectModal {
  z-index: 100060 !important;
}
#projectModal > div {
  max-width: min(1000px, 100%) !important;
  width: 100% !important;
}
#modalCurrentMedia {
  min-height: 220px !important;
  max-height: none;
}
#modalCurrentMedia img,
#modalCurrentMedia video,
#modalMainImage {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  max-height: min(55vh, 480px) !important;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
}
#modalThumbs {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}
#modalThumbs img,
#modalThumbs button,
#modalThumbs > * {
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .portfolio-img {
    height: min(58vw, 240px) !important;
  }
  .portfolio-overlay {
    opacity: 1 !important;
    padding: 14px !important;
    background: linear-gradient(to top, rgba(13,27,42,0.96) 0%, rgba(13,27,42,0.55) 55%, transparent 100%) !important;
  }
  .portfolio-info {
    transform: none !important;
  }
  .portfolio-info h4,
  .portfolio-overlay h4 {
    font-size: 16px !important;
  }
  .filter-btn {
    font-size: 12px !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
  }
  #projectModal {
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 0 !important;
  }
  #projectModal > div {
    max-width: 100% !important;
    min-height: 100%;
    margin: 0 !important;
  }
  #projectModal > div > button {
    position: fixed !important;
    top: max(8px, env(safe-area-inset-top)) !important;
    right: 10px !important;
    z-index: 100070 !important;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background: rgba(0,0,0,0.55) !important;
    line-height: 1;
  }
  #projectModal > div > div {
    border-radius: 0 !important;
    min-height: 100vh;
    min-height: 100dvh;
  }
  #modalHeader {
    padding: 56px 16px 14px !important;
  }
  #modalTitle {
    font-size: 18px !important;
    line-height: 1.3 !important;
    word-break: break-word;
  }
  #modalDescription {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }
  #modalCurrentMedia {
    min-height: 42vh !important;
  }
  #modalCurrentMedia img,
  #modalCurrentMedia video,
  #modalMainImage {
    max-height: 42vh !important;
  }
  #prevBtn,
  #nextBtn {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }
  #modalThumbs {
    padding: 12px !important;
    gap: 8px !important;
  }
}

@media (max-width: 479.98px) {
  .portfolio-img {
    height: min(62vw, 220px) !important;
  }
  .portfolio-category {
    font-size: 10px !important;
    padding: 3px 8px !important;
  }
  .filter-btn {
    font-size: 11px !important;
    padding: 6px 10px !important;
  }
}
