.mobile-menu
{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 20px;
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  box-sizing: border-box;
  z-index: 999;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.mobile-menu.open
{
  max-height: 600px;
  opacity: 1;
  padding: 24px 20px;
}

.mobile-menu a
{
  text-decoration: none;
  width: 100%;
  text-align: left;
}

.mobile-menu a button
{
  width: 100%;
  background: rgb(195, 28, 47);
  border: 2px solid rgb(195, 28, 47);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 6px;
  text-align: left;
  transition: background 0.2s ease;
}

.mobile-menu a button:hover
{
  background: rgb(160, 20, 36);
}

.mobile-menu .nav-quote-btn
{
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  min-height: 46px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu .nav-quote-btn:hover
{
  background: rgb(195, 28, 47);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.mobile-menu-divider
{
  width: 100%;
  border: none;
  border-top: 1.5px solid #d1d1d1;
  margin: 4px 0;
}

.mobile-call-btn
{
  width: 100%;
  background: rgb(195, 28, 47);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  min-height: 46px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-call-btn:hover
{
  background: rgb(195, 28, 47);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.mobile-call-btn img
{
  border-radius: 50%;
}

@media (max-width: 1024px)
{
  .nav-links
  {
    display: none;
  }

  .desktop-only
  {
    display: none !important;
  }

  .hamburger
  {
    display: flex;
  }
}
