/* ============================================================
   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:     #0d1b2a;
  --ve-dark2:    #162032;
  --ve-navy:     #1a2f4b;
  --ve-gold:     #d4a017;
  --ve-gold2:    #e8b84b;
  --ve-light:    #f4f7fb;
  --ve-white:    #ffffff;
  --ve-text:     #4a5568;
  --ve-border:   #e2e8f0;
  --ve-radius:   12px;
  --ve-shadow:   0 8px 30px rgba(13,27,42,0.10);
  --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
   ============================================================ */
.ve-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--ve-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: var(--ve-trans);
}
.ve-header.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(10px);
}
.ve-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
}
/* Logo */
.ve-logo a { display:flex; align-items:center; gap:10px; text-decoration:none; }
.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:#fff; font-weight:600; }
.ve-logo-text strong { color: var(--ve-gold); font-weight:900; }

/* Nav links */
.ve-nav ul { list-style:none; margin:0; padding:0; display:flex; gap:6px; }
.ve-nav ul li { position:relative; }
.ve-nav ul li a,
.ve-nav-link {
  display:block; padding:8px 14px; color:rgba(255,255,255,0.8);
  font-size:14px; font-weight:500; text-decoration:none;
  border-radius:6px; transition:var(--ve-trans); cursor:pointer;
}
.ve-nav ul li a:hover, .ve-nav ul li a.active,
.ve-nav-link:hover, .ve-nav-link.active { color:#fff; background:rgba(212,160,23,0.15); }
.ve-nav ul li a.active, .ve-nav-link.active { color:var(--ve-gold); }

/* Services dropdown icon animation */
.ve-nav-link i,
.ve-nav ul li a i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.ve-nav .has-drop:hover .ve-nav-link i,
.ve-nav .has-drop:hover a i {
  transform: rotate(180deg);
}

/* 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:320px;
  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);
  /* Override `.ve-nav ul { display:flex; }` so dropdown renders vertically */
  display:flex;
  flex-direction:column;
  gap:0;
}
.ve-dropdown li { width:100%; }
.ve-dropdown li a {
  width:100%;
  padding:10px 20px;
  border-radius:0;
  color:rgba(255,255,255,0.7);
  font-size:13px;
  text-transform:uppercase;
  white-space:normal;
}
.ve-dropdown li a:hover { color:#fff; background:rgba(212,160,23,0.12); }

/* CTA button */
.ve-nav-cta .ve-cta-btn {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--ve-gold); color: var(--ve-dark);
  padding:10px 22px; border-radius:8px;
  font-weight:700; font-size:14px; text-decoration:none;
  transition:var(--ve-trans);
}
.ve-cta-btn:hover { background:var(--ve-gold2); transform:translateY(-1px); }

/* Mobile toggle */
.ve-toggler { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.ve-toggler span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:var(--ve-trans); }
.ve-toggler:active { outline:none; box-shadow:none; }
/* Remove click-focus outline/ring; keep keyboard focus visible via :focus-visible */
.ve-toggler:focus { outline:none; box-shadow:none; border:none; }
.ve-toggler:focus:not(:focus-visible) { outline:none; box-shadow:none; border:none; }

/* Mobile menu */
.ve-mobile-menu {
  display:none; background:var(--ve-dark2); padding:16px 20px;
  border-top:1px solid rgba(255,255,255,0.08);
}
.ve-mobile-menu.open { display:block; }
.ve-mobile-menu ul { list-style:none; margin:0; padding:0; }
.ve-mobile-menu ul li a { display:block; padding:12px 8px; color:rgba(255,255,255,0.8); text-decoration:none; border-bottom:1px solid rgba(255,255,255,0.05); }
.ve-mobile-menu ul li:last-child a { border-bottom:none; }

/* ============================================================
   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.65); 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; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.ve-services-section { background: var(--ve-light); }
.ve-services-grid {
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.ve-service-card {
  background:#fff; border-radius:var(--ve-radius);
  padding:36px 30px; transition:var(--ve-trans);
  border:1px solid var(--ve-border);
  position:relative; overflow:hidden;
}
.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:60px; height:60px; background:linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  margin-bottom:22px; font-size:26px; color:var(--ve-gold);
}
.ve-service-card h4 { font-size:18px; font-weight:800; color:var(--ve-dark); margin-bottom:10px; }
.ve-service-card p { font-size:14px; line-height:1.7; margin-bottom:20px; color:var(--ve-text); }
.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); }

/* ============================================================
   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.55); 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; height:100%; display:flex; flex-direction:column; }
.ve-insight-card:hover { transform:translateY(-5px); box-shadow:var(--ve-shadow); }
.ve-insight-img { height:220px; background-size:cover; background-position:center; flex-shrink:0; }
.ve-insight-body { padding:26px; flex:1; display:flex; flex-direction:column; }
.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; flex:1; }
.ve-insight-meta { display:flex; justify-content:space-between; align-items:center; margin-top:auto; }
.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; }

/* Blog card column spacing */
.ve-section .row > .col-12.col-md-6 { margin-bottom: 30px; }
.ve-section .row > .col-12.col-md-6:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .ve-section .row > .col-12.col-md-6:nth-last-child(-n+2) { margin-bottom: 0; }
}

