/* ==========================================================
   ZENITHS WEALTH – Custom Design System
   ========================================================== */

/* ── Google Font Import ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;600;700;800;900&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --zw-primary:   #f0a500;
  --zw-primary-d: #c98a00;
  --zw-dark:      #0d1117;
  --zw-dark-2:    #161b22;
  --zw-dark-3:    #1c2430;
  --zw-text:      #c9d1d9;
  --zw-text-muted:#8b949e;
  --zw-border:    rgba(255,255,255,0.08);
  --zw-radius:    10px;
  --zw-radius-lg: 18px;
  --zw-shadow:    0 8px 32px rgba(0,0,0,0.35);
  --zw-transition:0.3s ease;
  --font-main:    'Inter', 'Outfit', sans-serif;
}

/* ── Base Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font-main); }

/* ============================================================
   LOGO
   ============================================================ */
.zw-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  line-height: 1;
}
.zw-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--zw-primary) 0%, #ff8c00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(240,165,0,0.4);
}
.zw-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}
.zw-logo-accent { color: var(--zw-primary); }

/* ============================================================
   TOP BAR
   ============================================================ */
.zw-topbar {
  background: var(--zw-dark);
  border-bottom: 1px solid var(--zw-border);
  padding: 8px 0;
  font-size: 12.5px;
}
.zw-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.zw-topbar-left, .zw-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.zw-topbar-left span,
.zw-topbar-right a {
  color: var(--zw-text-muted);
  font-weight: 400;
}
.zw-topbar-left i,
.zw-topbar-right i { color: var(--zw-primary); margin-right: 5px; }
.zw-topbar-right a { text-decoration: none; transition: color var(--zw-transition); }
.zw-topbar-right a:hover { color: var(--zw-primary); }
.zw-topbar-register {
  background: var(--zw-primary);
  color: #fff !important;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600 !important;
}
.zw-topbar-register:hover { background: var(--zw-primary-d); color: #fff !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
.zw-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--zw-border);
  transition: background var(--zw-transition), box-shadow var(--zw-transition);
}
.zw-navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(13,17,23,0.98);
  box-shadow: var(--zw-shadow);
  animation: zwSlideDown 0.3s ease-out;
}
@keyframes zwSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.zw-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.zw-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0; padding: 0;
}
.zw-nav-links li a {
  color: var(--zw-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background var(--zw-transition), color var(--zw-transition);
  display: block;
}
.zw-nav-links li a:hover,
.zw-nav-links li a.active {
  color: var(--zw-primary);
  background: rgba(240,165,0,0.08);
}
.zw-nav-btn {
  border: 1px solid var(--zw-border) !important;
  font-weight: 600 !important;
  color: #fff !important;
}
.zw-nav-btn:hover { border-color: var(--zw-primary) !important; color: var(--zw-primary) !important; background: rgba(240,165,0,0.06) !important; }
.zw-nav-btn-primary {
  background: var(--zw-primary) !important;
  border-color: var(--zw-primary) !important;
  color: #0d1117 !important;
  font-weight: 700 !important;
}
.zw-nav-btn-primary:hover { background: var(--zw-primary-d) !important; border-color: var(--zw-primary-d) !important; }

/* Hamburger */
.zw-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.zw-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--zw-transition);
}
.zw-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.zw-hamburger.open span:nth-child(2) { opacity: 0; }
.zw-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   FOOTER
   ============================================================ */
