:root{
  --wrap:1530px;
  --font:"Figtree",ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;

  --brand:#0b7cac;
  --brand-dark:#085c80;
  --ink:#0b1220;
  --mut:#5d6675;
  --line:rgba(15,23,42,.12);
  --soft:rgba(15,23,42,.06);

  --glass1:rgba(255,255,255,.78);
  --glass2:rgba(255,255,255,.60);

  --wa:#25D366;
  --waSoft:rgba(37,211,102,.10);

  --hotSoft:rgba(246,196,0,.22);
  --hotLine:rgba(246,196,0,.38);

  --shadow:0 14px 38px rgba(15,23,42,.12);
  --tcHeaderH:114px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  padding-top:var(--tcHeaderH);
}

.tcWrap{
  width:100%;
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 18px;
}

/* ===============================
   STICKY HEADER SHELL
================================ */
.tcHeader{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:9999;
  transform:translateY(0);
  transition:transform .22s ease;
}

.tcHeader.is-hidden{
  transform:translateY(-110%);
}

.tcHeaderShell{
  background:#fff;
  box-shadow:var(--shadow);
}

/* ===============================
   TOP BAR
================================ */
.tcTop{
  height:38px;
  display:flex;
  align-items:center;
}

.tcTopRow{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
}

.tcTopLeft{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.tcTopLink{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#000;
  text-decoration:none;
  font-weight:500;
  font-size:12.5px;
  white-space:nowrap;
}

.tcTopLink:hover{
  color:var(--ink);
}

.tcTopIco{
  width:16px;
  height:16px;
  display:inline-flex;
}

.tcTopIco svg{
  width:16px;
  height:16px;
}

.tcTopSep{
  width:1px;
  height:16px;
  background:rgba(15,23,42,.18);
}

.tcTopNav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:6px;
}

.tcTopNavLink{
  padding:6px 10px;
  border-radius:999px;
  text-decoration:none;
  color:#000;
  font-weight:600;
  font-size:12.5px;
  white-space:nowrap;
  transition:background .16s ease,color .16s ease,transform .16s ease;
}

.tcTopNavLink:hover{
  background:var(--soft);
  color:var(--ink);
  transform:translateY(-1px);
}

.tcDivider{
  height:1px;
  background:rgba(15,23,42,.12);
}

/* ===============================
   MAIN BAR
================================ */
.tcMain{
  border-bottom:1px solid rgba(15,23,42,.10);
}

.tcMainRow{
  height:76px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
}

/* Logo */
.tcBrand{
  display:flex;
  align-items:center;
  text-decoration:none;
  min-width:0;
}

.tcBrand img{
  display:block;
  height:62px;
  width:auto;
}

/* Center nav */
.tcNav{
  display:flex;
  align-items:center;
  justify-content:center;
  justify-self:center;
  gap:6px;
  min-width:0;
  margin:0;
}

.tcNavItem{
  position:relative;
}

.tcNavLink{
  position:relative;
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  color:#000;
  font-weight:600;
  font-size:16px;
  padding:10px 12px;
  border-radius:999px;
  white-space:nowrap;
  transition:transform .16s ease,background .16s ease,color .16s ease;
}

.tcNavLink:hover{
  transform:translateY(-1px);
  background:var(--soft);
}

.tcNavLink.is-active{
  background:rgba(11,124,172,.10);
  color:var(--brand);
}

.tcNavLink.is-hot{
  padding:9px 12px;
  background:var(--hotSoft);
  border:1px solid var(--hotLine);
}

.tcNavLink--expand{
  gap:8px;
}

.tcPlus{
  font-size:16px;
  line-height:1;
  font-weight:600;
  opacity:.7;
  transition:transform .18s ease,opacity .18s ease;
}

.tcNavDropdown:hover .tcPlus{
  transform:rotate(45deg);
  opacity:1;
}

.tcDropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  padding:10px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(15,23,42,.12);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  display:none;
  flex-direction:column;
  gap:6px;
  z-index:50;
}