/* ============================================================
   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
   ============================================================ */
.ve-footer { background:var(--ve-dark); padding:80px 0 0; }
.mb-50 { margin-bottom:50px; }

.ve-footer-brand p { font-size:14px; color:rgba(255,255,255,0.5); line-height:1.8; margin:18px 0 24px; }
.ve-footer-logo { display:inline-flex; align-items:center; gap:10px; text-decoration:none; margin-bottom:14px; }

.ve-social { display:flex; gap:10px; }
.ve-social a {
  width:38px; height:38px; border-radius:8px;
  background:rgba(255,255,255,0.06); color:rgba(255,255,255,0.6);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; text-decoration:none; transition:var(--ve-trans);
  border:1px solid rgba(255,255,255,0.08);
}
.ve-social a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

.ve-footer-title { font-size:15px; font-weight:800; color:#fff; margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,0.08); text-transform:uppercase; letter-spacing:1px; }

.ve-footer-links { list-style:none; margin:0; padding:0; }
.ve-footer-links li { margin-bottom:10px; }
.ve-footer-links li a { font-size:14px; color:rgba(255,255,255,0.5); text-decoration:none; transition:var(--ve-trans); display:inline-flex; align-items:center; gap:6px; }
.ve-footer-links li a::before { content:'›'; color:var(--ve-gold); font-size:16px; }
.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(255,255,255,0.5); margin-bottom:12px; display:flex; align-items:flex-start; gap:10px; line-height:1.6; }
.ve-footer-contact li i { color:var(--ve-gold); margin-top:2px; flex-shrink:0; }

.ve-footer-bottom { background:rgba(0,0,0,0.3); border-top:1px solid rgba(255,255,255,0.06); margin-top:20px; padding:22px 0; }
.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:1rem; color:#fff; margin:0; }
.ve-footer-bottom-inner ul { list-style:none; margin:0; padding:0; display:flex; gap:20px; }
.ve-footer-bottom-inner ul li a { font-size:13px; color:rgba(255,255,255,0.35); text-decoration:none; transition:var(--ve-trans); }
.ve-footer-bottom-inner ul li a:hover { color:var(--ve-gold); }

/* ============================================================
   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(2,1fr); }
  .ve-counter-grid { grid-template-columns:repeat(2,1fr); }
  .ve-testi-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:991px) {
  .ve-hero { flex-direction:column; min-height:auto; }
  .ve-hero-left { flex:none; padding:100px 30px 60px; }
  .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; }
}
@media (max-width:767px) {
  .ve-hero-left h1 { font-size:38px; }
  .ve-services-grid, .ve-testi-grid, .ve-counter-grid { grid-template-columns:1fr; }
  .ve-hero-stats { flex-wrap:wrap; gap:16px; }
  .ve-nav-wrap { padding:0 20px; }
  .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-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; padding:18px 22px; cursor:pointer; gap:16px; }
.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 { position:relative; margin-bottom:20px; }

/* Modern Input with Icon */
.ve-input-icon {
  position: relative;
}
.ve-input-icon > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ve-gold);
  font-size: 14px;
  z-index: 1;
  transition: var(--ve-trans);
}
.ve-input-icon input {
  padding-left: 46px !important;
}
.ve-input-icon textarea {
  padding-left: 46px !important;
  padding-top: 14px;
}
.ve-input-icon.ve-textarea-icon > i {
  top: 18px;
  transform: none;
}
.ve-input-icon input:focus ~ i,
.ve-input-icon textarea:focus ~ i {
  color: var(--ve-dark);
}

.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; width: 100%;
}
.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: none; min-height: 180px; height: 180px; }

