/* ============================================================
   TRIPZAO — MAIN STYLESHEET v1.2.3
   Design System + Global Components
   ============================================================ */

/* ── 1. DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Brand Blues (Navy) */
  --blue-950: #071a3d;
  --blue-900: #0b2552;
  --blue-800: #0f3275;
  --blue-700: #143f98;
  --blue-600: #1e56c4;
  --blue-500: #3a74e0;
  --blue-100: #dbe6fb;
  --blue-50:  #eff4fd;

  /* Ink / Text */
  --ink-900: #0a1226;
  --ink-700: #2a3550;
  --ink-500: #5c6683;
  --ink-400: #8390aa;
  --ink-300: #b7becf;
  --ink-200: #dde2ec;
  --ink-100: #edf1f8;

  /* Backgrounds */
  --bg:       #f6f8fc;
  --bg-soft:  #eef2f9;
  --white:    #ffffff;

  /* Gold / Accent */
  --yellow-600: #e8a300;
  --yellow-500: #f7ba17;
  --yellow-400: #ffcb42;
  --yellow-100: #fff1c8;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;

  /* Status */
  --mint-500:  #2fbf8f;
  --coral-500: #ef6b57;
  --red-500:   #e11d48;
  --green-500: #059669;

  /* Border Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10,18,38,.05), 0 1px 1px rgba(10,18,38,.04);
  --shadow-md: 0 6px 16px -4px rgba(10,18,38,.08), 0 2px 6px rgba(10,18,38,.05);
  --shadow-lg: 0 24px 48px -18px rgba(10,18,38,.18), 0 8px 18px -8px rgba(10,18,38,.10);
  --shadow-xl: 0 40px 80px -30px rgba(7,26,61,.35), 0 18px 40px -22px rgba(7,26,61,.25);

  /* Typography */
  --font-sans:    "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-bn:      "Hind Siliguri", "Noto Sans Bengali", "Plus Jakarta Sans", sans-serif;
  --font-display: "Fraunces", "Plus Jakarta Sans", serif;
  --font-mono:    "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  /* Transitions */
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-smooth: cubic-bezier(.25,.8,.25,1);
  --ease-expo:   cubic-bezier(.16,1,.3,1);
}

/* ── 2. RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { padding: 0; margin: 0; list-style: none; }

/* Typography helpers */
.bn      { font-family: var(--font-bn); font-weight: 500; }
.bn-bold { font-family: var(--font-bn); font-weight: 700; }
.display { font-family: var(--font-display); font-style: italic; }

/* ── 3. LAYOUT ───────────────────────────────────────────────── */
.container       { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.container-wide  { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 28px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }

/* ── 4. HEADER ───────────────────────────────────────────────── */
.tzr-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all .25s var(--ease);
}

.tzr-header.glass {
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid rgba(10,18,38,.06);
}

.tzr-header.solid {
  background: var(--white);
  border-bottom: 1px solid var(--ink-200);
  box-shadow: var(--shadow-sm);
}

.tzr-header.onhero.glass {
  background: rgba(7,26,61,.35);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.tzr-header.scrolled {
  background: var(--white) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--ink-200);
  box-shadow: var(--shadow-md);
}
.tzr-header.scrolled .nav-link { color: var(--ink-700); }
.tzr-header.scrolled .tzr-logo { color: var(--blue-950); }

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 0;
}

