.booking-bar{
  position:fixed;left:0;right:0;bottom:16px;
  z-index:60;display:flex;justify-content:center;
  pointer-events:none;
}
.booking-inner{
  pointer-events:auto;
  width:min(980px, calc(100% - 22px));
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
  border-radius:999px;
  padding:10px;
  display:flex;flex-wrap:nowrap;align-items:center;gap:14px;
}

.booking-fields{
  display:flex;flex-direction:row;flex-wrap:nowrap;
  gap:12px;align-items:flex-end;margin-left:auto;
}
.field label{display:block;font-size:11px;color:var(--muted);margin-bottom:4px}
.field input,.field select{
  height:40px;border-radius:12px;border:1px solid var(--line);
  padding:0 10px;font-family:inherit;min-width:170px;
}
.field select{min-width:110px}

/* Mobile panel */
.booking-panel{
  position:fixed;inset:0;background:rgba(2,6,23,.45);
  display:none;z-index:200;padding:18px;
}
.booking-panel.open{display:flex;align-items:flex-end;justify-content:center;}
.booking-panel-card{
  width:min(520px,100%);background:#fff;border-radius:18px;
  box-shadow:var(--shadow);overflow:hidden;
}
.panel-head{
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 14px 10px;border-bottom:1px solid var(--line);
}
.panel-body{padding:14px}
.panel-actions{display:flex;gap:10px;margin:12px 0 14px}

/* ===== contact menus (phone/whatsapp) - FIXED ===== */
.contact-menu{position:relative;display:inline-flex;flex:0 0 auto}
.contact-dropdown{
  display:none;
  position:absolute;right:0;bottom:calc(100% + 10px);
  min-width:200px;background:#fff;border:1px solid var(--line);
  border-radius:14px;box-shadow:var(--shadow);padding:8px;z-index:9999;
}
.contact-dropdown a{
  display:block;padding:10px 10px;border-radius:10px;
  color:var(--text);font-weight:700;font-size:13px;text-decoration:none;
}
.contact-dropdown a:hover{background:rgba(14,165,233,.08)}
@media (min-width:681px){
  .contact-menu:hover .contact-dropdown{display:block}
}
.contact-menu.open .contact-dropdown{display:block}

/* panel: open downward */
.booking-panel .contact-dropdown{
  bottom:auto;top:calc(100% + 10px);
}

/* زر دائري للأيقونات (هاتف / واتساب) */
.icon-btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

/* شكل الأيقونة داخل الزر */
.icon-phone::before,
.icon-whatsapp::before{
  font-size: 18px;
  line-height: 1;
}

/* أيقونة الهاتف */
.icon-phone::before{
  content: "📞";
}

/* أيقونة واتساب */
/* لو لا تستخدم Font Awesome، ابقِ الإيموجي */
.icon-whatsapp::before{
  content: "💬";  /* يمكن استبدالها بأي رمز تفضله */
}