/* Custom Dropdown */
.ve-custom-dropdown {
  position: relative;
  width: 100%;
}
.ve-dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--ve-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ve-text);
  cursor: pointer;
  transition: var(--ve-trans);
  text-align: left;
  outline: none;
}
.ve-dropdown-trigger:hover {
  border-color: var(--ve-gold);
}
.ve-dropdown-trigger:focus {
  outline: none;
  border-color: var(--ve-gold);
}
.ve-dropdown-trigger.active {
  border-color: var(--ve-gold);
  border-radius: 8px 8px 0 0;
}
.ve-dropdown-trigger.active:focus {
  box-shadow: none;
}
.ve-dropdown-trigger.selected .ve-dropdown-text {
  color: var(--ve-dark);
  font-weight: 500;
}
.ve-dropdown-icon {
  color: var(--ve-gold);
  font-size: 14px;
}
.ve-dropdown-text {
  flex: 1;
  color: #9ca3af;
}
.ve-dropdown-trigger.selected .ve-dropdown-text {
  color: var(--ve-dark);
}
.ve-dropdown-arrow {
  color: #9ca3af;
  font-size: 12px;
  transition: var(--ve-trans);
}
.ve-dropdown-trigger.active .ve-dropdown-arrow {
  transform: rotate(180deg);
  color: var(--ve-gold);
}

/* Dropdown Options */
.ve-dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--ve-gold);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 100;
  overflow: hidden;
}
.ve-dropdown-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  width: 100%;
  background: transparent;
  border: none;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ve-dark);
  cursor: pointer;
  transition: var(--ve-trans);
  text-align: left;
}
.ve-dropdown-option:hover {
  background: rgba(212,160,23,0.08);
}
.ve-dropdown-option.selected {
  background: rgba(212,160,23,0.12);
  color: var(--ve-dark);
}
.ve-option-icon {
  color: var(--ve-gold);
  font-size: 14px;
  width: 18px;
  text-align: center;
}
.ve-option-text {
  flex: 1;
}
.ve-option-check {
  color: var(--ve-gold);
  font-size: 12px;
}

/* Submit Button */
.ve-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
  color: var(--ve-dark);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: var(--ve-trans);
  box-shadow: 0 4px 15px rgba(212,160,23,0.3);
  align-self: flex-end;
}
.ve-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,160,23,0.4);
}
.ve-btn-submit i {
  transition: transform 0.3s ease;
}
.ve-btn-submit:hover i {
  transform: translateX(4px);
}


.ve-contact-aside { display:flex; flex-direction:column; gap:24px; padding-left:20px; }

/* Why Choose Us Box */
.ve-ca-box { 
  background: var(--ve-dark); 
  border-radius: 16px; 
  padding: 28px; 
  position: relative;
  overflow: hidden;
}
.ve-ca-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
}
.ve-ca-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ve-ca-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ve-dark);
}
.ve-ca-icon-light {
  background: rgba(212, 160, 23, 0.15);
  color: var(--ve-gold);
}
.ve-ca-box h4 { 
  font-size: 18px; 
  font-weight: 800; 
  color: #fff; 
  margin: 0;
}
.ve-ca-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:16px; }
.ve-ca-list li { 
  display: flex; 
  align-items: flex-start; 
  gap: 14px;
}
.ve-ca-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(212, 160, 23, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--ve-gold);
  margin-top: 2px;
}
.ve-ca-item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ve-ca-item-content strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.ve-ca-item-content span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* Working Hours Box */
.ve-ca-hours { 
  background: var(--ve-light); 
  border-radius: 16px; 
  padding: 28px; 
  border: 1px solid var(--ve-border);
}
.ve-ca-hours h5 { 
  font-size: 18px; 
  font-weight: 800; 
  color: var(--ve-dark); 
  margin: 0;
}
.ve-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.ve-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--ve-border);
}
.ve-hours-item.ve-hours-closed {
  background: rgba(220, 53, 69, 0.05);
  border-color: rgba(220, 53, 69, 0.15);
}
.ve-hours-day {
  font-size: 14px;
  font-weight: 600;
  color: var(--ve-dark);
}
.ve-hours-time {
  font-size: 14px;
  font-weight: 700;
  color: var(--ve-gold);
}
.ve-hours-closed .ve-hours-time {
  color: #dc3545;
}
.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; justify-content:center; flex-wrap:wrap; }
.ve-pagination a { width:44px; height:44px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; text-decoration:none; background:#fff; 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); box-shadow:0 4px 12px rgba(212,160,23,0.3); }
.ve-pagination a[aria-label] { width:auto; padding:0 16px; }
.ve-section { padding:80px 0; }

.ve-sidebar { position:sticky; top:90px; }
.ve-sidebar-widget { background:#fff; border-radius:var(--ve-radius); padding:28px; margin-bottom:28px; border:1px solid var(--ve-border); box-shadow:0 2px 8px rgba(0,0,0,0.04); }
.ve-sidebar-widget:last-child { margin-bottom:0; }
.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:block; }
.ve-search-box { display:flex; border:1px solid var(--ve-border); border-radius:8px; overflow:hidden; transition:var(--ve-trans); }
.ve-search-box:focus-within { border-color:var(--ve-gold); box-shadow:0 0 0 3px rgba(212,160,23,0.1); }
.ve-search-box input { flex:1; border:none; padding:14px 16px; font-size:14px; outline:none; font-family:'DM Sans',sans-serif; }
.ve-search-box button { background:var(--ve-gold); border:none; padding:0 20px; cursor:pointer; color:var(--ve-dark); font-size:14px; transition:var(--ve-trans); }
.ve-search-box button:hover { background:#c4970f; }
.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; align-items:center; padding:12px 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); padding-left:4px; }
.ve-cat-list li a span { background:var(--ve-light); border-radius:6px; padding:3px 10px; font-size:12px; font-weight:700; color:var(--ve-dark); }
.ve-recent-post { display:flex; gap:14px; margin-bottom:18px; padding-bottom:18px; 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:70px; height:60px; 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:6px; 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:8px 14px; 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); }

