/* ══ TbilisiKey Mobile Menu ══ */
@import url('https://fonts.googleapis.com/css2?family=BPG+Nino+Mtavruli&display=swap');

/* Desktop-ზე იმალება JS-ით */
.tbkm-wrap { display: none; }

/* ── Burger ── */
.tbkm-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  cursor: pointer;
  padding: 11px;
  transition: background .25s, border-color .25s;
  position: relative;
  z-index: 10001;
}
.tbkm-burger:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}
.tbkm-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s;
  transform-origin: center;
}
.tbkm-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tbkm-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.tbkm-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Overlay ── */
.tbkm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,12,22,0.75);
  z-index: 10002;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.tbkm-overlay.open { opacity: 1; pointer-events: all; }

/* ── Drawer ── */
.tbkm-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100dvh;
  background: #111;
  z-index: 10003;
  transform: translateX(105%);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  box-shadow: -12px 0 50px rgba(0,0,0,0.6);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.tbkm-drawer::-webkit-scrollbar { display: none; }
.tbkm-drawer.open { transform: translateX(0); }

/* ── Head ── */
.tbkm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.tbkm-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.tbkm-logo span {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .5px;
}
.tbkm-close {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.tbkm-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

/* ── Nav ── */
.tbkm-nav {
  padding: 10px 0;
  flex-shrink: 0;
}
.tbkm-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tbkm-nav ul li {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tbkm-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  color: #D1D5DB;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Noto Sans Georgian', sans-serif;
  transition: all .22s;
  position: relative;
}
.tbkm-nav ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  background: #fff;
  border-radius: 0 2px 2px 0;
  transition: transform .22s;
}
.tbkm-nav ul li a::after {
  content: '›';
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  transition: transform .22s, color .22s;
}
.tbkm-nav ul li a:hover,
.tbkm-nav ul li.current-menu-item > a {
  color: #fff;
  background: rgba(255,255,255,0.04);
  padding-left: 28px;
}
.tbkm-nav ul li a:hover::before,
.tbkm-nav ul li.current-menu-item > a::before {
  transform: translateY(-50%) scaleY(1);
}
.tbkm-nav ul li a:hover::after,
.tbkm-nav ul li.current-menu-item > a::after {
  color: #fff;
  transform: translateX(3px);
}

/* ── Divider ── */
.tbkm-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  margin: 4px 0;
  flex-shrink: 0;
}

/* ── Phone ── */
.tbkm-contact {
  padding: 16px 22px;
  flex-shrink: 0;
}
.tbkm-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  transition: all .25s;
}
.tbkm-phone:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}
.tbkm-phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.tbkm-phone-icon svg {
  color: #fff;
  fill: #fff;
  stroke: #fff;
}
.tbkm-phone-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .5px;
  margin-bottom: 3px;
}
.tbkm-phone-num {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .5px;
}

/* ══════════════════════════════════════
   ── Socials — ბრენდ ფერები ──
══════════════════════════════════════ */
.tbkm-socials {
  padding: 16px 22px 8px;
  flex-shrink: 0;
}
.tbkm-socials-label {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}
.tbkm-socials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Base სოციალური ღილაკი */
.tbkm-soc {
  width: 100%;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  position: relative;
  overflow: hidden;
}
.tbkm-soc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .2s ease;
}
.tbkm-soc:hover {
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.1);
}
.tbkm-soc:active {
  transform: translateY(0) scale(0.97);
}
.tbkm-soc svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ── WhatsApp — #25D366 ── */
.tbkm-soc-wa {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.15);
}
.tbkm-soc-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ── Instagram — gradient ── */
.tbkm-soc-ig {
  background: rgba(225, 48, 108, 0.12);
  border: 1px solid rgba(225, 48, 108, 0.3);
  color: #E1306C;
  box-shadow: 0 2px 12px rgba(225, 48, 108, 0.15);
}
.tbkm-soc-ig:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.5);
}

/* ── Facebook — #1877F2 ── */
.tbkm-soc-fb {
  background: rgba(24, 119, 242, 0.12);
  border: 1px solid rgba(24, 119, 242, 0.3);
  color: #1877F2;
  box-shadow: 0 2px 12px rgba(24, 119, 242, 0.15);
}
.tbkm-soc-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.45);
}

/* ── TikTok — #010101 + cyan accent ── */
.tbkm-soc-tt {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  position: relative;
}
.tbkm-soc-tt svg {
  filter: drop-shadow(1px 0 0 #69C9D0) drop-shadow(-1px 0 0 #EE1D52);
  transition: filter .2s ease;
}
.tbkm-soc-tt:hover {
  background: #010101;
  border-color: rgba(105, 201, 208, 0.5);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(105,201,208,0.3);
}
.tbkm-soc-tt:hover svg {
  filter: drop-shadow(1.5px 0 0 #69C9D0) drop-shadow(-1.5px 0 0 #EE1D52);
}

/* ── YouTube — #FF0000 ── */
.tbkm-soc-yt {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #FF4444;
  box-shadow: 0 2px 12px rgba(255, 0, 0, 0.12);
}
.tbkm-soc-yt:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

/* ── Gmail / Email — #EA4335 ── */
.tbkm-soc-mail {
  background: rgba(234, 67, 53, 0.1);
  border: 1px solid rgba(234, 67, 53, 0.3);
  color: #EA4335;
  box-shadow: 0 2px 12px rgba(234, 67, 53, 0.12);
}
.tbkm-soc-mail:hover {
  background: linear-gradient(135deg, #EA4335, #FBBC05, #34A853, #4285F4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.4);
}

/* ── Animations ── */
@keyframes tbkmSlideIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.tbkm-drawer.open .tbkm-nav ul li {
  animation: tbkmSlideIn .3s ease both;
}
.tbkm-drawer.open .tbkm-nav ul li:nth-child(1)  { animation-delay: .08s; }
.tbkm-drawer.open .tbkm-nav ul li:nth-child(2)  { animation-delay: .13s; }
.tbkm-drawer.open .tbkm-nav ul li:nth-child(3)  { animation-delay: .18s; }
.tbkm-drawer.open .tbkm-nav ul li:nth-child(4)  { animation-delay: .23s; }
.tbkm-drawer.open .tbkm-nav ul li:nth-child(5)  { animation-delay: .28s; }
.tbkm-drawer.open .tbkm-nav ul li:nth-child(6)  { animation-delay: .33s; }

/* სოციალური ღილაკების ანიმაცია გახსნისას */
.tbkm-drawer.open .tbkm-soc {
  animation: tbkmSlideIn .35s ease both;
}
.tbkm-drawer.open .tbkm-soc:nth-child(1) { animation-delay: .32s; }
.tbkm-drawer.open .tbkm-soc:nth-child(2) { animation-delay: .37s; }
.tbkm-drawer.open .tbkm-soc:nth-child(3) { animation-delay: .42s; }
.tbkm-drawer.open .tbkm-soc:nth-child(4) { animation-delay: .47s; }
.tbkm-drawer.open .tbkm-soc:nth-child(5) { animation-delay: .52s; }
.tbkm-drawer.open .tbkm-soc:nth-child(6) { animation-delay: .57s; }

/* ── Footer ── */
.tbkm-drawer-footer {
  margin-top: auto;
  padding: 16px 22px 28px;
  color: #374151;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  flex-shrink: 0;
}