/* Logo */
.tzr-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-950);
  letter-spacing: -.02em;
  flex-shrink: 0;
  text-decoration: none;
}
.tzr-logo em {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 800;
  color: inherit;
}
.tzr-header.onhero .tzr-logo { color: #fff; }

.logo-mark {
  width: 32px; height: 32px;
  background: var(--blue-700);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(20,63,152,.35);
}

/* Nav */
.tzr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--blue-700); background: var(--blue-50); }
.nav-link.active { color: var(--blue-700); background: var(--blue-50); }
.tzr-header.onhero .nav-link { color: rgba(255,255,255,.82); }
.tzr-header.onhero .nav-link:hover { color: #fff; background: rgba(255,255,255,.12); }

/* Header CTA */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  font-weight: 700;
  transition: filter .2s, transform .15s;
  white-space: nowrap;
}
.btn-whatsapp:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ── Login button (replaces btn-contact) ── */
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--blue-700);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-login:hover {
  background: var(--blue-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(20,63,152,.28);
}
.tzr-header.onhero .btn-login {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
}
.tzr-header.onhero .btn-login:hover { background: rgba(255,255,255,.25); }
.tzr-header.scrolled .btn-login { background: var(--blue-700); border: none; }

/* ── Contact link (header) ── */
.hdr-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  color: var(--ink-700);
  font-size: .8125rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.hdr-contact-link:hover {
  color: var(--blue-700);
  background: var(--blue-50);
}
.tzr-header.onhero .hdr-contact-link {
  color: rgba(255,255,255,.85);
}
.tzr-header.onhero .hdr-contact-link:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.tzr-header.scrolled .hdr-contact-link { color: var(--ink-700); }

/* ── Profile avatar button ── */
.hdr-profile {
  position: relative;
}
.hdr-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 800;
  color: #fff;
  cursor: pointer;
  border: 2.5px solid var(--blue-100);
  transition: border-color .18s, box-shadow .18s;
  user-select: none;
}
.hdr-avatar:hover,
.hdr-profile.open .hdr-avatar {
  border-color: var(--yellow-400);
  box-shadow: 0 0 0 3px rgba(247,186,23,.2);
}
.tzr-header.onhero .hdr-avatar {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.tzr-header.onhero .hdr-profile.open .hdr-avatar,
.tzr-header.onhero .hdr-avatar:hover {
  border-color: var(--yellow-400);
}

/* ── Profile dropdown ── */
.hdr-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 230px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 48px -8px rgba(10,18,38,.18), 0 4px 12px -2px rgba(10,18,38,.08);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
.hdr-profile.open .hdr-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.hdr-dropdown-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 8px;
}
.hdr-dropdown-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 800;
  color: #fff; flex-shrink: 0;
}
.hdr-dropdown-name {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700;
  color: var(--ink-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 145px;
}
.hdr-dropdown-email {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--ink-400);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 145px;
}
.hdr-dropdown-divider {
  height: 1px;
  background: var(--ink-100);
  margin: 4px 0;
}
.hdr-dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-bn);
  font-size: 13.5px; font-weight: 600;
  color: var(--ink-700);
  transition: background .12s, color .12s;
  text-decoration: none;
  cursor: pointer;
}
.hdr-dropdown-item svg { stroke: var(--ink-400); transition: stroke .12s; flex-shrink: 0; }
.hdr-dropdown-item:hover { background: var(--ink-100); color: var(--ink-900); }
.hdr-dropdown-item:hover svg { stroke: var(--blue-600); }
.hdr-dropdown-logout { color: var(--coral-500); }
.hdr-dropdown-logout svg { stroke: var(--coral-500); }
.hdr-dropdown-logout:hover { background: var(--coral-100); color: var(--coral-500); }
.hdr-dropdown-logout:hover svg { stroke: var(--coral-500); }

/* ── Mobile logout link ── */
.mobile-logout-link {
  display: block;
  text-align: center;
  padding: 10px;
  font-family: var(--font-bn);
  font-size: 14px; font-weight: 600;
  color: var(--coral-500);
  margin-top: 8px;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.mobile-logout-link:hover { background: var(--coral-100); }

.logo-text {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0;
}
.logo-word {
  letter-spacing: 0;
}
.logo-word .logo-zao,
.logo-zao {
  color: var(--yellow-500) !important;
}

/* Mobile menu toggle */
.hdr-mobile-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-200);
  color: var(--ink-700);
  margin-left: auto;
}