/* Blog sidebar buttons */
.ve-cat-btn { display:flex; justify-content:space-between; align-items:center; width:100%; padding:12px 0; font-size:14px; color:var(--ve-text); text-decoration:none; transition:var(--ve-trans); background:none; border:none; cursor:pointer; text-align:left; font-family:'DM Sans',sans-serif; outline:none; box-shadow:none; }
.ve-cat-btn:focus { outline:none; box-shadow:none; }
.ve-cat-btn:hover { color:var(--ve-gold); padding-left:4px; }
.ve-cat-btn.active { color:var(--ve-gold); font-weight:700; }
.ve-cat-btn span { background:var(--ve-light); border-radius:6px; padding:3px 10px; font-size:12px; font-weight:700; color:var(--ve-dark); }
.ve-cat-btn.active span { background:var(--ve-gold); color:var(--ve-dark); }
.ve-tag-btn { background:var(--ve-light); color:var(--ve-text); border-radius:6px; padding:8px 14px; font-size:12px; font-weight:600; text-decoration:none; transition:var(--ve-trans); border:1px solid var(--ve-border); cursor:pointer; font-family:'DM Sans',sans-serif; outline:none; box-shadow:none; }
.ve-tag-btn:focus { outline:none; box-shadow:none; }
.ve-tag-btn:hover, .ve-tag-btn.active { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Filter info */
.ve-filter-info { display:flex; justify-content:space-between; align-items:center; background:#fff; padding:16px 20px; border-radius:10px; border:1px solid var(--ve-border); margin-bottom:24px; }
.ve-filter-info span { font-size:14px; color:var(--ve-text); }
.ve-btn-clear-filter { background:none; border:1px solid var(--ve-gold); color:var(--ve-gold); padding:8px 16px; border-radius:6px; font-size:13px; font-weight:600; cursor:pointer; transition:var(--ve-trans); font-family:'DM Sans',sans-serif; outline:none; box-shadow:none; }
.ve-btn-clear-filter:focus { outline:none; box-shadow:none; }
.ve-btn-clear-filter:hover { background:var(--ve-gold); color:var(--ve-dark); }

/* No results */
.ve-no-results { text-align:center; padding:60px 20px; background:#fff; border-radius:16px; border:1px solid var(--ve-border); }
.ve-no-results i { font-size:48px; color:var(--ve-border); margin-bottom:20px; }
.ve-no-results h4 { font-size:20px; font-weight:800; color:var(--ve-dark); margin-bottom:8px; }
.ve-no-results p { font-size:14px; color:var(--ve-text); }

/* Pagination buttons */
.ve-pagination button { width:44px; height:44px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; text-decoration:none; background:#fff; color:var(--ve-dark); transition:var(--ve-trans); border:1px solid var(--ve-border); cursor:pointer; font-family:'DM Sans',sans-serif; outline:none; box-shadow:none; }
.ve-pagination button:focus { outline:none; box-shadow:none; }
.ve-pagination button:focus-visible { outline:none; box-shadow:none; }
.ve-pagination button:hover:not(:disabled), .ve-pagination button.active { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); box-shadow:0 4px 12px rgba(212,160,23,0.3); outline:none; }
.ve-pagination button:disabled { opacity:0.5; cursor:not-allowed; }
.ve-pagination button[aria-label] { width:auto; padding:0 16px; }

/* 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-dropdown-options {
    position: fixed;
    top: auto;
    left: 20px;
    right: 20px;
    border-radius: 8px;
    border: 1px solid var(--ve-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  }
  .ve-dropdown-trigger.active {
    border-radius: 8px;
  }
  .ve-btn-submit {
    align-self: stretch;
  }
  .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; }

/* Alternative Timeline Process Section */
.ve-process-alt-section {
  background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
  padding: 100px 0;
}
.ve-process-alt-section .ve-section-header h2 { color: #fff; }
.ve-process-alt-section .ve-section-header p { color: rgba(255,255,255,0.7); }

.ve-process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
}
.ve-process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--ve-gold) 0%, rgba(212,160,23,0.2) 100%);
}

