/* ===== Desktop/Tablet Quick Strip ===== */
#quick-strip {
  transform: translateX(0);
  width: 150px;
  overflow: hidden;
  transition: width 0.3s ease, transform 0.3s ease;
  background: linear-gradient(to bottom, #fcd4e2, #fef3b6, #cde8ff);
  border-right: 3px solid #f8d73f;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 12px 12px 0;
  font-family: 'Baloo 2', cursive;
  display: flex;
  flex-direction: column;
}

/* Each quick button */
#quick-strip .quick-btn {
  height: 100px; /* locked height */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
  box-sizing: border-box;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 8px 0 0 8px;
  color: #1b365d;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
}

/* Hover behavior */
#quick-strip .quick-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Collapsed state */
#quick-strip.collapsed {
  width: 48px;
  overflow: hidden;
}

/* Icon + label adjustments */
#quick-strip.collapsed .quick-btn {
  width: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 100px; /* still locked */
  border-radius: 5px;
  gap: 4px;
}

#quick-strip.collapsed .label-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  color: #1b365d;
  transition: all 0.3s ease;
}

#quick-strip.collapsed .quick-btn span.material-symbols-outlined {
  margin-right: 0;
  font-size: 22px;
}

/* Hover expands width only */
#quick-strip.collapsed:hover {
  width: 130px;
}

#quick-strip.collapsed:hover .quick-btn {
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  padding: 0 12px;
  gap: 10px;
  height: 100px; /* locked height */
}

#quick-strip.collapsed:hover .label-text {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
}

/* ===== Mobile Bottom Bar ===== */
#quick-strip-mobile {
  background: linear-gradient(to right, #fcd4e2, #fef3b6, #cde8ff);
  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.15);
  border-top: 3px solid #f8d73f;
  font-family: 'Baloo 2', cursive;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0;
}

#quick-strip-mobile a {
  text-align: center;
  font-weight: 600;
  color: #1b365d; /* Soft navy for readability */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#quick-strip-mobile a:hover,
#quick-strip-mobile a.active {
  color: #e91e63; /* Playful pink accent */
  transform: scale(1.1);
}

/* ===== Individual Quick Buttons Colors ===== */

/* Enquiry */
#quick-strip a:nth-child(1) {
  background-color: #7cc6fe; /* Soft Sky Blue */
}
#quick-strip a:nth-child(1):hover {
  background-color: #5bb6fc;
}
#quick-strip a:nth-child(1) .material-symbols-outlined {
  color: #fff;
}

/* Feedback */
#quick-strip a:nth-child(2) {
  background-color: #7de87d; /* Fresh Green */
}
#quick-strip a:nth-child(2):hover {
  background-color: #5ddc5d;
}
#quick-strip a:nth-child(2) .material-symbols-outlined {
  color: #fff;
}

/* Register */
#quick-strip a:nth-child(3) {
  background-color: #ffe37d; /* Soft Yellow */
}
#quick-strip a:nth-child(3):hover {
  background-color: #ffd84d;
}
#quick-strip a:nth-child(3) .material-symbols-outlined {
  color: #fff;
}

/* Franchise */
#quick-strip a:nth-child(4) {
  background-color: #ff8ba7; /* Pastel Red-Pink */
}
#quick-strip a:nth-child(4):hover {
  background-color: #ff6f90;
}
#quick-strip a:nth-child(4) .material-symbols-outlined {
  color: #fff;
}

/* ===== Responsive visibility fix ===== */

/* Hide mobile quick strip on screens wider than 640px (Tailwind's sm breakpoint) */
@media (min-width: 640px) {
  #quick-strip-mobile {
    display: none !important;
  }
}

/* Show desktop quick strip only on screens 640px and up */
@media (max-width: 639px) {
  #quick-strip {
    display: none !important;
  }
}