/* ── 5. BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--blue-700);
  color: #fff;
  border-color: var(--blue-700);
  box-shadow: 0 4px 14px rgba(20,63,152,.28);
}
.btn-primary:hover {
  background: var(--blue-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20,63,152,.35);
}

.btn-gold {
  background: var(--yellow-400);
  color: var(--blue-950);
  border-color: var(--yellow-400);
  box-shadow: 0 4px 14px rgba(255,203,66,.3);
}
.btn-gold:hover {
  background: var(--yellow-500);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-200, #c5d6f8);
}
.btn-outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-500);
  border-color: var(--ink-200);
}
.btn-ghost:hover {
  background: var(--ink-100);
  color: var(--ink-700);
}

.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 7px 14px; font-size: .8125rem; }

/* ── 6. SECTION LABELS ───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--yellow-400);
  display: block;
  border-radius: 1px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--blue-950);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}

.section-sub {
  font-size: 1rem;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 560px;
}

/* ── 7. CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--ink-100);
}

/* ── 8. FILTER PILLS ─────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 18px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.filter-tab:hover { border-color: var(--blue-500); color: var(--blue-700); }
.filter-tab.active {
  background: var(--blue-950);
  border-color: var(--blue-950);
  color: #fff;
}

/* ── 9. SEARCH INPUTS ────────────────────────────────────────── */
.search-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--ink-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-900);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.search-input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(58,116,224,.12);
}
.search-input::placeholder { color: var(--ink-400); }

/* ── 10. BADGES / TAGS ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-gold   { background: var(--yellow-100); color: var(--yellow-600); }
.badge-navy   { background: var(--blue-100);   color: var(--blue-800); }
.badge-green  { background: #dcfce7;            color: #166534; }
.badge-coral  { background: #fee2e2;            color: #991b1b; }
.badge-new    { background: var(--coral-500);   color: #fff; }

/* ── 11. PAGINATION ──────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}
.page-btn {
  min-width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-200);
  background: var(--white);
  color: var(--ink-700);
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.page-btn:hover { border-color: var(--blue-500); color: var(--blue-700); }
.page-btn.active {
  background: var(--blue-950);
  border-color: var(--blue-950);
  color: #fff;
}

/* ── 12. REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-expo), transform .7s var(--ease-expo);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── 13. FOOTER ──────────────────────────────────────────────── */
.tzr-footer {
  background: var(--blue-950);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}

.footer-newsletter h3 {
  font-family: var(--font-bn);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.4;
}
.footer-newsletter h3 span { color: var(--yellow-400); }
.footer-newsletter p { font-size: .9rem; margin: 0; color: rgba(255,255,255,.55); }

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--font-sans);
  font-size: .9rem;
  outline: none;
  min-width: 240px;
  transition: border-color .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--yellow-400); }

.footer-cols {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  padding: 48px 0;
}

.footer-brand .tzr-logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin: 0 0 20px; }

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all .2s;
}
.footer-socials a:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

.footer-col h5 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0 0 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: #fff; }
.footer-col .bdg {
  display: inline-block;
  padding: 2px 6px;
  background: var(--coral-500);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

/* ── 14. UTILITY ─────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.text-gold { color: var(--yellow-400); }
.text-navy { color: var(--blue-950); }
.text-muted { color: var(--ink-500); }

/* ── 15. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .container, .container-wide { padding: 0 20px; }
  .section { padding: 56px 0; }
  .tzr-nav { display: none; }
  .hdr-mobile-btn { display: flex; }
  .hdr-actions .btn-whatsapp span { display: none; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; gap: 20px; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { min-width: unset; flex: 1; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 8px 14px; font-size: .8rem; }
}

/* ── 16. ELEMENTOR COMPATIBILITY ─────────────────────────────── */
/* Remove blank space Elementor adds below header */
.elementor-section:empty,
.elementor-row:empty,
.elementor-column:empty { display: none !important; }

/* Fix Elementor full-width sections */
.elementor-section.elementor-section-full_width { margin: 0; }

/* Blog page — remove Elementor top padding if blank section */
body.blog .elementor-section:first-child:empty,
body.blog .elementor-top-section:first-child { padding-top: 0 !important; margin-top: 0 !important; }

/* Fix admin bar + sticky header offset */
.admin-bar .tzr-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .tzr-header { top: 46px; } }

/* ── 17. LOGO IMAGE FIX ──────────────────────────────────────── */
.tzr-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer logo — white version */
.tzr-footer .tzr-logo-img {
  filter: brightness(0) invert(1);
}

/* If no logo image, footer text logo should be white */
.tzr-footer .tzr-logo {
  color: #fff;
}
.tzr-footer .tzr-logo .logo-mark {
  background: rgba(255,255,255,.15);
}
