/* ================================================================
   ZovoPay — Master Patch v6
   Fixes: Slider · Logo · Language Dropdown · Exchange Rate · Footer · Inner Pages
   Loaded LAST → highest cascade priority
   ================================================================ */

/* ── 1. HERO SLIDER: Fixed-height container, all slides absolute ── */
.zp-hero-slider {
  position: relative !important;
  height: 520px !important;
  min-height: unset !important;
  overflow: hidden !important;
}
.zp-hslide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.85s ease !important;
  z-index: 1 !important;
  overflow: hidden;
}
/* Must explicitly set position on .active too — v4 patch has position:relative without !important */
.zp-hslide.active {
  position: absolute !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 2 !important;
}

/* Portal cards slide: fill the container */
.zp-hslide[data-slide="0"] .zp-portals-wrap {
  height: 100%;
  justify-content: space-between;
}
.zp-hslide[data-slide="0"] .zp-portal-card {
  flex: 1;
}

/* Slide 2: bank card ad */
.zp-adv-card-slide {
  height: 100%;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 12px 8px !important;
  gap: 14px !important;
}
.zp-bank-card {
  flex-shrink: 0;
}

/* Slide 3: pro ad */
.zp-adv-pro-slide {
  height: 100%;
  min-height: unset !important;
  align-items: stretch !important;
}
.zp-pro-portrait {
  align-items: center !important;
}

/* Slider dots */
.zp-slider-dots {
  position: absolute !important;
  bottom: -28px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;
}

/* ── 2. LOGO: Force silver/white on dark header ── */
.header-section .site-logo img,
.header-section .navbar-brand img,
header .site-logo img {
  filter: brightness(0) invert(1) !important;
  height: 38px !important;
  width: auto !important;
  opacity: 0.95 !important;
}

/* ── 3. LANGUAGE DROPDOWN: Custom JS picker replaces native select ── */
/* Hide nice-select duplicate and the original select (JS replaces with .zp-lang-btn) */
.lang-select .nice-select { display: none !important; }
.lang-select select.langSel { display: none !important; }