.ve-process-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  padding: 0 0 40px 0;
}
.ve-process-timeline-item:last-child {
  padding-bottom: 0;
}

.ve-process-timeline-marker {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(212,160,23,0.4);
  transition: var(--ve-trans);
}
.ve-process-timeline-item:hover .ve-process-timeline-marker {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(212,160,23,0.5);
}
.ve-process-timeline-marker span {
  font-size: 28px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-dark);
}

.ve-process-timeline-content {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ve-radius);
  padding: 28px 32px;
  transition: var(--ve-trans);
}
.ve-process-timeline-item:hover .ve-process-timeline-content {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,160,23,0.3);
}
.ve-process-timeline-content h4 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.ve-process-timeline-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .ve-process-timeline::before {
    left: 30px;
  }
  .ve-process-timeline-marker {
    width: 60px;
    height: 60px;
  }
  .ve-process-timeline-marker span {
    font-size: 22px;
  }
  .ve-process-timeline-item {
    gap: 20px;
  }
  .ve-process-timeline-content {
    padding: 20px 24px;
  }
  .ve-process-timeline-content h4 {
    font-size: 18px;
  }
}

/* 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; padding:18px 0; cursor:pointer; gap:16px; }
.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-contact-aside { display:flex; flex-direction:column; gap:24px; padding-left:30px; }

.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 / 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); }
.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; }
}

/* ============================================================
   SERVICE PAGES - Additional Components
   ============================================================ */

/* Benefit Cards */
.ve-benefit-card {
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 32px;
  border: 1px solid var(--ve-border);
  text-align: center;
  transition: var(--ve-trans);
  height: 100%;
  margin-bottom: 24px;
}
.ve-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ve-shadow);
}
.ve-benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--ve-gold);
}
.ve-benefit-card h5 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 12px;
}
.ve-benefit-card p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.8;
  margin: 0;
}

/* Feature Items */
.ve-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--ve-border);
  margin-bottom: 12px;
  transition: var(--ve-trans);
}
.ve-feature-item:hover {
  border-color: var(--ve-gold);
}
.ve-feature-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ve-dark);
  flex-shrink: 0;
}
.ve-feature-content h6 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 4px;
}
.ve-feature-content p {
  font-size: 13px;
  color: var(--ve-text);
  line-height: 1.6;
  margin: 0;
}

/* Tech Cards */
.ve-tech-card {
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 28px;
  border: 1px solid var(--ve-border);
  height: 100%;
}
.ve-tech-card h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ve-gold);
}
.ve-tech-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ve-tech-list li {
  font-size: 14px;
  color: var(--ve-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--ve-border);
}
.ve-tech-list li:last-child {
  border-bottom: none;
}
.ve-tech-list li i {
  color: var(--ve-gold);
  margin-right: 10px;
}

/* Tech Marquee Animation - Horizontal */
.ve-tech-marquee-section {
  overflow: hidden;
}
.ve-tech-category {
  margin-bottom: 50px;
}
.ve-tech-category:last-child {
  margin-bottom: 0;
}
.ve-tech-category-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ve-gold);
  display: inline-block;
  font-family: 'Nunito', sans-serif;
}
.ve-tech-marquee {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  position: relative;
}
.ve-tech-marquee-row {
  display: flex;
  overflow: visible;
}
.ve-tech-marquee-track {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.ve-tech-marquee-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.ve-tech-marquee-icon:hover {
  transform: scale(1.1);
}
.ve-tech-marquee-name {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ve-dark);
  font-family: 'Nunito', sans-serif;
  text-align: center;
}

@media (max-width: 767px) {
  .ve-tech-category {
    margin-bottom: 40px;
  }
  .ve-tech-marquee {
    gap: 20px;
  }
  .ve-tech-marquee-track {
    gap: 20px;
  }
  .ve-tech-marquee-icon {
    padding: 16px;
  }
}

@media (max-width: 575px) {
  .ve-tech-marquee-track {
    gap: 16px;
  }
  .ve-tech-marquee-icon {
    padding: 12px;
  }
}