.zw-footer {
  background: var(--zw-dark);
  border-top: 1px solid var(--zw-border);
}
.zw-footer-top { padding: 60px 0 20px; }
.zw-footer-logo { margin-bottom: 16px; }
.zw-footer-desc {
  color: var(--zw-text-muted);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 12px 0 20px;
}
.zw-footer-social { display: flex; gap: 10px; }
.zw-footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--zw-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--zw-text-muted);
  text-decoration: none;
  transition: all var(--zw-transition);
  font-size: 14px;
}
.zw-footer-social a:hover { border-color: var(--zw-primary); color: var(--zw-primary); background: rgba(240,165,0,0.08); }
.zw-footer-heading {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--zw-primary);
  display: inline-block;
}
.zw-footer-links { list-style: none; padding: 0; margin: 0; }
.zw-footer-links li { margin-bottom: 10px; }
.zw-footer-links a {
  color: var(--zw-text-muted);
  text-decoration: none;
  font-size: 13.5px;
  transition: color var(--zw-transition);
}
.zw-footer-links a:hover { color: var(--zw-primary); padding-left: 4px; }
.zw-footer-contact { list-style: none; padding: 0; }
.zw-footer-contact li {
  display: flex;
  gap: 10px;
  color: var(--zw-text-muted);
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.zw-footer-contact i { color: var(--zw-primary); margin-top: 2px; flex-shrink: 0; }
.zw-footer-contact a { color: var(--zw-text-muted); text-decoration: none; }
.zw-footer-contact a:hover { color: var(--zw-primary); }
.zw-footer-hours { color: var(--zw-text-muted); font-size: 12.5px; }
.zw-footer-bottom {
  background: var(--zw-dark-2);
  border-top: 1px solid var(--zw-border);
  padding: 18px 0;
}
.zw-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.zw-footer-bottom p { color: var(--zw-text-muted); font-size: 12.5px; margin: 0; }
.zw-footer-bottom-links { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; flex-wrap: wrap; }
.zw-footer-bottom-links a { color: var(--zw-text-muted); font-size: 12.5px; text-decoration: none; }
.zw-footer-bottom-links a:hover { color: var(--zw-primary); }

/* Scroll Top Button */
.zw-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px; height: 44px;
  background: var(--zw-primary);
  color: #0d1117 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--zw-transition);
  z-index: 999;
  box-shadow: 0 4px 14px rgba(240,165,0,0.4);
}
.zw-scroll-top.visible { opacity: 1; visibility: visible; }
.zw-scroll-top:hover { background: var(--zw-primary-d); transform: translateY(-3px); }

/* ============================================================
   PAGE HERO (for inner pages)
   ============================================================ */
.zw-page-hero {
  background: linear-gradient(135deg, var(--zw-dark) 0%, var(--zw-dark-3) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--zw-border);
}
.zw-page-hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.zw-page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.zw-page-hero h1 span { color: var(--zw-primary); }
.zw-page-hero p {
  color: var(--zw-text-muted);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 20px;
}
.zw-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--zw-text-muted); }
.zw-breadcrumb a { color: var(--zw-primary); text-decoration: none; }
.zw-breadcrumb i { font-size: 10px; }

/* ============================================================
   SECTION UTILITY
   ============================================================ */
.zw-section { padding: 80px 0; }
.zw-section-sm { padding: 50px 0; }
.zw-section-dark { background: var(--zw-dark); }
.zw-section-dark-2 { background: var(--zw-dark-2); }
.zw-section-title { text-align: center; margin-bottom: 50px; }
.zw-section-title h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.zw-section-title h2 span { color: var(--zw-primary); }
.zw-section-title p { color: var(--zw-text-muted); font-size: 16px; max-width: 540px; margin: 0 auto; }
.zw-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--zw-primary), transparent);
  border-radius: 3px;
  margin: 14px auto;
}

/* ============================================================
   CARDS
   ============================================================ */