.tcDropdown a{
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  color:var(--ink);
}

.tcDropdown a:hover{
  background:rgba(15,23,42,.06);
}

.tcNavDropdown:hover .tcDropdown{
  display:flex;
}

/* Right controls */
.tcRight{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
}

/* Search */
.tcSearch{
  position:relative;
  width:320px;
  min-width:280px;
  max-width:420px;
  height:46px;
  display:flex;
  align-items:center;
  margin:0;
  padding:0;
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  background:#f7f8fb;
  box-shadow:none;
  overflow:hidden;
}

.tcSearchIco{
  width:46px;
  height:46px;
  flex:0 0 46px;
  display:grid;
  place-items:center;
  color:rgba(15,23,42,.60);
}

.tcSearchIco svg{
  width:20px;
  height:20px;
}

.tcSearchInput{
  all:unset;
  flex:1 1 auto;
  min-width:0;
  height:46px;
  padding:0 10px 0 0;
  font-size:12.5px;
  font-weight:600;
  color:var(--ink);
}

.tcSearchInput::placeholder{
  color:rgba(15,23,42,.55);
  font-weight:600;
}

.tcSearchBtn{
  all:unset;
  height:38px;
  margin-right:6px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(15,23,42,.12);
  border-radius:14px;
  background:#fff;
  color:var(--ink);
  font-weight:600;
  font-size:13px;
  white-space:nowrap;
  cursor:pointer;
}

.tcSearchBtn:hover{
  background:#f2f4f8;
}

/* CTA */
.tcCta{
  display:none;
  height:46px;
  padding:0 16px;
  border-radius:18px;
  border:1px solid rgba(11,124,172,.22);
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:#fff;
  font-weight:900;
  font-size:13px;
  white-space:nowrap;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(11,124,172,.18);
  transition:transform .16s ease,box-shadow .16s ease,filter .16s ease;
}

.tcCta:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 42px rgba(11,124,172,.24);
  filter:saturate(1.05);
}

.tcCta--m{
  display:none;
  height:42px;
  padding:0 12px;
  border-radius:14px;
}

/* Icons */
.tcIcon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  text-decoration:none;
  transition:transform .16s ease,background .16s ease;
}

.tcIcon:hover{
  transform:translateY(-1px);
  background:#f2f4f8;
}

.tcIcon--wa{
  background:var(--waSoft);
  border-color:rgba(37,211,102,.28);
}

.tcWaSvg{
  width:22px;
  height:22px;
  color:var(--wa);
}

/* Login */
.tcLogin{
  all:unset;
  height:46px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  background:#f3f4f7;
  color:var(--ink);
  font-weight:600;
  font-size:14px;
  white-space:nowrap;
  cursor:pointer;
}

.tcLogin:hover{
  background:#e9ebf1;
}

.tcLogin svg,
.tcLoginIco svg{
  width:18px;
  height:18px;
}

/* Burger */
.tcBurger{
  width:46px;
  height:46px;
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  cursor:pointer;
}

.tcBurger span{
  width:18px;
  height:2px;
  border-radius:999px;
  background:var(--ink);
  opacity:.85;
}

/* ===============================
   DRAWER BASE
================================ */
.tcDim{
  position:fixed;
  inset:0;
  z-index:10040;
  background:rgba(15,23,42,.28);
  backdrop-filter:blur(2px);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}

.tcDim.is-open{
  opacity:1;
  pointer-events:auto;
}