/* Benefits Grid */
.ve-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ve-benefit-card-new {
  background: var(--ve-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--ve-trans);
}
.ve-benefit-card-new:hover {
  transform: translateY(-6px);
  box-shadow: var(--ve-shadow);
}
.ve-benefit-icon-new {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--ve-gold);
}
.ve-benefit-card-new h5 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 10px;
}
.ve-benefit-card-new p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 575px) {
  .ve-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Medical Services Grid */
.ve-medical-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ve-medical-service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  border-bottom: 4px solid var(--ve-gold);
  transition: var(--ve-trans);
}
.ve-medical-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.ve-medical-service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ve-medical-service-icon i {
  font-size: 24px;
  color: var(--ve-dark);
}
.ve-medical-service-content h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 8px;
}
.ve-medical-service-content p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .ve-medical-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Delivered Products Grid */
.ve-delivered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ve-delivered-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
}
.ve-delivered-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ve-shadow);
  border-color: var(--ve-gold);
}
.ve-delivered-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ve-delivered-icon i {
  color: var(--ve-dark);
  font-size: 14px;
}
.ve-delivered-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ve-dark);
}

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

@media (max-width: 575px) {
  .ve-delivered-grid {
    grid-template-columns: 1fr;
  }
}

/* Focus Grid New */
.ve-focus-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ve-focus-card {
  background: var(--ve-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--ve-trans);
  border: 1px solid transparent;
}
.ve-focus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ve-shadow);
  border-color: var(--ve-gold);
}
.ve-focus-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--ve-gold);
}
.ve-focus-card h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 10px;
}
.ve-focus-card p {
  font-size: 13px;
  color: var(--ve-text);
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 575px) {
  .ve-focus-grid-new {
    grid-template-columns: 1fr;
  }
}

/* Process Cards */
.ve-process-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.ve-process-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  position: relative;
  transition: var(--ve-trans);
}
.ve-process-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.ve-process-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 12px 0 0 12px;
}
.ve-process-card-num {
  width: 50px;
  height: 50px;
  background: var(--ve-light);
  border: 2px solid var(--ve-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 900;
  color: var(--ve-dark);
  font-family: 'Nunito', sans-serif;
}
.ve-process-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 6px;
}
.ve-process-card p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.6;
  margin: 0;
}
.ve-process-card:nth-child(even) {
  margin-left: 40px;
}

@media (max-width: 767px) {
  .ve-process-card {
    padding: 20px;
    gap: 16px;
  }
  .ve-process-card:nth-child(even) {
    margin-left: 0;
  }
  .ve-process-card-num {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  .ve-process-card h4 {
    font-size: 16px;
  }
}

/* Software Development Process (Horizontal Cards with Gold Top) */
.ve-software-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ve-software-process-item {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: var(--ve-trans);
}
.ve-software-process-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 12px 12px 0 0;
}
.ve-software-process-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.ve-software-process-num {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 18px;
  font-weight: 900;
  color: var(--ve-gold);
  font-family: 'Nunito', sans-serif;
}
.ve-software-process-content h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 8px;
}
.ve-software-process-content p {
  font-size: 13px;
  color: var(--ve-text);
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 575px) {
  .ve-software-process {
    grid-template-columns: 1fr;
  }
}

/* Accounting Finance Process (Vertical Timeline) */
.ve-accounting-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}
.ve-accounting-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--ve-gold) 0%, var(--ve-border) 100%);
  border-radius: 3px;
}
.ve-accounting-timeline-item {
  position: relative;
  padding-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.ve-accounting-timeline-item:last-child {
  padding-bottom: 0;
}
.ve-accounting-timeline-marker {
  position: absolute;
  left: -40px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border: 3px solid var(--ve-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}
.ve-accounting-timeline-marker span {
  font-size: 16px;
  font-weight: 900;
  color: var(--ve-gold);
  font-family: 'Nunito', sans-serif;
}
.ve-accounting-timeline-content {
  background: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-left: 20px;
  transition: var(--ve-trans);
}
.ve-accounting-timeline-content:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}
.ve-accounting-timeline-content h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 8px;
}
.ve-accounting-timeline-content p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 575px) {
  .ve-accounting-timeline {
    padding-left: 30px;
  }
  .ve-accounting-timeline::before {
    left: 18px;
  }
  .ve-accounting-timeline-marker {
    left: -30px;
    width: 40px;
    height: 40px;
  }
  .ve-accounting-timeline-marker span {
    font-size: 14px;
  }
  .ve-accounting-timeline-content {
    padding: 18px 20px;
    margin-left: 12px;
  }
  .ve-accounting-timeline-content h4 {
    font-size: 16px;
  }
}