.zw-card {
  background: var(--zw-dark-2);
  border: 1px solid var(--zw-border);
  border-radius: var(--zw-radius-lg);
  padding: 36px 28px;
  transition: all var(--zw-transition);
  height: 100%;
}
.zw-card:hover { border-color: rgba(240,165,0,0.3); transform: translateY(-4px); box-shadow: var(--zw-shadow); }
.zw-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(240,165,0,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--zw-primary);
  margin-bottom: 20px;
}
.zw-card h3 { color: #fff; font-size: 18px; font-weight: 600; margin: 0 0 10px; }
.zw-card p { color: var(--zw-text-muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.zw-plans-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.zw-plans-row > [class*='col-'] {
  display: flex;
}
.zw-plan {
  background: var(--zw-dark-2);
  border: 1px solid var(--zw-border);
  border-radius: var(--zw-radius-lg);
  overflow: hidden;
  transition: all var(--zw-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.zw-plan:hover { transform: translateY(-6px); box-shadow: var(--zw-shadow); border-color: rgba(240,165,0,0.25); }
.zw-plan.featured { border-color: var(--zw-primary); box-shadow: 0 0 0 1px var(--zw-primary), var(--zw-shadow); }
.zw-plan-header {
  padding: 30px 28px 24px;
  background: linear-gradient(135deg, var(--zw-dark-3), var(--zw-dark-2));
  text-align: center;
  position: relative;
}
.zw-plan.featured .zw-plan-header { background: linear-gradient(135deg, rgba(240,165,0,0.15), var(--zw-dark-2)); }
.zw-plan-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--zw-primary);
  color: #0d1117;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.zw-plan-icon { font-size: 36px; color: var(--zw-primary); margin-bottom: 12px; }
.zw-plan-name { color: #fff; font-size: 20px; font-weight: 700; margin: 0 0 6px; }
.zw-plan-range { color: var(--zw-text-muted); font-size: 13px; }
.zw-plan-roi {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--zw-primary);
  margin: 16px 0 4px;
  line-height: 1;
}
.zw-plan-roi-label { color: var(--zw-text-muted); font-size: 13px; }
.zw-plan-body { padding: 24px 28px 28px; flex-grow: 1; display: flex; flex-direction: column; }
.zw-plan-features { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.zw-plan-features li {
  display: flex; align-items: center; gap: 10px;
  color: var(--zw-text);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--zw-border);
}
.zw-plan-features li:last-child { border-bottom: none; }
.zw-plan-features i { color: var(--zw-primary); font-size: 13px; flex-shrink: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.zw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--zw-transition);
  line-height: 1;
}
.zw-btn-primary { background: var(--zw-primary); color: #0d1117 !important; }
.zw-btn-primary:hover { background: var(--zw-primary-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,165,0,0.35); }
.zw-btn-outline { background: transparent; color: #fff !important; border: 1px solid var(--zw-border); }
.zw-btn-outline:hover { border-color: var(--zw-primary); color: var(--zw-primary) !important; }
.zw-btn-lg { font-size: 16px; padding: 15px 36px; }
.zw-btn-block { width: 100%; justify-content: center; }

/* ============================================================
   FORMS
   ============================================================ */
.zw-form-group { margin-bottom: 20px; }
.zw-form-group label { display: block; color: var(--zw-text); font-size: 13.5px; font-weight: 500; margin-bottom: 8px; }
.zw-form-control {
  width: 100%;
  background: var(--zw-dark-3);
  border: 1px solid var(--zw-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-main);
  transition: border-color var(--zw-transition), box-shadow var(--zw-transition);
  outline: none;
}
.zw-form-control:focus { border-color: var(--zw-primary); box-shadow: 0 0 0 3px rgba(240,165,0,0.12); }
.zw-form-control::placeholder { color: var(--zw-text-muted); }
textarea.zw-form-control { resize: vertical; min-height: 130px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.zw-stats { background: var(--zw-dark-2); border: 1px solid var(--zw-border); border-radius: var(--zw-radius-lg); padding: 36px; }
.zw-stat { text-align: center; }
.zw-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--zw-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.zw-stat-label { color: var(--zw-text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.zw-legal { max-width: 820px; margin: 0 auto; color: var(--zw-text); }
.zw-legal h2 { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 700; color: #fff; margin: 40px 0 14px; }
.zw-legal h3 { font-size: 18px; font-weight: 600; color: var(--zw-primary); margin: 28px 0 10px; }
.zw-legal p { font-size: 15px; line-height: 1.8; color: var(--zw-text-muted); margin-bottom: 14px; }
.zw-legal ul { padding-left: 20px; color: var(--zw-text-muted); font-size: 15px; line-height: 1.8; }
.zw-legal ul li { margin-bottom: 8px; }

/* ============================================================
   TEAM
   ============================================================ */
.zw-team-card {
  background: var(--zw-dark-2);
  border: 1px solid var(--zw-border);
  border-radius: var(--zw-radius-lg);
  overflow: hidden;
  transition: all var(--zw-transition);
}
.zw-team-card:hover { transform: translateY(-5px); border-color: rgba(240,165,0,0.25); box-shadow: var(--zw-shadow); }
.zw-team-img img { width: 100%; height: 240px; object-fit: cover; }
.zw-team-info { padding: 20px; text-align: center; }
.zw-team-name { color: #fff; font-weight: 600; font-size: 16px; margin: 0 0 4px; }
.zw-team-role { color: var(--zw-primary); font-size: 13px; }

/* ============================================================
   CONTACT
   ============================================================ */
.zw-contact-info-card {
  background: var(--zw-dark-2);
  border: 1px solid var(--zw-border);
  border-radius: var(--zw-radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--zw-transition);
}
.zw-contact-info-card:hover { border-color: rgba(240,165,0,0.25); }
.zw-contact-info-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(240,165,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--zw-primary);
}
.zw-contact-info-text h4 { color: #fff; font-size: 15px; font-weight: 600; margin: 0 0 4px; }
.zw-contact-info-text p, .zw-contact-info-text a { color: var(--zw-text-muted); font-size: 13.5px; margin: 0; text-decoration: none; }
.zw-contact-info-text a:hover { color: var(--zw-primary); }

/* ============================================================
   ALERT / NOTICE
   ============================================================ */
.zw-alert {
  background: rgba(240,165,0,0.08);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: var(--zw-radius);
  padding: 16px 20px;
  color: var(--zw-text);
  font-size: 14px;
  margin-bottom: 24px;
}
.zw-alert-success { background: rgba(0,200,83,0.08); border-color: rgba(0,200,83,0.25); }
.zw-alert-error { background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .zw-topbar-left { display: none; }
  .zw-topbar-inner { justify-content: flex-end; }
}

@media (max-width: 767px) {
  .zw-topbar { padding: 0; border-bottom: none; }
  .zw-topbar-right { width: 100%; gap: 10px; padding: 10px 15px; }
  .zw-topbar-right a { flex: 1; text-align: center; justify-content: center; padding: 12px 0; font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; transition: all 0.2s ease; border-radius: 12px; }
  .zw-topbar-right a.zw-topbar-register { background: linear-gradient(135deg, var(--zw-primary) 0%, #ff8c00 100%); color: #0d1117 !important; box-shadow: 0 4px 12px rgba(240,165,0,0.2), inset 0 -3px 0 rgba(0,0,0,0.15); }
  .zw-topbar-right a:not(.zw-topbar-register) { background: linear-gradient(135deg, var(--zw-dark-3) 0%, var(--zw-dark-2) 100%); color: #fff !important; border: none; box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset 0 -3px 0 rgba(0,0,0,0.3); }
  .zw-topbar-right a:not(.zw-topbar-register) i { color: var(--zw-primary); margin-right: 6px; }
  .zw-hamburger { display: flex; }
  .zw-nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(13,17,23,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    border-bottom: 1px solid var(--zw-border);
    display: none;
  }
  .zw-nav-links.open { display: flex; }
  .zw-nav-links li a { padding: 12px 16px; border-radius: 8px; }
  .zw-navbar { position: relative; }
  .zw-hero-slider .item { height: 550px; }
  .zw-hero-slider .carousel-inner { height: 550px; }
  .zw-hero-slider .slide-title { font-size: 30px !important; line-height: 1.3 !important; margin-bottom: 15px !important; }
  .zw-hero-slider .slide-desc { font-size: 15px !important; line-height: 1.6 !important; margin-bottom: 20px !important; }
  .zw-hero-slider .slide-btns .zw-btn { display: flex; margin: 0 0 12px 0 !important; width: 100%; text-align: center; justify-content: center; padding: 12px 0; font-size: 14px; }
  
  .zw-page-hero h1 { font-size: 32px; }
  .zw-page-hero p { font-size: 15px; }
  .zw-section-title h2 { font-size: 28px; }
  .zw-plan-roi { font-size: 34px; }
  .zw-stat-num { font-size: 30px; }
  .zw-footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .zw-page-hero h1 { font-size: 26px; }
  .zw-hero-slider .slide-title { font-size: 26px !important; }
  .zw-hero-slider .slide-desc { font-size: 14px !important; margin-bottom: 15px !important; }
  .zw-section { padding: 50px 0; }
  .zw-btn-lg { padding: 12px 24px; font-size: 15px; }
}

/* ============================================================
   PRELOADER
   ============================================================ */
#zw-preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--zw-dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#zw-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.zw-preloader-content {
  text-align: center;
  width: 280px;
}
.zw-preloader-logo {
  margin-bottom: 40px;
  display: inline-flex;
  transform: scale(1.6);
  animation: zw-pulse 2s infinite ease-in-out;
}
@keyframes zw-pulse {
  0%, 100% { transform: scale(1.6); opacity: 1; }
  50% { transform: scale(1.7); opacity: 0.8; }
}
.zw-preloader-percentage {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1;
}
.zw-preloader-bar-bg {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--zw-border);
}
.zw-preloader-bar-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--zw-primary), #ffae11);
  box-shadow: 0 0 15px rgba(240,165,0,0.4);
  transition: width 0.4s cubic-bezier(0.1, 0.5, 0.5, 1);
}

/* ============================================================
   FLOATING WIDGETS
   ============================================================ */
.zw-floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 55px; height: 55px;
  background-color: #25D366;
  color: #fff !important;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--zw-transition);
}
.zw-floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

.zw-floating-translate {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 999;
}
.zw-translate-btn {
  width: 44px;
  height: 44px;
  background: var(--zw-primary);
  color: #0d1117;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(240,165,0,0.4);
  transition: all var(--zw-transition);
  padding: 0;
}
.zw-translate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240,165,0,0.6);
}
.zw-translate-btn::after {
  display: none !important;
}
.zw-lang-menu {
  background: var(--zw-dark-2);
  border: 1px solid var(--zw-border);
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  min-width: 220px;
}
.zw-lang-search {
  padding: 10px;
  position: sticky;
  top: 0;
  background: var(--zw-dark-2);
  z-index: 10;
  border-bottom: 1px solid var(--zw-border);
  border-radius: 8px 8px 0 0;
}
.zw-lang-search input {
  width: 100%;
  padding: 8px 12px;
  background: var(--zw-dark-3);
  border: 1px solid var(--zw-border);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  outline: none;
}
.zw-lang-search input:focus {
  border-color: var(--zw-primary);
}
.zw-lang-list {
  max-height: 350px;
  overflow-y: auto;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.zw-lang-list::-webkit-scrollbar {
  width: 6px;
}
.zw-lang-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}
.zw-lang-list li a {
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  display: block;
  text-decoration: none;
  transition: background 0.2s;
}
.zw-lang-list li a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--zw-primary);
}

/* Fix Google Translate styling overrides */
.goog-te-combo {
  background: var(--zw-dark-3) !important;
  color: #fff !important;
  border: 1px solid var(--zw-border) !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
  font-family: var(--font-main) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  outline: none !important;
  cursor: pointer !important;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2) !important;
}
.goog-te-gadget {
  color: transparent !important;
  font-size: 0px !important;
}
.goog-logo-link {
  display: none !important;
}
.goog-te-gadget .goog-te-combo {
  margin: 0 !important;
}
body {
  top: 0 !important;
}
.skiptranslate iframe {
  display: none !important;
}

@media (max-width: 767px) {
  .zw-floating-whatsapp {
    width: 44px;
    height: 44px;
    font-size: 24px;
    bottom: 20px;
    left: 20px;
    border-radius: 10px;
  }
  .zw-preloader-content {
    width: 220px;
  }
  .zw-preloader-logo {
    transform: scale(1.2);
    animation: zw-pulse-mobile 2s infinite ease-in-out;
    margin-bottom: 30px;
  }
  .zw-preloader-percentage {
    font-size: 22px;
  }
}

@keyframes zw-pulse-mobile {
  0%, 100% { transform: scale(1.2); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.8; }
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.zw-hero-slider .item {
  height: 650px;
}
.zw-hero-slider .carousel-inner {
  height: 650px;
}
.zw-hero-slider .slide-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  transition-delay: 0.3s;
}
.zw-hero-slider .slide-desc {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  transition-delay: 0.5s;
}
.zw-hero-slider .slide-btns {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  transition-delay: 0.7s;
}
.zw-hero-slider .active .slide-title,
.zw-hero-slider .active .slide-desc,
.zw-hero-slider .active .slide-btns {
  opacity: 1;
  transform: translateY(0);
}
.zw-hero-slider .carousel-control {
  width: 5%;
  background: none;
  text-shadow: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.zw-hero-slider:hover .carousel-control {
  opacity: 0.7;
}
.zw-hero-slider .carousel-control:hover {
  opacity: 1;
}
.zw-hero-slider .carousel-control i {
  font-size: 40px;
}

/* Carousel Fade Effect */
.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}