.tcDrawer{
  position:fixed;
  top:0;
  right:0;
  width:min(420px,92vw);
  height:100%;
  z-index:10045;
  display:flex;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .25s ease;
  background:linear-gradient(180deg,#0b1220,#070b14);
  color:#fff;
  border-left:1px solid rgba(255,255,255,.10);
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.tcDrawer.is-open{
  transform:translateX(0);
}

.tcDHead{
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.tcDBrand{
  display:flex;
  align-items:center;
  gap:10px;
}

.tcDBrand img{
  width:46px;
  height:46px;
  object-fit:contain;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:6px;
}

.tcDBrandTxt strong{
  display:block;
  font-size:14px;
  font-weight:800;
}

.tcDBrandTxt span{
  display:block;
  margin-top:3px;
  font-size:12px;
  opacity:.7;
}

.tcDClose{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}

.tcDClose svg{
  width:18px;
  height:18px;
}

.tcDBody{
  padding:14px;
  overflow:auto;
}

.tcDNav{
  display:grid;
  gap:10px;
}

.tcDNav a{
  padding:12px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
}

.tcDNav a:hover{
  background:rgba(11,124,172,.20);
  border-color:rgba(11,124,172,.28);
}

.tcDCard{
  margin-top:14px;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.tcDCardTitle{
  font-size:13px;
  font-weight:900;
}

.tcDCardSub{
  margin-top:6px;
  font-size:12px;
  opacity:.75;
}

.tcDActions{
  margin-top:12px;
  display:grid;
  gap:10px;
}

.tcDAction{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px;
  border-radius:16px;
  color:#fff;
  text-decoration:none;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  font-weight:900;
}

.tcDAction.primary{
  background:linear-gradient(135deg,rgba(37,211,102,.92),rgba(20,150,70,.92));
  border-color:rgba(255,255,255,.10);
}

.tcDAction svg{
  width:18px;
  height:18px;
}

/* ===============================
   MODAL
================================ */
.tcModal{
  position:fixed;
  inset:0;
  display:none;
  z-index:10060;
}

.tcModal.is-open{
  display:block;
}

.tcModalBackdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.62);
}

.tcModalPanel{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(580px,92vw);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:linear-gradient(180deg,#0b1220,#070b14);
  box-shadow:0 26px 70px rgba(0,0,0,.45);
  color:#fff;
}

.tcModalHead{
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.tcModalClose{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}

.tcModalClose svg{
  width:18px;
  height:18px;
}

.tcModalBody{
  padding:14px;
}

.tcForm{
  display:grid;
  gap:10px;
}

.tcGrid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.tcInp{
  width:100%;
  padding:12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background:rgba(255,255,255,.06);
  color:#fff;
  outline:none;
  font-size:13px;
  font-family:var(--font);
}

.tcInp::placeholder{
  color:rgba(255,255,255,.55);
}

.tcTa{
  min-height:120px;
  resize:vertical;
}

.tcSend{
  width:100%;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(11,124,172,.24);
  transition:transform .18s ease,box-shadow .18s ease;
}

.tcSend:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 46px rgba(11,124,172,.28);
}

.tcNote{
  margin-top:10px;
  font-size:12px;
  opacity:.75;
}

.tcNote a{
  color:#fff;
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,.35);
}

/* ===============================
   MOBILE APP DRAWER
================================ */
.tcAppCard{
  display:flex;
  align-items:center;
  gap:8px;
}

.tcAppLabel{
  flex:1;
  white-space:nowrap;
  overflow:visible;
  text-overflow:unset;
  font-weight:600;
}

.tcAppArrow{
  flex:0 0 auto;
  margin-left:4px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width:1100px){
  .tcSearch{
    width:min(380px,44vw);
    min-width:240px;
    max-width:none;
  }
}

@media (max-width:980px){
  :root{
    --tcHeaderH:76px;
  }

  /* top bar off on mobile */
  .tcTop,
  .tcDivider{
    display:none;
  }

  /* header shell */
  .tcHeaderShell{
    background:#fff;
    box-shadow:0 8px 24px rgba(15,23,42,.08);
  }

  .tcMain{
    border-bottom:1px solid rgba(15,23,42,.08);
  }

  .tcMainRow{
    height:76px;
    grid-template-columns:minmax(0,1fr) auto;
    gap:10px;
    padding-left:14px;
    padding-right:14px;
  }

  .tcBrand{
    justify-self:start;
  }

  .tcBrand img{
    height:48px;
    max-width:100%;
    object-fit:contain;
  }

  .tcNav,
  .tcSearch,
  .tcCta,
  .tcCta--m,
  .tcIcon--wa{
    display:none !important;
  }

  .tcRight{
    gap:8px;
  }

  .tcLogin{
    height:42px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid rgba(15,23,42,.10);
    background:#f8fafc;
    font-size:13px;
    font-weight:700;
    box-shadow:none;
  }

  .tcLogin:hover{
    background:#f1f5f9;
  }

  .tcBurger{
    width:42px;
    height:42px;
    display:flex;
    border-radius:14px;
    border:1px solid rgba(15,23,42,.10);
    background:#f8fafc;
    box-shadow:none;
  }

  .tcBurger span{
    width:17px;
    background:#111827;
  }

  /* full width premium drawer */
  .tcDrawer,
  .tcDrawer--app{
    width:100vw;
    max-width:100vw;
    right:0;
    left:auto;
    transform:translateX(100%);
    transition:transform .28s ease;
    border-left:none;
    box-shadow:-8px 0 30px rgba(15,23,42,.08);
    background:
      radial-gradient(circle at top left, rgba(214,228,255,.65), transparent 35%),
      linear-gradient(180deg,#f6f8fc 0%,#edf2f9 100%);
    color:#0f172a;
  }

  .tcDrawer.is-open,
  .tcDrawer--app.is-open{
    transform:translateX(0);
  }

  .tcDHead--app{
    position:sticky;
    top:0;
    z-index:5;
    padding:12px 14px 10px;
    background:rgba(246,248,252,.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(15,23,42,.06);
  }

  .tcDHead--app .tcDBrand{
    max-width:160px;
  }

  .tcDHead--app .tcDBrand img{
    width:100%;
    height:auto;
    object-fit:contain;
    background:none;
    border:none;
    padding:0;
    border-radius:0;
  }

  .tcDHead--app .tcDClose{
    width:42px;
    height:42px;
    border-radius:14px;
    border:1px solid rgba(15,23,42,.10);
    background:#fff;
    color:#0f172a;
    box-shadow:0 6px 14px rgba(15,23,42,.05);
  }

  .tcDBody--app{
    padding:12px 14px 22px;
  }

  /* guest card */
  .tcGuestCard{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    padding:14px;
    border-radius:20px;
    background:rgba(255,255,255,.82);
    border:1px solid rgba(255,255,255,.85);
    box-shadow:0 12px 30px rgba(15,23,42,.06);
  }

  .tcGuestIcon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    display:grid;
    place-items:center;
    border:1.5px solid #d7dfeb;
    border-radius:50%;
    background:#f8fafc;
  }

  .tcGuestIcon i{
    font-size:21px;
    color:#2563eb;
  }

  .tcGuestTitle{
    margin-bottom:2px;
    font-size:16px;
    font-weight:800;
    color:#111827;
  }

  .tcGuestLink{
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    color:#2563eb;
  }

  /* app grid */
  .tcAppGrid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    align-items:start;
  }

  .tcAppItem{
    position:relative;
    align-self:start;
  }

  .tcAppItem--wide{
    grid-column:1 / -1;
  }

  .tcAppCard{
    position:relative;
    width:100%;
    min-height:58px;
    padding:10px 12px;
    gap:8px;
    border:none;
    border-radius:16px;
    background:rgba(255,255,255,.88);
    color:#111827;
    text-decoration:none;
    text-align:left;
    box-shadow:0 8px 18px rgba(15,23,42,.05);
    cursor:pointer;
    font:inherit;
  }

  .tcAppCard:hover,
  .tcAppCard:focus-visible{
    transform:none;
    outline:none;
    box-shadow:0 8px 18px rgba(15,23,42,.05);
  }

  .tcAppIcon{
    width:22px;
    min-width:22px;
    display:grid;
    place-items:center;
    font-size:18px;
    color:#111827;
  }

  .tcAppLabel{
    display:flex;
    align-items:center;
    gap:6px;
    flex-wrap:wrap;
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
    font-size:13px;
    line-height:1.2;
    font-weight:700;
    color:#111827;
  }

  .tcAppArrow{
    min-width:14px;
    margin-left:auto;
    font-size:17px;
    color:#111827;
    opacity:.7;
  }

  /* hot card */
  .tcAppCard--hot{
    border:1.5px solid rgba(34,197,94,.42);
    background:linear-gradient(180deg,#ffffff 0%,#f8fff9 100%);
    box-shadow:0 8px 20px rgba(34,197,94,.08);
  }

  .tcLiveBadge{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:20px;
    margin-left:0;
    padding:0 8px;
    border-radius:999px;
    background:linear-gradient(180deg,#ff8b8b 0%,#ff6b6b 100%);
    color:#fff;
    font-size:9px;
    font-weight:800;
    letter-spacing:.04em;
    line-height:1;
    box-shadow:0 6px 12px rgba(255,107,107,.18);
  }

  /* toggles */
  .tcAppToggle[aria-expanded="true"]{
    background:rgba(221,234,250,.72);
  }

  .tcAppArrow i{
    transition:transform .2s ease;
  }

  .tcAppToggle[aria-expanded="true"] .tcAppArrow i{
    transform:rotate(180deg);
  }

  /* submenu */
  .tcAppSubMenu{
    display:none;
    margin-top:8px;
    padding:8px;
    border-radius:14px;
    background:rgba(221,234,250,.72);
  }

  .tcAppSubMenu a{
    display:block;
    padding:10px 11px;
    border-radius:11px;
    background:#fff;
    color:#111827;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
  }

  .tcAppSubMenu a + a{
    margin-top:6px;
  }

  .tcAppItem.is-open .tcAppSubMenu{
    display:block;
  }

  /* more links */
  .tcAppCard--more{
    background:rgba(221,234,250,.72);
    border:1px solid rgba(191,219,254,.7);
  }

  .tcAppSubPanel{
    display:none;
    margin-top:8px;
    padding:10px;
    border-radius:16px;
    background:rgba(221,234,250,.72);
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }

  .tcAppItem--more.is-open .tcAppSubPanel{
    display:grid;
  }

  .tcAppSubPanel a{
    display:flex;
    align-items:center;
    min-height:46px;
    padding:0 12px;
    border-radius:12px;
    background:#fff;
    color:#111827;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    box-shadow:0 4px 10px rgba(15,23,42,.04);
  }

  /* address + call cards */
  .tcDrawerInfoWrap{
    display:grid;
    gap:12px;
    margin-top:14px;
  }
  

  .tcInfoCard{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px;
    border-radius:18px;
    background:rgba(255,255,255,.88);
    border:1px solid rgba(255,255,255,.92);
    box-shadow:0 10px 22px rgba(15,23,42,.05);
    color:#111827;
    text-decoration:none;
  }

  .tcInfoIcon{
    width:42px;
    height:42px;
    flex:0 0 42px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#eef2f7;
    color:#4b5563;
    font-size:18px;
  }

  .tcInfoTitle{
    margin-bottom:4px;
    font-size:14px;
    font-weight:800;
    color:#111827;
  }

  .tcInfoContent p{
    margin:0;
    font-size:13px;
    line-height:1.6;
    color:#374151;
  }

  .tcInfoContent strong{
    display:block;
    font-size:15px;
    line-height:1.4;
    color:#111827;
  }
}
.tcInfoContent strong a{
  color:inherit;
  text-decoration:none;
}

.tcInfoContent strong a:hover{
  text-decoration:underline;
}

@media (max-width:720px){
  .tcSearch{
    display:none;
  }
}

@media (max-width:560px){
  .tcGrid2{
    grid-template-columns:1fr;
  }
}