/* Procurement Process (ZigZag Layout) */
.ve-procurement-zigzag {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.ve-procurement-zigzag-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  transition: var(--ve-trans);
}
.ve-procurement-zigzag-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 16px 0 0 16px;
}
.ve-procurement-zigzag-item:nth-child(odd) {
  margin-left: 0;
}
.ve-procurement-zigzag-item:nth-child(even) {
  margin-left: 60px;
  flex-direction: row-reverse;
}
.ve-procurement-zigzag-item:nth-child(even)::before {
  left: auto;
  right: 0;
  border-radius: 0 16px 16px 0;
}
.ve-procurement-zigzag-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.ve-procurement-zigzag-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 900;
  color: var(--ve-gold);
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}
.ve-procurement-zigzag-content {
  flex: 1;
}
.ve-procurement-zigzag-content h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 8px;
}
.ve-procurement-zigzag-content p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .ve-procurement-zigzag-item {
    padding: 20px 24px;
    gap: 16px;
  }
  .ve-procurement-zigzag-item:nth-child(even) {
    margin-left: 0;
    flex-direction: row;
  }
  .ve-procurement-zigzag-item:nth-child(even)::before {
    left: 0;
    right: auto;
    border-radius: 16px 0 0 16px;
  }
  .ve-procurement-zigzag-num {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  .ve-procurement-zigzag-content h4 {
    font-size: 16px;
  }
}

/* Delivered List */
.ve-delivered-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ve-delivered-list li {
  font-size: 15px;
  color: var(--ve-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--ve-border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ve-delivered-list li:last-child {
  border-bottom: none;
}
.ve-delivered-list li i {
  color: var(--ve-gold);
  font-size: 14px;
}

/* Focus Grid */
.ve-focus-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ve-focus-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
}
.ve-focus-item:hover {
  border-color: var(--ve-gold);
  transform: translateX(5px);
}
.ve-focus-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ve-dark);
  flex-shrink: 0;
}
.ve-focus-content h6 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 2px;
}
.ve-focus-content p {
  font-size: 13px;
  color: var(--ve-text);
  margin: 0;
}

/* Sector Cards */
.ve-sector-card {
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
  height: 100%;
}
.ve-sector-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ve-shadow);
}
.ve-sector-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: var(--ve-gold);
}
.ve-sector-card h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 8px;
}
.ve-sector-card p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.7;
  margin: 0;
}

/* Contact Info */
.ve-contact-info p {
  font-size: 15px;
  color: var(--ve-dark);
  margin-bottom: 8px;
}
.ve-contact-info i {
  color: var(--ve-gold);
  margin-right: 8px;
}
.ve-contact-info a {
  color: var(--ve-text);
  text-decoration: none;
  transition: var(--ve-trans);
}
.ve-contact-info a:hover {
  color: var(--ve-gold);
}

/* Mobile Dropdown */
.ve-mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ve-mobile-dropdown {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0,0,0,0.2);
}
.ve-mobile-dropdown.open {
  display: block;
}
.ve-mobile-dropdown li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.ve-mobile-dropdown li a:hover {
  color: var(--ve-gold);
  background: rgba(212,160,23,0.1);
}

/* Responsive for service pages */
@media(max-width:767px) {
  .ve-services-grid {
    grid-template-columns: 1fr;
  }
  .ve-benefit-card,
  .ve-sector-card {
    margin-bottom: 16px;
  }
}

/* ============================================
   Products Page Styles
   ============================================ */

.ve-product-card {
  background: var(--ve-white);
  border-radius: var(--ve-radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--ve-border);
  height: 100%;
}

.ve-product-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--ve-gold) 0%, #c49b18 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ve-product-icon i {
  font-size: 32px;
  color: var(--ve-dark);
}

.ve-product-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ve-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ve-product-website {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ve-gold);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.ve-product-website:hover {
  color: var(--ve-dark);
}

.ve-product-desc {
  color: var(--ve-body);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.ve-product-details {
  background: var(--ve-white);
  border-radius: var(--ve-radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--ve-border);
}

.ve-product-details h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ve-dark);
  margin-bottom: 1rem;
}

.ve-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.ve-product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 14px;
  color: var(--ve-body);
  border-bottom: 1px solid var(--ve-border);
}

.ve-product-features li:last-child {
  border-bottom: none;
}