/* Also remove nice-select from dashboard top-navs to avoid duplication */
.dash-lang-select .nice-select { display: none !important; }
.dash-lang-select select.langSel {
  display: block !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: rgba(255,255,255,0.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(200,220,255,0.7)'/%3E%3C/svg%3E") no-repeat right 10px center !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 8px !important;
  color: rgba(200,220,255,0.88) !important;
  font-size: 13px !important;
  padding: 7px 28px 7px 12px !important;
  cursor: pointer !important;
  height: 36px !important;
  min-width: 90px !important;
  outline: none !important;
}

/* ── 4. UNIFIED FX SECTION (rates table + calculator) ── */
.zp-fx-section {
  padding: 100px 0;
  background: #030c1a;
  position: relative;
}
.zp-fx-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(29,78,216,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(15,80,40,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.zp-fx-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Two-column grid */
.zp-fx-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 991px) {
  .zp-fx-grid { grid-template-columns: 1fr; }
}

/* ── LEFT: Rates card ── */
.zp-fx-rates-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
}
.zp-fxr-tbl-head {
  display: grid;
  grid-template-columns: 1fr 90px 90px 90px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(160,190,230,0.5);
}
.zp-fxr-list {
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(96,165,250,0.3) transparent;
}
.zp-fxr-list::-webkit-scrollbar { width: 4px; }
.zp-fxr-list::-webkit-scrollbar-track { background: transparent; }
.zp-fxr-list::-webkit-scrollbar-thumb { background: rgba(96,165,250,0.3); border-radius: 2px; }

.zp-fxr-row {
  display: grid;
  grid-template-columns: 1fr 90px 90px 90px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  transition: background 0.18s;
}
.zp-fxr-row:last-child { border-bottom: none; }
.zp-fxr-row:hover { background: rgba(96,165,250,0.06); }
.zp-fxr-row.active {
  background: rgba(96,165,250,0.10) !important;
  border-left: 3px solid #60a5fa;
  padding-left: 17px;
}
.zp-fxr-cur {
  display: flex;
  align-items: center;
  gap: 12px;
}
.zp-fxr-flag { font-size: 22px; line-height: 1; flex-shrink: 0; }
.zp-fxr-code {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #e0eaff;
  line-height: 1.2;
}
.zp-fxr-name {
  display: block;
  font-size: 11px;
  color: rgba(160,190,230,0.55);
  margin-top: 2px;
}
.zp-fxr-buy  { font-size: 13.5px; font-weight: 600; color: #4ade80; text-align: right; }
.zp-fxr-mid  { font-size: 13.5px; font-weight: 700; color: #e0eaff;  text-align: right; }
.zp-fxr-sell { font-size: 13.5px; font-weight: 600; color: #f87171; text-align: right; }
.zp-fxr-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

/* ── RIGHT: Calculator card ── */
.zp-fx-calc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.zp-fxc-head {
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(96,165,250,0.04);
}
.zp-fxc-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 10px 0 4px;
}
.zp-fxc-sub {
  font-size: 12px;
  color: rgba(160,190,230,0.55);
  margin: 0;
  line-height: 1.5;
}
.zp-fxc-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.zp-fxc-field { display: flex; flex-direction: column; gap: 6px; }
.zp-fxc-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(160,190,230,0.6);
}
.zp-fxc-inp-wrap {
  display: flex;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s;
}
.zp-fxc-inp-wrap:focus-within {
  border-color: rgba(96,165,250,0.5);
  background: rgba(96,165,250,0.06);
}
.zp-fxc-inp {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  padding: 13px 14px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #fff !important;
  min-width: 0;
  -moz-appearance: textfield;
}
.zp-fxc-inp::-webkit-outer-spin-button,
.zp-fxc-inp::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.zp-fxc-result {
  font-size: 18px !important;
  color: #4ade80 !important;
}
.zp-fxc-sel {
  background: rgba(255,255,255,0.07) !important;
  border: none !important;
  border-left: 1px solid rgba(255,255,255,0.1) !important;
  padding: 0 14px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #e0eaff !important;
  cursor: pointer !important;
  outline: none !important;
  min-width: 72px !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.zp-fxc-sel option { background: #0d1b3e !important; color: #e0eaff !important; }
.zp-fxc-badge {
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: rgba(96,165,250,0.12);
  border-left: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 800;
  color: #60a5fa;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Swap button */
.zp-fxc-swap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.25);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.22s;
  width: 100%;
}
.zp-fxc-swap:hover {
  background: rgba(96,165,250,0.18);
  border-color: rgba(96,165,250,0.5);
  transform: scale(1.01);
}
.zp-fxc-swap.is-swapped i { transform: rotate(180deg); }
.zp-fxc-swap i { transition: transform 0.3s; font-size: 14px; }

/* Rate info */
.zp-fxc-info {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.zp-fxci-row {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.zp-fxci-row span:first-child {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(160,190,230,0.5);
  font-weight: 700;
}
.zp-fxci-row span:last-child {
  font-size: 12px;
  font-weight: 700;
  color: #e0eaff;
}
.zp-fxci-sep {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.07);
}

/* CTA */
.zp-fxc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, #1b4faa, #3b6fd4);
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(59,111,212,0.4);
  transition: all 0.25s;
  margin-top: 4px;
}
.zp-fxc-cta:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(59,111,212,0.5);
}

/* ── Syria revolution flag (green / white★★★ / black) ── */
.zp-flag-sy {
  display: inline-flex;
  flex-direction: column;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  vertical-align: middle;
  border: 0.5px solid rgba(0,0,0,0.18);
}
.zp-flag-sy-g { flex: 1; background: #007a3d; }
.zp-flag-sy-w {
  flex: 1; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5px; color: #ce1126; line-height: 1; letter-spacing: 0.6px;
}
.zp-flag-sy-b { flex: 1; background: #111; }

/* ── Flag-icons sizing overrides ── */
.zp-fxr-flag.fi,
.zp-cflag-fi.fi {
  width: 22px !important;
  height: 16px !important;
  border-radius: 2px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  background-size: cover !important;
  vertical-align: middle !important;
}
.zp-fxr-flag.fi { width: 26px !important; height: 18px !important; }
.zp-cflag-fi.fi { width: 22px !important; height: 16px !important; }

/* ── Custom currency picker trigger ── */
.zp-fxc-picker-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255,255,255,0.07) !important;
  border: none !important;
  border-left: 1px solid rgba(255,255,255,0.1) !important;
  padding: 0 14px !important;
  height: 100% !important;
  cursor: pointer !important;
  color: #e0eaff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: background 0.18s !important;
  min-width: 80px !important;
}
.zp-fxc-picker-btn:hover { background: rgba(255,255,255,0.13) !important; }
.zp-cflag-em { font-size: 20px !important; line-height: 1 !important; }

/* ── Custom currency picker panel ── */
.zp-fxc-picker-panel {
  position: absolute !important;
  z-index: 999999 !important;
  background: #0d1b3e !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.85) !important;
  padding: 6px !important;
  max-height: 300px !important;
  overflow-y: auto !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(96,165,250,0.3) transparent !important;
  min-width: 230px !important;
}
.zp-fxc-picker-panel::-webkit-scrollbar { width: 4px; }
.zp-fxc-picker-panel::-webkit-scrollbar-thumb { background: rgba(96,165,250,0.3); border-radius: 2px; }

.zp-fxc-picker-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
  border-radius: 9px !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
}
.zp-fxc-picker-item:hover { background: rgba(255,255,255,0.08) !important; }
.zp-fxc-picker-item.zp-active { background: rgba(96,165,250,0.14) !important; }
.zp-cpi-code { font-size: 14px !important; font-weight: 700 !important; color: #e0eaff !important; flex-shrink: 0 !important; }
.zp-cpi-name { font-size: 11.5px !important; color: rgba(160,190,230,0.55) !important; margin-left: auto !important; text-align: right !important; }

/* ── Override input field colours to be dark + readable ── */
.zp-fx-calc-card .zp-fxc-inp-wrap {
  background: #06101f !important;
  border-color: rgba(96,165,250,0.2) !important;
}
.zp-fx-calc-card .zp-fxc-inp-wrap:focus-within {
  border-color: rgba(96,165,250,0.55) !important;
  background: #081428 !important;
}
.zp-fx-calc-card .zp-fxc-inp {
  background: transparent !important;
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  padding: 14px 14px !important;
}
.zp-fx-calc-card .zp-fxc-result { color: #4ade80 !important; }

/* Badge flex for flag + code */
.zp-fxc-badge {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.zp-fxc-badge .zp-flag-sy { width: 22px !important; height: 14px !important; }
.zp-fxc-badge .zp-cflag-em { font-size: 18px !important; }

/* ── 4-OLD. EXCHANGE RATE SECTION FIXES ── */
/* Dark-themed converter select options */
.er-inp-wrap select {
  color: #1b2e5f !important;
  background: rgba(27,46,95,0.06) !important;
  min-width: 110px !important;
  font-size: 12px !important;
}
.er-inp-wrap select option {
  background: #fff !important;
  color: #1b2e5f !important;
}
.er-inp-wrap input[type="number"] {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #1b2e5f !important;
}
.er-conv-result {
  background: linear-gradient(135deg, rgba(27,46,95,0.06), rgba(45,82,153,0.08)) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  margin-top: 16px !important;
  border-top: 2px dashed rgba(27,46,95,0.15) !important;
}
.er-res-num { font-size: 40px !important; font-weight: 900 !important; color: #1b2e5f !important; }
.er-res-cur { font-size: 18px !important; font-weight: 700 !important; color: #7a85a3 !important; }
.er-res-note {
  font-size: 13px !important;
  background: rgba(27,46,95,0.08) !important;
  border: 1px solid rgba(27,46,95,0.15) !important;
  border-radius: 8px !important;
  padding: 6px 14px !important;
  color: #7a85a3 !important;
}

/* ── 5. FOOTER: Complete fix — remove bg_img override ── */
.footer-section,
footer.footer-section {
  background-image: none !important;
  background: #060e1f !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding-top: 80px !important;
  padding-bottom: 0 !important;
}
.footer-section *:not(button):not(.btn--base) {
  color: rgba(160,190,230,0.8) !important;
}
.footer-section a { text-decoration: none !important; transition: color 0.2s !important; }
.footer-section a:hover { color: #fff !important; }

/* Footer logo */
.footer-section .footer-logo { margin-bottom: 20px !important; }
.footer-section .footer-logo img {
  filter: brightness(0) invert(1) !important;
  height: 36px !important;
  width: auto !important;
  opacity: 0.92 !important;
}

/* Footer widget title */
.footer-section .widget-title {
  color: #e0eaff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  margin-bottom: 22px !important;
}

/* Footer links */
.footer-section .footer-list { list-style: none !important; padding: 0 !important; }
.footer-section .footer-list li { margin-bottom: 10px !important; }
.footer-section .footer-list li a {
  font-size: 13.5px !important;
  color: rgba(160,190,230,0.7) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.footer-section .footer-list li a::before {
  content: '›' !important;
  color: #60a5fa !important;
  font-size: 18px !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}
.footer-section .footer-list.logo li { display: flex !important; align-items: center !important; gap: 10px !important; }
.footer-section .footer-list.logo li::before { display: none !important; }
.footer-section .footer-list.logo li a::before { display: none !important; }
.footer-section .footer-list.logo li i { color: #60a5fa !important; font-size: 16px !important; }
.footer-section .footer-content p { font-size: 14px !important; line-height: 1.8 !important; color: rgba(160,190,230,0.65) !important; }

/* Footer inputs (newsletter) */
.footer-section .form--control {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
  color: #fff !important;
  padding: 11px 40px 11px 14px !important;
  font-size: 13px !important;
}
.footer-section .form--control::placeholder { color: rgba(160,190,230,0.4) !important; }
.footer-section .form--control:focus { border-color: rgba(96,165,250,0.4) !important; outline: none !important; }
.footer-section .input-icon { color: rgba(160,190,230,0.4) !important; }
.footer-section .sub-btn,
.footer-section .btn--base.sub-btn {
  background: linear-gradient(135deg, #1b2e5f, #3b6fd4) !important;
  border: none !important;
  border-radius: 10px !important;
  color: #fff !important;
  padding: 12px 24px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: all 0.25s !important;
}
.footer-section .sub-btn:hover { filter: brightness(1.15) !important; transform: translateY(-1px) !important; }

/* App store images */
.footer-section .footer-list.two { list-style: none !important; padding: 0 !important; }
.footer-section .footer-list.two li { margin-bottom: 10px !important; }
.footer-section .app-img img { border-radius: 10px !important; opacity: 0.8 !important; transition: opacity 0.2s !important; }
.footer-section .app-img:hover img { opacity: 1 !important; }

/* Footer bottom / copyright */
.copyright-area {
  background: #030810 !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
  margin-top: 40px !important;
  padding: 18px 0 !important;
}
.copyright-area p,
.copyright-area .copyright-wrapper p {
  font-size: 13px !important;
  color: rgba(110,140,190,0.75) !important;
  margin: 0 !important;
}
.copyright-area a,
.copyright-area .copyright-wrapper a {
  color: #60a5fa !important;
  font-weight: 600 !important;
}
.copyright-area .copyright-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}
.footer-social {
  display: flex !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer-social li a {
  width: 34px !important; height: 34px !important;
  border-radius: 9px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  background: rgba(255,255,255,0.05) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  color: rgba(160,190,230,0.7) !important;
  transition: all 0.2s !important;
}
.footer-social li a::before { display: none !important; }
.footer-social li a:hover {
  background: rgba(96,165,250,0.15) !important;
  border-color: rgba(96,165,250,0.4) !important;
  color: #60a5fa !important;
}

/* ── 6. INNER PAGES (header-section.blade.php) ── */
section.details-page-banner {
  background: linear-gradient(135deg, #030c1a 0%, #0a1628 50%, #061030 100%) !important;
  background-image: none !important;
  padding: 110px 0 90px !important;
  position: relative !important;
}
section.details-page-banner::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at 15% 50%, rgba(59,111,212,0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(29,78,216,0.1) 0%, transparent 40%) !important;
  pointer-events: none !important;
}
.details-page-banner .banner-element { display: none !important; }

.details-banner-wrapper .section-sub-titel,
.details-banner-wrapper span.section-sub-titel {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(96,165,250,0.12) !important;
  border: 1px solid rgba(96,165,250,0.3) !important;
  color: #60a5fa !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 6px 16px !important;
  border-radius: 50px !important;
  margin-bottom: 18px !important;
}
.details-banner-wrapper h2.title,
.details-banner-wrapper .title {
  font-size: clamp(28px, 4vw, 52px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin-bottom: 16px !important;
}
.details-banner-wrapper .sub-title,
.details-banner-wrapper p.sub-title {
  font-size: 16px !important;
  color: rgba(190,215,255,0.8) !important;
  line-height: 1.75 !important;
  margin-bottom: 24px !important;
}
.details-banner-wrapper .process-steps {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 28px !important;
}
.details-banner-wrapper .process-steps .title {
  font-size: 14px !important;
  color: rgba(160,190,230,0.7) !important;
  font-weight: 600 !important;
  margin-bottom: 14px !important;
}
.details-banner-wrapper .process-steps li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  color: rgba(200,220,255,0.85) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
.details-banner-wrapper .process-steps li span {
  color: #60a5fa !important;
  font-weight: 700 !important;
  min-width: 26px !important;
  flex-shrink: 0 !important;
}
.details-banner-wrapper .view-page-btn .btn--base,
.details-banner-wrapper .btn--base {
  background: linear-gradient(135deg, #2d5299, #3b6fd4) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 13px 30px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(59,111,212,0.4) !important;
  transition: all 0.25s !important;
}
.details-banner-wrapper .btn--base:hover {
  filter: brightness(1.1) !important;
  transform: translateY(-2px) !important;
}
.details-banner-img img {
  border-radius: 20px !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5) !important;
  max-width: 100% !important;
}

/* Step demo section */
section.view-demo {
  background: #050f22 !important;
  padding: 80px 0 !important;
}
.view-demo .banner-title .title { color: #ffffff !important; font-weight: 800 !important; }
.view-demo .sub-title h4 { color: rgba(160,190,230,0.8) !important; font-size: 16px !important; font-weight: 400 !important; margin-top: 10px !important; }
.view-demo .demo-element-1 img { border-radius: 16px !important; box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important; }

/* FAQ section on inner pages */
section.faq-section {
  background: #030c1a !important;
  padding: 80px 0 !important;
}
section.faq-section .faq-element { display: none !important; }
section.faq-section .section-title { color: #ffffff !important; }
section.faq-section .section-header p { color: rgba(160,190,230,0.75) !important; }
.faq-item {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important;
  margin-bottom: 12px !important;
  overflow: hidden !important;
  transition: border-color 0.2s !important;
}
.faq-item:hover { border-color: rgba(96,165,250,0.25) !important; }
.faq-title { padding: 18px 22px !important; cursor: pointer !important; }
.faq-title .title { color: #e8f0ff !important; font-size: 15px !important; font-weight: 600 !important; }
.faq-content { padding: 0 22px 18px !important; }
.faq-content p { color: rgba(160,190,230,0.8) !important; font-size: 14px !important; line-height: 1.75 !important; margin: 0 !important; }

/* ── Global: Nice-select options always readable ── */
.nice-select .option { color: #1e293b !important; }
.nice-select .option:hover,
.nice-select .option.selected { background: #1b2e5f !important; color: #fff !important; }

/* ── 7. TICKER: Red/Green alternating arrows ── */
.zp-ti .up { color: #4ade80 !important; font-size: 10px !important; }
.zp-ti .dn { color: #f87171 !important; font-size: 10px !important; }

/* ── 8. HERO TEXT: Hug left edge (ps-0 on the column) ── */
.zp-hero .row > .col-lg-6.ps-0 { padding-left: 0 !important; }

/* ── 11. HERO SLIDER (in index.blade.php) ── */
.zp-slider {
  position: relative !important;
  min-height: 470px !important;
}
.zp-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.75s ease !important;
  z-index: 1 !important;
}
.zp-slide.zs-active {
  position: absolute !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 2 !important;
}
.zp-slide-dots {
  position: absolute !important;
  bottom: -36px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 8px !important;
  z-index: 10 !important;
}
.zp-sdot {
  width: 8px !important; height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.22) !important;
  border: none !important; cursor: pointer !important;
  transition: all 0.3s ease !important; padding: 0 !important;
}
.zp-sdot.zs-active { width: 24px !important; border-radius: 4px !important; background: rgba(96,165,250,0.85) !important; }

/* Slide 2: bank card */
.zp-adslide { display: flex; flex-direction: column; gap: 18px; padding: 16px 0; height: 100%; }
.zp-adslide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(96,165,250,0.1); border: 1px solid rgba(96,165,250,0.25);
  border-radius: 50px; color: #60a5fa; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; padding: 5px 14px; width: fit-content;
}
.zp-bank-card {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #1e40af 100%);
  border-radius: 18px; padding: 24px 26px;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 50px rgba(29,78,216,0.5);
}
.zp-bank-card::before {
  content: ''; position: absolute; width: 220px; height: 220px;
  border-radius: 50%; background: rgba(255,255,255,0.06); top: -60px; right: -50px;
}
.zp-bc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.zp-bc-chip { width: 38px; height: 28px; background: linear-gradient(135deg,#d4a853,#f0c060); border-radius: 5px; display:flex; align-items:center; justify-content:center; }
.zp-bc-chip-inner { width: 26px; height: 18px; border: 1.5px solid rgba(0,0,0,0.2); border-radius: 3px; }
.zp-bc-num { font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 3px; margin-bottom: 18px; }
.zp-bc-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.zp-bc-lbl { font-size: 9px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.zp-bc-val { font-size: 12px; font-weight: 700; color: #fff; }
.zp-bc-net { font-size: 20px; font-weight: 900; color: rgba(255,255,255,0.9); font-style: italic; letter-spacing: -1px; }
.zp-adslide-text h3 { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 6px; }
.zp-adslide-text h3 span { background: linear-gradient(135deg,#60a5fa,#a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.zp-adslide-text p { color: rgba(160,190,230,0.8); font-size: 14px; margin-bottom: 14px; }
.zp-adslide-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,#2d5299,#3b6fd4); color: #fff !important;
  border-radius: 10px; padding: 11px 22px; font-size: 14px; font-weight: 700;
  text-decoration: none !important; transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(59,111,212,0.4); width: fit-content;
}
.zp-adslide-cta:hover { filter: brightness(1.15); transform: translateY(-2px); }
.zp-adslide-stats { display: flex; gap: 28px; }
.zp-ads .n { display: block; font-size: 22px; font-weight: 900; color: #60a5fa; }
.zp-ads .l { font-size: 10px; color: rgba(160,190,230,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }

/* Slide 3: professional */
.zp-proslide { padding: 20px 0; display: flex; flex-direction: column; gap: 18px; height: 100%; }
.zp-prosec-label {
  display: inline-flex; background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.25);
  border-radius: 50px; color: #a78bfa; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; padding: 5px 14px; width: fit-content;
}
.zp-proslide h3 { font-size: 26px; font-weight: 800; color: #fff; line-height: 1.3; }
.zp-proslide h3 span { background: linear-gradient(135deg,#a78bfa,#60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.zp-proslide p { color: rgba(160,190,230,0.8); font-size: 14px; line-height: 1.7; }
.zp-pro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.zp-pro-item {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 11px 13px;
  font-size: 13px; font-weight: 600; color: rgba(200,220,255,0.85);
}
.zp-pro-item i { color: #60a5fa; font-size: 13px; flex-shrink: 0; }

/* ── 12. HERO LAYOUT: Balanced spacing desktop + full mobile responsive ── */

/* Desktop: spread the 5+6 = 11-col row, align tops together */
.zp-hero .row.align-items-center {
  justify-content: space-between !important;
  align-items: flex-start !important;  /* slider top = text top */
}

/* Hero section padding (was relying on .zp-hero-inner which isn't used here) */
.zp-hero > .zp-container {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

/* Ensure the hero container is always full-width */
.zp-hero .zp-container {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ── Tablet (< 992px): stack columns, center text ── */
@media (max-width: 991px) {
  .zp-hero > .zp-container {
    padding-top: 70px !important;
    padding-bottom: 60px !important;
  }
  .zp-hero .row.align-items-center {
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
  }
  .zp-hero .col-lg-5 {
    text-align: center !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }
  .zp-hero .col-lg-6 {
    width: 100% !important;
    max-width: 520px !important;
    margin: 32px auto 40px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    overflow: visible !important;   /* allow float widgets to breathe */
  }
  .zp-slider {
    max-width: 100% !important;
    min-height: 440px !important;
    margin: 0 auto !important;
  }
  /* Floats hidden on mobile by existing rule (max-width:767px display:none) — show on tablet */
  .zp-float { display: block !important; }
  .zp-float-1 {
    top: -18px !important;
    right: 8px !important;
    left: auto !important;
  }
  .zp-hero-tag {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .zp-hero-p {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .zp-btn-group {
    justify-content: center !important;
  }
}

/* ── Mobile (< 576px): compact everything ── */
@media (max-width: 575px) {
  .zp-hero .col-lg-5,
  .zp-hero .col-lg-6 {
    padding-left: 12px !important;
    padding-right: 12px !important;
    max-width: 100% !important;
  }
  .zp-hero-h1 {
    font-size: clamp(30px, 8vw, 40px) !important;
    letter-spacing: -1px !important;
  }
  .zp-hero-p {
    font-size: 15px !important;
  }
  .zp-slider {
    min-height: 350px !important;
  }
  .zp-hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .zp-pro-grid {
    grid-template-columns: 1fr !important;
  }
  .zp-adslide-stats {
    gap: 16px !important;
  }
  .zp-btn-group {
    flex-direction: column !important;
    align-items: center !important;
  }
  .zp-btn {
    width: 100% !important;
    max-width: 260px !important;
    justify-content: center !important;
  }
}

/* ── 13. SLIDER WIDTH + FLOAT WIDGET POSITIONS ── */
.zp-slider {
  max-width: 500px !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}
/* Bank card: don't let it stretch beyond a natural card ratio */
.zp-bank-card {
  max-width: 420px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Float-1 (Latest Transfer): move to TOP-RIGHT so it no longer covers the User Portal card */
.zp-float-1 {
  top: -16px !important;
  right: 10px !important;
  left: auto !important;
  min-width: 195px !important;
}
/* Float-2 (Virtual Card): keep bottom-right but tuck inside the slider box */
.zp-float-2 {
  bottom: 10px !important;
  right: 8px !important;
}

/* ── 14. PROFESSIONAL SPOKESPERSON SLIDE ── */
.zp-perslide {
  display: flex;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #132144 100%);
  border: 1px solid rgba(96,165,250,0.13);
}
.zp-pers-img {
  width: 40%;
  background: linear-gradient(160deg, rgba(29,78,216,0.55) 0%, rgba(10,22,40,0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding: 20px 10px;
  flex-shrink: 0;
}
.zp-pers-img::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(96,165,250,0.25), transparent);
}
.zp-pers-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #3b6fd4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 36px rgba(29,78,216,0.55);
  border: 3px solid rgba(255,255,255,0.14);
}
.zp-pers-avatar i { font-size: 48px; color: rgba(255,255,255,0.92); }
.zp-pers-photo-hint {
  font-size: 10.5px;
  color: rgba(160,190,230,0.45);
  text-align: center;
  padding: 4px 9px;
  border: 1px dashed rgba(160,190,230,0.25);
  border-radius: 6px;
  line-height: 1.4;
}
.zp-pers-content {
  flex: 1;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}
.zp-pers-label {
  display: inline-flex;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 50px;
  color: #a78bfa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  width: fit-content;
}
.zp-pers-content h3 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.zp-pers-content h3 span {
  background: linear-gradient(135deg,#60a5fa,#a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.zp-pers-quote {
  margin: 0;
  padding: 8px 12px;
  border-left: 3px solid rgba(96,165,250,0.4);
  background: rgba(255,255,255,0.03);
  border-radius: 0 8px 8px 0;
  font-size: 12px;
  color: rgba(180,210,255,0.72);
  line-height: 1.6;
  font-style: italic;
}
.zp-pers-sig { margin: 0; }
.zp-pers-name {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(200,220,255,0.75);
}

/* ── 9. NAV SUBMENU HOVER GAP FIX ──
   Bridge the ~12px gap between nav link bottom and sub-menu top (theme: top:66px)
   Extend the li hover zone downward so mouse doesn't lose hover state crossing the gap */
.header-bottom-area .navbar-collapse .main-menu .nav-item.dropdown {
  padding-bottom: 14px !important;
  margin-bottom: -14px !important;
}
/* Pull submenu up to overlap with the extended padding zone */
.header-bottom-area .navbar-collapse .main-menu li .sub-menu {
  top: 52px !important;
}

/* ── 10. CUSTOM LANGUAGE PICKER ── */
/* Trigger button — shown in place of native <select> */
.zp-lang-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 10px !important;
  color: rgba(210,228,255,0.92) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 8px 14px !important;
  height: 38px !important;
  min-width: 100px !important;
  cursor: pointer !important;
  user-select: none !important;
  transition: border-color 0.2s, background 0.2s !important;
}
.zp-lang-btn:hover {
  border-color: rgba(96,165,250,0.55) !important;
  background: rgba(255,255,255,0.14) !important;
}
.zp-lang-btn svg { flex-shrink: 0 !important; opacity: 0.75 !important; }

/* Panel — appended to <body>, fixed position, escapes ALL stacking contexts */
.zp-lang-panel {
  position: absolute !important;
  z-index: 999999 !important;
  background: #0d1b3e !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7) !important;
  padding: 6px !important;
  max-height: 260px !important;
  overflow-y: auto !important;
  min-width: 130px !important;
}
.zp-lang-item {
  padding: 9px 14px !important;
  border-radius: 8px !important;
  color: rgba(200,220,255,0.85) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
  white-space: nowrap !important;
}
.zp-lang-item:hover { background: rgba(255,255,255,0.08) !important; color: #fff !important; }
.zp-lang-item.active {
  background: rgba(96,165,250,0.15) !important;
  color: #60a5fa !important;
  font-weight: 700 !important;
}

/* ============================================================
   SECTION 15 — Premium Security Marquee (zp-secv2)
   ============================================================ */

/* --- Section wrapper --- */
.zp-secv2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #050d1f 0%, #080f22 60%, #050d1f 100%);
  padding: 90px 0 80px;
}

/* --- Ambient orbs --- */
.zp-secv2-orb-1,
.zp-secv2-orb-2,
.zp-secv2-orb-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.zp-secv2-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  top: -120px; left: -100px;
}
.zp-secv2-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  top: 30%; right: -80px;
}
.zp-secv2-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
  bottom: -60px; left: 40%;
}

/* --- Dot grid overlay --- */
.zp-secv2-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* --- Header --- */
.zp-secv2-head {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 52px;
  padding: 0 16px;
}
.zp-secv2-head .sub-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #60a5fa;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 50px;
  padding: 5px 18px;
  margin-bottom: 16px;
}
.zp-secv2-head .title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.zp-secv2-head .title span {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.zp-secv2-head p {
  font-size: 15px;
  color: rgba(180,200,255,0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Marquee strip wrapper --- */
.zp-secv2-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 20px;
}
.zp-secv2-strip:last-of-type { margin-bottom: 0; }

/* Edge fade masks */
.zp-secv2-fade-l,
.zp-secv2-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 3;
  pointer-events: none;
}
.zp-secv2-fade-l {
  left: 0;
  background: linear-gradient(90deg, #050d1f 0%, transparent 100%);
}
.zp-secv2-fade-r {
  right: 0;
  background: linear-gradient(270deg, #050d1f 0%, transparent 100%);
}

/* --- Animated track --- */
.zp-secv2-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 10px 0 14px;
  animation: zpMarqueeL 40s linear infinite;
  will-change: transform;
}
.zp-secv2-track-rev {
  animation: zpMarqueeR 40s linear infinite;
}
.zp-secv2-strip:hover .zp-secv2-track,
.zp-secv2-strip:hover .zp-secv2-track-rev {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes zpMarqueeL {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes zpMarqueeR {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ============================================================
   Glass card — .zp-gc
   Color variants set:  --gc-h (hue)  --gc-bg  --gc-bd
   ============================================================ */
.gc-blue   { --gc-h:220; --gc-bg:rgba(59,130,246,0.10);  --gc-bd:rgba(59,130,246,0.28);  --gc-glow:rgba(59,130,246,0.35); }
.gc-purple { --gc-h:270; --gc-bg:rgba(139,92,246,0.10);  --gc-bd:rgba(139,92,246,0.28);  --gc-glow:rgba(139,92,246,0.35); }
.gc-green  { --gc-h:160; --gc-bg:rgba(16,185,129,0.09);  --gc-bd:rgba(16,185,129,0.26);  --gc-glow:rgba(16,185,129,0.30); }
.gc-teal   { --gc-h:185; --gc-bg:rgba(20,184,166,0.09);  --gc-bd:rgba(20,184,166,0.26);  --gc-glow:rgba(20,184,166,0.30); }
.gc-amber  { --gc-h:38;  --gc-bg:rgba(245,158,11,0.09);  --gc-bd:rgba(245,158,11,0.26);  --gc-glow:rgba(245,158,11,0.30); }
.gc-rose   { --gc-h:345; --gc-bg:rgba(244,63,94,0.09);   --gc-bd:rgba(244,63,94,0.26);   --gc-glow:rgba(244,63,94,0.30); }

.zp-gc {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  padding: 26px 22px 22px;
  border-radius: 18px;
  background: var(--gc-bg);
  border: 1px solid var(--gc-bd);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.zp-gc:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px var(--gc-glow, rgba(59,130,246,0.25));
}

/* Inner glow blob */
.zp-gc-glow-bg {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--gc-glow, rgba(59,130,246,0.25));
  filter: blur(40px);
  top: -30px; right: -30px;
  pointer-events: none;
  z-index: 0;
}

/* Corner decoration lines */
.zp-gc-corner-deco {
  position: absolute;
  top: 0; right: 0;
  width: 50px; height: 50px;
  pointer-events: none;
  z-index: 1;
}
.zp-gc-corner-deco::before,
.zp-gc-corner-deco::after {
  content: '';
  position: absolute;
  background: var(--gc-bd);
}
.zp-gc-corner-deco::before {
  top: 14px; right: 0;
  width: 22px; height: 1px;
}
.zp-gc-corner-deco::after {
  top: 0; right: 14px;
  width: 1px; height: 22px;
}

/* Icon */
.zp-gc-icon-wrap {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--gc-bg);
  border: 1px solid var(--gc-bd);
  margin-bottom: 16px;
}
.zp-gc-icon-wrap i {
  font-size: 20px;
  background: linear-gradient(135deg,
    hsl(var(--gc-h),90%,72%) 0%,
    hsl(var(--gc-h),70%,85%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Title */
.zp-gc-title {
  position: relative;
  z-index: 2;
  font-size: 15px;
  font-weight: 700;
  color: #e2eaff;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Description */
.zp-gc-desc {
  position: relative;
  z-index: 2;
  font-size: 12.5px;
  color: rgba(180,200,255,0.6);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   Stats bar
   ============================================================ */
.zp-secv2-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  padding: 28px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.zp-secv2-stat {
  flex: 1 1 130px;
  text-align: center;
  padding: 12px 16px;
}
.zp-secv2-stat .zp-stat-val {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}
.zp-secv2-stat .zp-stat-lbl {
  font-size: 11.5px;
  color: rgba(180,200,255,0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.zp-secv2-sep {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .zp-secv2 { padding: 60px 0 50px; }
  .zp-gc { width: 220px; padding: 20px 16px 16px; }
  .zp-secv2-fade-l,
  .zp-secv2-fade-r { width: 60px; }
  .zp-secv2-stats { padding: 20px 16px; margin-top: 40px; }
  .zp-secv2-sep { display: none; }
  .zp-secv2-stat .zp-stat-val { font-size: 22px; }
}

/* Stats spans shorthand (.n = value, .l = label) */
.zp-secv2-stat .n {
  display: block;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}
.zp-secv2-stat .l {
  display: block;
  font-size: 11px;
  color: rgba(180,200,255,0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   SECTION 16 — Premium Final CTA (zp-ctav2)
   ============================================================ */

.zp-ctav2 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #060e24 0%, #0a1535 50%, #060e24 100%);
}

/* Background mesh glow */
.zp-ctav2-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37,99,235,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(99,102,241,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Grid overlay */
.zp-ctav2-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Side orbs */
.zp-ctav2-orb {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.zp-ctav2-orb-l {
  background: radial-gradient(circle, rgba(59,130,246,0.14) 0%, transparent 70%);
  left: -100px; top: 50%; transform: translateY(-50%);
}
.zp-ctav2-orb-r {
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
}

/* Eyebrow label */
.zp-ctav2-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(148,191,255,0.7);
  margin-bottom: 20px;
}
.zp-ctav2-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(96,165,250,0.6);
  display: inline-block;
}

/* Headline */
.zp-ctav2-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.zp-ctav2-grad {
  background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.zp-ctav2-sub {
  text-align: center;
  font-size: 16px;
  color: rgba(180,200,255,0.6);
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ── Three-card grid ── */
.zp-ctav2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto 48px;
}

/* Individual card */
.zp-ctav2-card {
  position: relative;
  border-radius: 22px;
  padding: 34px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.zp-ctav2-card:hover {
  transform: translateY(-6px);
}

/* Per-role accent colors */
.zp-ctav2-card-user   { --cc-h:220; --cc-rgb:59,130,246; }
.zp-ctav2-card-agent  { --cc-h:160; --cc-rgb:16,185,129; }
.zp-ctav2-card-merchant { --cc-h:270; --cc-rgb:139,92,246; }

.zp-ctav2-card-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cc-rgb),0.18) 0%, transparent 70%);
  filter: blur(50px);
  top: -60px; right: -40px;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.35s;
}
.zp-ctav2-card:hover .zp-ctav2-card-glow { opacity: 1.4; }

/* Featured card (agent) */
.zp-ctav2-featured {
  background: linear-gradient(145deg, rgba(16,185,129,0.10) 0%, rgba(6,78,59,0.12) 100%);
  border-color: rgba(16,185,129,0.35);
  box-shadow: 0 0 0 1px rgba(16,185,129,0.2), 0 20px 60px rgba(16,185,129,0.12);
  transform: translateY(-8px) scale(1.02);
}
.zp-ctav2-featured:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(16,185,129,0.35), 0 30px 70px rgba(16,185,129,0.20);
}

/* "Most Popular" badge */
.zp-ctav2-badge {
  position: absolute;
  top: 0; left: 50%; transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #10b981, #34d399);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(16,185,129,0.4);
}

/* Icon */
.zp-ctav2-card-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(var(--cc-rgb),0.12);
  border: 1px solid rgba(var(--cc-rgb),0.3);
  margin-bottom: 18px;
}
.zp-ctav2-card-icon i {
  font-size: 22px;
  background: linear-gradient(135deg,
    hsl(var(--cc-h),80%,68%) 0%,
    hsl(var(--cc-h),60%,82%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card body */
.zp-ctav2-card-body {
  position: relative;
  z-index: 2;
  flex: 1;
}
.zp-ctav2-card-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: #e8f0ff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.zp-ctav2-card-body p {
  font-size: 13px;
  color: rgba(180,200,255,0.6);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Perk list */
.zp-ctav2-perks {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zp-ctav2-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(200,220,255,0.75);
}
.zp-ctav2-perks li i {
  font-size: 11px;
  color: hsl(var(--cc-h),70%,65%);
  flex-shrink: 0;
}

/* CTA button inside card */
.zp-ctav2-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  margin-top: auto;
}
.zp-ctav2-btn i { font-size: 12px; transition: transform 0.2s; }
.zp-ctav2-btn:hover i { transform: translateX(4px); }
.zp-ctav2-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }

.zp-ctav2-btn-user {
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(59,130,246,0.35);
}
.zp-ctav2-btn-agent {
  background: linear-gradient(90deg, #059669, #10b981);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(16,185,129,0.35);
}
.zp-ctav2-btn-merchant {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(139,92,246,0.35);
}

/* ── Trust strip ── */
.zp-ctav2-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  font-size: 12.5px;
  color: rgba(180,200,255,0.5);
  margin-top: 8px;
}
.zp-ctav2-trust i { color: rgba(96,165,250,0.7); margin-right: 5px; }
.zp-ctav2-trust-sep { color: rgba(255,255,255,0.2); font-size: 18px; line-height: 1; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .zp-ctav2-cards {
    grid-template-columns: 1fr 1fr;
    max-width: 680px;
  }
  .zp-ctav2-featured { transform: none; grid-column: span 2; }
  .zp-ctav2-featured:hover { transform: translateY(-6px); }
}
@media (max-width: 600px) {
  .zp-ctav2 { padding: 70px 0 60px; }
  .zp-ctav2-cards { grid-template-columns: 1fr; max-width: 420px; }
  .zp-ctav2-featured { grid-column: span 1; transform: none; }
  .zp-ctav2-title { font-size: 30px; }
}

/* ============================================================
   SECTION 17 — Premium Footer (zp-footer)
   ============================================================ */

/* Hide old footer completely */
footer.footer-section,
.copyright-area { display: none !important; }

/* Wrapper */
.zp-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #060c1e 0%, #040a18 100%);
  padding-top: 80px;
}

/* Dot grid */
.zp-footer-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}

/* Ambient orbs */
.zp-footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none; z-index: 0;
}
.zp-footer-orb-l {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  left: -120px; bottom: 60px;
}
.zp-footer-orb-r {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.10) 0%, transparent 70%);
  right: -80px; top: 60px;
}

/* Top gradient line */
.zp-footer-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,0.4) 40%, rgba(139,92,246,0.4) 60%, transparent 100%);
}

/* ── Main grid ── */
.zp-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
  gap: 48px 40px;
  padding-bottom: 60px;
}

/* Column base */
.zp-footer-col {}
.zp-footer-col-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(148,185,255,0.9);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.zp-footer-col-title::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, #3b82f6, #a78bfa);
  border-radius: 2px;
}

/* ── Brand col ── */
.zp-footer-logo { display: inline-block; margin-bottom: 18px; }
.zp-footer-desc {
  font-size: 13.5px;
  color: rgba(180,200,255,0.55);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 320px;
}

/* Contact items */
.zp-footer-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.zp-footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  color: rgba(200,220,255,0.7) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.zp-footer-contact-item:hover { color: #60a5fa !important; }
.zp-footer-contact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  flex-shrink: 0;
}
.zp-footer-contact-icon i { font-size: 12px; color: #60a5fa; }

/* Social icons */
.zp-footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.zp-footer-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(180,210,255,0.7) !important;
  font-size: 14px;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  text-decoration: none !important;
}
.zp-footer-social-btn:hover {
  background: rgba(59,130,246,0.18);
  border-color: rgba(59,130,246,0.4);
  color: #60a5fa !important;
  transform: translateY(-3px);
}

/* ── Links col ── */
.zp-footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.zp-footer-links li a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  color: rgba(180,200,255,0.6) !important;
  text-decoration: none !important;
  padding: 5px 0;
  transition: color 0.2s, gap 0.2s;
}
.zp-footer-links li a:hover { color: #60a5fa !important; gap: 12px; }
.zp-footer-links li a i { font-size: 10px; color: rgba(96,165,250,0.5); transition: color 0.2s; }
.zp-footer-links li a:hover i { color: #60a5fa; }

/* ── App col ── */
.zp-footer-app-sub {
  font-size: 13px; color: rgba(180,200,255,0.55);
  margin-bottom: 16px; line-height: 1.6;
}
.zp-footer-apps { display: flex; flex-direction: column; gap: 10px; }
.zp-footer-app-btn {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  max-width: 160px;
}
.zp-footer-app-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 8px 24px rgba(59,130,246,0.15);
}
.zp-footer-app-btn img { display: block; width: 100%; }

/* ── Newsletter col ── */
.zp-footer-nl-sub {
  font-size: 13px; color: rgba(180,200,255,0.55);
  line-height: 1.65; margin-bottom: 18px;
}
.zp-footer-nl-form { display: flex; flex-direction: column; gap: 10px; }
.zp-footer-nl-field { position: relative; }
.zp-footer-nl-ico {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: rgba(148,185,255,0.4); font-size: 13px; pointer-events: none;
}
.zp-footer-nl-inp {
  width: 100%;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
  padding: 11px 14px 11px 38px !important;
  font-size: 13.5px !important;
  color: #e0eaff !important;
  transition: border-color 0.2s, background 0.2s !important;
  outline: none !important;
  box-shadow: none !important;
}
.zp-footer-nl-inp::placeholder { color: rgba(148,185,255,0.35) !important; }
.zp-footer-nl-inp:focus {
  border-color: rgba(59,130,246,0.5) !important;
  background: rgba(59,130,246,0.06) !important;
}
.zp-footer-nl-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
  color: #fff !important; border: none; outline: none;
  font-size: 14px; font-weight: 700;
  padding: 12px 20px; border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(59,130,246,0.3);
  transition: transform 0.2s, filter 0.2s;
}
.zp-footer-nl-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.zp-footer-nl-btn i { font-size: 13px; }

/* ── Copyright bar ── */
.zp-footer-bottom { position: relative; z-index: 2; }
.zp-footer-bottom-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin-bottom: 0;
}
.zp-footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 18px 0;
}
.zp-footer-bottom-inner p {
  font-size: 13px;
  color: rgba(180,200,255,0.45);
  margin: 0;
}
.zp-footer-bottom-inner p a {
  color: #60a5fa !important; text-decoration: none !important; font-weight: 700;
}
.zp-footer-bottom-badges { display: flex; gap: 10px; }
.zp-footer-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  color: rgba(148,185,255,0.5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 3px 10px;
}
.zp-footer-badge i { color: rgba(96,165,250,0.6); font-size: 10px; }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .zp-footer-main { grid-template-columns: 1.6fr 1fr 1.2fr 1.6fr; gap: 36px 28px; }
}
@media (max-width: 991px) {
  .zp-footer-main { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .zp-footer-brand { grid-column: span 2; }
  .zp-footer-desc { max-width: 100%; }
}
@media (max-width: 576px) {
  .zp-footer { padding-top: 56px; }
  .zp-footer-main { grid-template-columns: 1fr; gap: 28px; }
  .zp-footer-brand { grid-column: span 1; }
  .zp-footer-bottom-inner { flex-direction: column; text-align: center; }
  .zp-footer-bottom-badges { justify-content: center; }
}

/* ============================================================
   SECTION 18 — Global Header Override (ALL pages, unified dark)
   ============================================================ */

/* ── Base: force dark background on ALL pages ── */
.header-section,
.header-section.position-sticky,
.header-section.header-fixed,
header.header-section {
  background: rgba(5, 10, 28, 0.97) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(59,130,246,0.12) !important;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4) !important;
}

/* ── Remove original light backgrounds ── */
.header-bottom-area,
.header-section .header-bottom-area,
.header-section.header-fixed .header-bottom-area {
  background: transparent !important;
  border-bottom: none !important;
  padding: 0 !important;
}

/* ── Taller navbar: more breathing room ── */
.header-section .navbar,
.header-section .navbar-expand-xl,
.header-section nav.navbar {
  min-height: 80px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* navbar inner container: vertical centering */
.header-section .header-menu-content {
  padding: 0 !important;
}

/* ── Nav links: white on ALL pages ── */
.header-section .navbar-nav .nav-item > a,
.header-section .main-menu > li > a,
.header-section .main-menu li a.has-sub,
.header-section ul.navbar-nav li a {
  color: rgba(210,225,255,0.88) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 28px 14px !important;
  transition: color 0.2s !important;
}
.header-section .navbar-nav .nav-item > a:hover,
.header-section .main-menu > li > a:hover,
.header-section .main-menu li a.has-sub:hover {
  color: #60a5fa !important;
}

/* Active page link */
.header-section .main-menu li a.active {
  color: #60a5fa !important;
}

/* ── Logo: always white ── */
.header-section .site-logo img,
.header-section .navbar-brand img,
.header-section a.site-logo img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(96,165,250,0.3)) !important;
  height: 38px !important;
  width: auto !important;
}

/* ── Hamburger toggler: white icon ── */
.header-section .navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
  transition: background 0.2s !important;
}
.header-section .navbar-toggler:hover {
  background: rgba(59,130,246,0.15) !important;
  border-color: rgba(59,130,246,0.4) !important;
}
.header-section .navbar-toggler .fas {
  color: rgba(200,220,255,0.9) !important;
  font-size: 18px !important;
}

/* ── Help button ── */
.header-section .help-btn {
  color: rgba(200,220,255,0.8) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
  background: transparent !important;
}
.header-section .help-btn:hover {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.25) !important;
  color: #fff !important;
}

/* ── Header buttons: Log In + Sign Up ── */
.header-section .header-action a.btn {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: rgba(210,225,255,0.9) !important;
  padding: 9px 20px !important;
  border-radius: 10px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  transition: all 0.2s !important;
}
.header-section .header-action a.btn:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: #fff !important;
}
.header-section .header-action a.btn-auth {
  background: linear-gradient(90deg, #1d4ed8, #3b82f6) !important;
  border: none !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 10px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(59,130,246,0.35) !important;
  transition: transform 0.2s, filter 0.2s !important;
}
.header-section .header-action a.btn-auth:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.1) !important;
}

/* ── Navbar right spacing ── */
.header-section .navbar-right {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.header-section .header-action {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* ── Mobile collapsed menu: dark background ── */
@media (max-width: 1199px) {
  .header-section .navbar-collapse {
    background: rgba(5,10,28,0.98) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
    margin-top: 8px !important;
    padding: 12px !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5) !important;
  }
  .header-section .main-menu > li > a,
  .header-section .main-menu li a.has-sub {
    padding: 12px 14px !important;
    border-radius: 8px !important;
  }
  .header-section .main-menu > li > a:hover {
    background: rgba(59,130,246,0.10) !important;
  }
  .header-section .navbar-right {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    padding: 12px 0 6px !important;
    gap: 8px !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
    margin-top: 8px !important;
  }
}

/* ── Sub-menu: keep dark ── */
.header-section .sub-menu {
  background: rgba(8,14,34,0.97) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}
.header-section .sub-menu-title h3,
.header-section .sub-menu-title a h3 {
  color: #fff !important;
}
.header-section .sub-menu-item .menu-item-name h4 { color: #dbe8ff !important; }
.header-section .sub-menu-item .menu-item-name p  { color: rgba(180,200,255,0.6) !important; }
.header-section .sub-menu-item .icon i           { color: #60a5fa !important; }

/* ═══════════════════════════════════════════════════════════════
   Section 19: TICKER BAR — CSS flags + faster seamless scroll
═══════════════════════════════════════════════════════════════ */

/* Faster: 18s instead of 40s, GPU-accelerated, no gap between loops */
.zp-ticker-track {
    animation-duration: 18s !important;
    animation-timing-function: linear !important;
    will-change: transform !important;
}

/* With 3 copies, animate to -33.33% for seamless loop */
@keyframes zp-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* CSS flag icon inside ticker */
.zp-ti-flag {
    width: 20px !important;
    height: 14px !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    background-size: cover !important;
    background-position: center !important;
    vertical-align: middle !important;
}

/* .zp-ti item layout */
.zp-ti {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 0 22px !important;
    border-right: 1px solid rgba(255,255,255,0.07) !important;
    white-space: nowrap !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.85) !important;
}
.zp-ti .cd { opacity: 0.6 !important; font-size: 11px !important; }
.zp-ti .pr { font-weight: 700 !important; color: #fff !important; font-size: 13px !important; }

/* CSS flag icons in exchange-rates sections */
.er-card-flag.fi {
    width: 36px !important;
    height: 26px !important;
    border-radius: 5px !important;
    display: block !important;
    background-size: cover !important;
    background-position: center !important;
    box-shadow: 0 2px 6px rgba(0,0,0,.15) !important;
    flex-shrink: 0 !important;
}
.er-tbl-flag.fi {
    width: 26px !important;
    height: 18px !important;
    border-radius: 3px !important;
    display: inline-block !important;
    background-size: cover !important;
    box-shadow: 0 1px 4px rgba(0,0,0,.15) !important;
    flex-shrink: 0 !important;
}
/* exchange-rates page .cur-cell flag */
.cur-cell .fi {
    width: 26px !important;
    height: 18px !important;
    border-radius: 3px !important;
    display: inline-block !important;
    background-size: cover !important;
    box-shadow: 0 1px 4px rgba(0,0,0,.12) !important;
    flex-shrink: 0 !important;
}
/* converter flag spans */
#from-flag.fi, #to-flag.fi {
    width: 22px !important;
    height: 16px !important;
    border-radius: 2px !important;
    display: inline-block !important;
    background-size: cover !important;
    flex-shrink: 0 !important;
}
