:root {
  --brand: #FF7600;
  --brand-dark: #D96400;
  --brand-light: #FFF3E6;
  /* Template color aliases */
  --orange: #E8620A;
  --orange-light: #FFF3EB;
  --orange-dark: #B84A00;
  --navy: #002D5A;
  --navy-mid: #1A4A7A;
  --slate: #354160;
  --muted: #6B7A99;
  --green: #0A7A45;
  --green-light: #E6F5EE;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-mid: #555;
  --text-primary: #1A1A1A;
  --text-secondary: #555;
  --text-muted: #888;
  --surface: #FFFFFF;
  --surface-soft: #F8F6F2;
  --surface-warm: #FDFAF6;
  --border: #E8E3DA;
  --border-light: #F0EBE1;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6, span, a, b, ul, li, p, div, input, textarea, select, option, article, aside, footer, header, nav{
      font-family: sans-serif !important;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
body{font-family:var(--font-body);color:var(--text-primary);background:var(--surface-warm);font-size:15px;line-height:1.65;-webkit-font-smoothing:antialiased;}

/* ══════════════════════════════════════════
   HEADER — matches original site flow exactly
   Row 1: Top utility bar (right-aligned)
   Row 2: Logo (left) + Nav items + Register CTA (right)
   ══════════════════════════════════════════ */

/* Row 1 — Utility bar */
.header-utility{background:#001830;border-bottom:1px solid rgba(255,255,255,0.06);}
.header-utility-inner{
  max-width:80%;margin:0 auto;padding:0 24px;
  display:flex;align-items:center;justify-content:flex-end;
  height:34px;gap:0;
}
.header-utility a{
  color:rgba(255,255,255,0.9);font-size:12px;text-decoration:none;
  padding:0 11px;line-height:34px;border-right:1px solid rgba(255,255,255,0.08);
  transition:color 0.15s;white-space:nowrap;
}
.header-utility a:first-child{border-left:1px solid rgba(255,255,255,0.08);}
.header-utility a:hover{color:#fff;background:rgba(255,255,255,0.05);}
.header-utility a.demo-link{
  color:var(--brand);font-weight:600;
  border-left:1px solid rgba(255,255,255,0.08);
}
.header-utility a.demo-link:hover{color:#fff;background:rgba(255,118,0,0.15);}

/* Row 2 — Logo + Main Nav */
.site-header{
  background:var(--surface);
  position:sticky;top:0;z-index:100;
  box-shadow:0 2px 12px rgba(0,0,0,0.25);
  border-bottom:3px solid var(--brand);
}
.header-main-row{
  max-width:80%;margin:0 auto;padding:0 24px;
  display:flex;align-items:center;
  height:64px;gap:0;
}

/* Logo — left, exact same style as original */
.logo{
  font-family:var(--font-display);font-size:26px;font-weight:600;
  color:#fff;text-decoration:none;letter-spacing:-0.5px;
  flex-shrink:0;margin-right:32px;
  display:flex;align-items:center;gap:0;
}
.logo img{height:38px;width:auto;margin-right:8px;}
.logo-text span{color:var(--brand);}

/* Nav items — fill remaining space, right-aligned */
.header-nav{
  display:flex;align-items:stretch;
  flex:1;justify-content:flex-end;
  height:100%;gap:0;
}
.header-nav a{
  color:#343a40;
  text-decoration:none;font-size:13.5px;font-weight:400;
  padding:0 15px;
  display:flex;align-items:center;
  border-right:1px solid rgba(255,255,255,0.07);
  transition:all 0.15s;white-space:nowrap;
  position:relative;
}
.header-nav a:hover{color:#F08501;background:rgba(255,255,255,0.08);}
.header-nav a.active{color:#343a40;font-weight:500;}
.header-nav a.active::after{
  content:'';position:absolute;bottom:0;left:0;right:0;
  height:3px;background:var(--brand);
}

/* Megamenu dropdown arrow indicator */
.header-nav a.has-mega::after{
  content:'▾';font-size:10px;margin-left:5px;color:#343a40;
}

/* Register CTA button — rightmost */
.btn-register{
  background:var(--brand)!important;
  color:#fff!important;
  font-weight:600!important;
  font-size:13px!important;
  padding:18px!important;
  border-radius:22px !important;
  border-left:1px solid rgba(255,255,255,0.07)!important;
  white-space:nowrap;
  letter-spacing:0.2px;
  display:flex!important;align-items:center!important;
  transition:background 0.2s!important;
  height: 30%;
  align-self: center;
  box-shadow: 0 3px 12px rgba(255, 118, 0, 0.28);
}
.btn-register:hover{background:var(--brand-dark)!important;}

/* ── Megamenu panel ── */
.nav-item{position:relative;display:flex}
.nav-item:hover .megamenu{display:flex;}
.megamenu{
  display:none;
  position:absolute;top:100%;left:0;
  background:#fff;
  border-top:3px solid var(--brand);
  border-radius:0 0 var(--radius-md) var(--radius-md);
  box-shadow:0 8px 32px rgba(0,0,0,0.18);
  padding:20px 24px;
  gap:24px;min-width:700px;
  z-index:200;
}
.megamenu-col{min-width:160px;flex:1;}
.megamenu-col-title{
  font-size:11px;font-weight:700;color:var(--brand);
  text-transform:uppercase;letter-spacing:0.8px;
  margin-bottom:10px;padding-bottom:6px;
  border-bottom:1px solid var(--border);
}
.megamenu-col a{
  display:flex;align-items:center;gap:6px;
  font-size:13px;color:var(--text-secondary);
  text-decoration:none;padding:5px 0;
  border-bottom:1px solid var(--border-light);
  transition:color 0.15s;
}
.megamenu-col a:last-child{border-bottom:none;}
.megamenu-col a:hover{color:var(--brand);}
.megamenu-col a.more-link{
  color:var(--brand);font-weight:600;font-size:12px;
  margin-top:4px;border-bottom:none;
}

/* Mobile toggle */
.mobile-menu-toggle{
  display:none;background:none;border:none;
  color:#fff;cursor:pointer;padding:8px;margin-left:auto;
}

@media(max-width:991px){
  .header-utility a{font-size:11px;padding:0 8px;}
  .header-nav{display:none;}
  .header-nav.open{display:flex;flex-direction:column;position:absolute;top:64px;left:0;right:0;background:var(--navy);height:auto;z-index:300;border-top:1px solid rgba(255,255,255,0.1);}
  .header-nav.open a{border-right:none;border-bottom:1px solid rgba(255,255,255,0.07);padding:14px 24px;}
  .mobile-menu-toggle{display:flex;align-items:center;}
  .site-header{position:relative;}
  .megamenu{display:none!important;}
}

/* ── FOOTER ── */
.site-footer{background:#001830;display:flex;flex-direction:column;align-items:center;justify-content:center}
.footer-top{padding:36px 24px 28px;max-width:80%;margin:auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:32px;}
.ft-col h4{font-size:13px;font-weight:700;color:#fff;margin-bottom:14px;text-transform:uppercase;letter-spacing:0.6px;}
.ft-col a{display:block;color:rgba(255,255,255,0.9);font-size:12.5px;text-decoration:none;margin-bottom:7px;transition:color 0.15s;}
.ft-col a:hover{color:rgba(255,255,255,0.9);}
.ft-logo{font-family:var(--font-display);font-size:22px;font-weight:600;color:#fff;margin-bottom:10px;}
.ft-logo span{color:var(--brand);}
.ft-desc{font-size:12.5px;color:rgba(255,255,255,0.9);line-height:1.65;margin-bottom:14px;}
.ft-social{display:flex;gap:10px;}
.ft-social a{width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.6);font-size:13px;text-decoration:none;transition:all 0.15s;}
.ft-social a:hover{background:var(--brand);border-color:var(--brand);color:#fff;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding:14px 24px;width:80%;margin:auto;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:10px;}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,0.9);text-align:center}
.footer-bottom-links{display:flex;gap:18px;}
.footer-bottom-links a{font-size:12px;color:rgba(255,255,255,0.4);text-decoration:none;}
.footer-bottom-links a:hover{color:rgba(255,255,255,0.8);}

/* ── UTILITIES ── */
.divider{border:none;border-top:1px solid var(--border);margin:8px 0;}
.badge-live{background:#E8F5E9;color:#2E7D32;border:1px solid #A5D6A7;font-size:10px;font-weight:700;padding:2px 7px;border-radius:10px;letter-spacing:0.3px;}
.float-cta{position:fixed;bottom:24px;right:24px;z-index:50;display:flex;flex-direction:column;gap:10px;align-items:flex-end;}
.float-btn{display:flex;align-items:center;gap:8px;padding:11px 18px;border-radius:28px;text-decoration:none;font-size:13px;font-weight:600;box-shadow:0 4px 20px rgba(0,0,0,0.2);transition:all 0.2s;}
.float-btn:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,0,0,0.25);}
.float-btn-brand{background:var(--brand);color:#fff;}
.float-btn-wa{background:#25D366;color:#fff;}
.breadcrumb-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
}
.breadcrumb-inner {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb-inner a { color: var(--brand); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.iti--allow-dropdown{width:100%}
.ti-drawer{display:none}

a:focus {
    outline: none;
}