.ve-product-features li i {
  color: var(--ve-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.ve-product-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ve-product-who,
.ve-product-benefits {
  font-size: 14px;
  color: var(--ve-body);
}

.ve-product-who strong,
.ve-product-benefits strong {
  color: var(--ve-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.ve-product-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ve-product-benefits ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
}

.ve-product-benefits ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--ve-gold);
  font-weight: bold;
}

.ve-tag-light {
  background: rgba(212,160,23,0.2);
  color: var(--ve-gold);
}

.ve-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Products Page Responsive */
@media (max-width: 991px) {
  .ve-product-card {
    text-align: center;
  }
  
  .ve-product-icon {
    margin-left: auto;
    margin-right: auto;
  }
  
  .ve-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .ve-cta-buttons .ve-btn-ghost {
    margin-left: 0 !important;
  }
}

/* ============================================
   FAQ Accordion Section (Homepage)
   ============================================ */

.ve-faq-section {
  background: linear-gradient(135deg, var(--ve-light) 0%, #f8f9fa 100%);
}

.ve-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ve-faq-item {
  background: var(--ve-white);
  border-radius: var(--ve-radius);
  border: 1px solid var(--ve-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.ve-faq-item:hover {
  border-color: rgba(212,160,23,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.ve-faq-item.open {
  border-color: var(--ve-gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.ve-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
  outline: none;
  box-shadow: none;
}

.ve-faq-header:focus {
  outline: none;
  box-shadow: none;
}

.ve-faq-header:focus-visible {
  outline: none;
  box-shadow: none;
}

.ve-faq-header:hover {
  background: rgba(212,160,23,0.03);
}

.ve-faq-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.ve-faq-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--ve-gold) 0%, #c49b18 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ve-faq-item:hover .ve-faq-icon {
  transform: scale(1.05);
}

.ve-faq-icon i {
  font-size: 18px;
  color: var(--ve-dark);
}

.ve-faq-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-gold);
  min-width: 24px;
}

.ve-faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ve-dark);
  line-height: 1.4;
}

.ve-faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--ve-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ve-faq-toggle i {
  font-size: 12px;
  color: var(--ve-gold);
  transition: transform 0.3s ease;
}

.ve-faq-item.open .ve-faq-toggle {
  background: var(--ve-gold);
}

.ve-faq-item.open .ve-faq-toggle i {
  color: var(--ve-dark);
}

.ve-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.ve-faq-item.open .ve-faq-body {
  max-height: 300px;
}

.ve-faq-body p {
  padding: 0 20px 20px 78px;
  margin: 0;
  font-size: 15px;
  color: var(--ve-body);
  line-height: 1.7;
}

/* FAQ Accordion Responsive */
@media (max-width: 575px) {
  .ve-faq-header {
    padding: 14px 16px;
  }
  
  .ve-faq-header-left {
    gap: 12px;
  }
  
  .ve-faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
  }
  
  .ve-faq-icon i {
    font-size: 16px;
  }
  
  .ve-faq-num {
    display: none;
  }
  
  .ve-faq-question {
    font-size: 14px;
  }
  
  .ve-faq-body p {
    padding: 0 16px 16px 16px;
    font-size: 14px;
  }
}

/* =========================================
   Global Offices Section - Symmetric Design
   ========================================= */
.ve-offices-section {
  background: var(--ve-light);
  padding: 80px 0;
}

.ve-offices-section .ve-section-header {
  margin-bottom: 50px;
}

.ve-offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.ve-office-card {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--ve-gold);
  border-radius: var(--ve-radius);
  padding: 36px 24px;
  text-align: left;
  transition: var(--ve-trans);
}

.ve-office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.15);
}

.ve-office-flag {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  display: block;
}

.ve-office-country {
  font-size: 20px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 4px;
  text-align: left;
}

.ve-office-city {
  display: block;
  font-size: 13px;
  color: var(--ve-gold);
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.ve-office-details {
  text-align: left;
  border-radius: 12px;
  padding: 20px;
}

.ve-office-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ve-office-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ve-office-item:first-child {
  padding-top: 0;
}

.ve-office-item i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ve-dark);
}

.ve-office-item span,
.ve-office-item a {
  font-size: 13px;
  color: var(--ve-text);
  line-height: 1.6;
  padding-top: 4px;
}

.ve-office-item a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.ve-office-item a:hover {
  color: var(--ve-gold);
}

/* Offices CTA Bar */
.ve-offices-cta {
  background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
  border-radius: var(--ve-radius);
  padding: 40px 60px;
}

.ve-offices-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.ve-cta-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ve-cta-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ve-cta-icon i {
  font-size: 20px;
  color: var(--ve-dark);
}

.ve-cta-text span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.ve-cta-text a {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ve-cta-text a:hover {
  color: var(--ve-gold);
}

.ve-cta-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

/* Global Offices Responsive */
@media (max-width: 767px) {
  .ve-offices-section {
    padding: 60px 0;
  }
  
  .ve-offices-cta {
    padding: 30px 24px;
  }
  
  .ve-offices-cta-inner {
    flex-direction: column;
    gap: 24px;
  }
  
  .ve-cta-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 575px) {
  .ve-offices-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ve-office-card {
    padding: 28px 20px;
  }
  
  .ve-office-flag {
    font-size: 40px;
  }
  
  .ve-office-country {
    font-size: 18px;
  }
  
  .ve-cta-text a {
    font-size: 16px;
  }
  
  .ve-cta-icon {
    width: 48px;
    height: 48px;
  }
  
  .ve-cta-icon i {
    font-size: 16px;
  }
}
